16 references to Soap12FaultCodes
System.Web.Services (16)
System\Web\Services\Protocols\Soap12ServerProtocol.cs (8)
85throw new SoapException(Res.GetString(Res.UnableToHandleRequestActionRequired0), Soap12FaultCodes.SenderFaultCode); 91throw new SoapException(Res.GetString(Res.UnableToHandleRequest0), Soap12FaultCodes.ReceiverFaultCode); 95throw new SoapException(Res.GetString(Res.TheRequestElementXmlnsWasNotRecognized2, requestElement.Name, requestElement.Namespace), Soap12FaultCodes.SenderFaultCode); 101throw new SoapException(Res.GetString(Res.UnableToHandleRequestActionNotRecognized1, action), Soap12FaultCodes.SenderFaultCode); 183return Soap12FaultCodes.ReceiverFaultCode; 185return Soap12FaultCodes.SenderFaultCode; 187return Soap12FaultCodes.MustUnderstandFaultCode; 189return Soap12FaultCodes.VersionMismatchFaultCode;
System\Web\Services\Protocols\SoapException.cs (4)
68return code == ServerFaultCode || code == Soap12FaultCodes.ReceiverFaultCode; 73return code == ClientFaultCode || code == Soap12FaultCodes.SenderFaultCode; 78return code == VersionMismatchFaultCode || code == Soap12FaultCodes.VersionMismatchFaultCode; 83return code == MustUnderstandFaultCode || code == Soap12FaultCodes.MustUnderstandFaultCode;
System\Web\Services\Protocols\SoapServerProtocol.cs (4)
575new XmlQualifiedName(Soap.Code.Client, Soap.Namespace), new SoapFaultSubCode(Soap12FaultCodes.UnsupportedMediaTypeFaultCode)); 592new XmlQualifiedName(Soap.Code.Client, Soap.Namespace), new SoapFaultSubCode(Soap12FaultCodes.UnsupportedMediaTypeFaultCode)); 732soapException = SoapException.Create(Version, Res.GetString(Res.WebRequestUnableToProcess), new XmlQualifiedName(Soap.Code.Client, Soap.Namespace), null, null, null, new SoapFaultSubCode(Soap12FaultCodes.RpcBadArgumentsFaultCode), e); 933if (soapException.SubCode != null && soapException.SubCode.Code == Soap12FaultCodes.UnsupportedMediaTypeFaultCode) {