Home
last modified time | relevance | path

Searched refs:Soap12 (Results 1 – 25 of 125) sorted by relevance

12345

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Services/System/Web/Services/Protocols/
H A DSoapFaultCodes.cs21 …nly XmlQualifiedName ReceiverFaultCode = new XmlQualifiedName(Soap12.Code.Receiver, Soap12.Namespa…
23 …adonly XmlQualifiedName SenderFaultCode = new XmlQualifiedName(Soap12.Code.Sender, Soap12.Namespac…
25 …lifiedName VersionMismatchFaultCode = new XmlQualifiedName(Soap12.Code.VersionMismatch, Soap12.Nam…
27 …alifiedName MustUnderstandFaultCode = new XmlQualifiedName(Soap12.Code.MustUnderstand, Soap12.Name…
29 …Name DataEncodingUnknownFaultCode = new XmlQualifiedName(Soap12.Code.DataEncodingUnknown, Soap12.N…
32 …ProcedureNotPresentFaultCode = new XmlQualifiedName(Soap12.Code.RpcProcedureNotPresentSubcode, Soa…
34 …edName RpcBadArgumentsFaultCode = new XmlQualifiedName(Soap12.Code.RpcBadArgumentsSubcode, Soap12.…
37 …e EncodingMissingIdFaultCode = new XmlQualifiedName(Soap12.Code.EncodingMissingIDFaultSubcode, Soa…
39 …odingUntypedValueFaultCode = new XmlQualifiedName(Soap12.Code.EncodingUntypedValueFaultSubcode, So…
H A DSoapUnknownHeader.cs33 if (version == SoapProtocolVersion.Soap12) {
41 element.SetAttribute(Soap12.Attribute.Role, Soap12.Namespace, actor);
51 element.RemoveAttribute(Soap.Attribute.MustUnderstand, Soap12.Namespace);
56 element.RemoveAttribute(Soap12.Attribute.Role, Soap12.Namespace);
57 element.RemoveAttribute(Soap12.Attribute.Relay, Soap12.Namespace);
102 element.RemoveAttribute(Soap.Attribute.MustUnderstand, Soap12.Namespace);
113 … elementActor = GetElementAttribute(Soap12.Attribute.Role, Soap12.Namespace, element);
127 element.RemoveAttribute(Soap12.Attribute.Role, Soap12.Namespace);
136 … string elementRelay = GetElementAttribute(Soap12.Attribute.Relay, Soap12.Namespace, element);
155 element.SetAttribute(Soap12.Attribute.Relay, Soap12.Namespace, "1");
[all …]
H A DSoap12ServerProtocol.cs29 get { return SoapProtocolVersion.Soap12; }
35 get { return Soap12.Namespace; }
38 get { return Soap12.Encoding; }
126 writer.WriteStartElement(Soap12.Element.FaultCode, Soap12.Namespace); in WriteFault()
130 writer.WriteStartElement(Soap12.Element.FaultReason, Soap12.Namespace); in WriteFault()
131 writer.WriteStartElement(Soap12.Element.FaultReasonText, Soap12.Namespace); in WriteFault()
140 writer.WriteElementString(Soap12.Element.FaultNode, Soap12.Namespace, actor); in WriteFault()
144 writer.WriteElementString(Soap12.Element.FaultRole, Soap12.Namespace, role); in WriteFault()
149 writer.WriteStartElement(Soap12.Element.FaultDetail, Soap12.Namespace); in WriteFault()
165 writer.WriteStartElement(Soap12.Element.FaultCodeValue, Soap12.Namespace); in WriteFaultCodeValue()
[all …]
H A DSoapClientProtocol.cs486 … return this.version == SoapProtocolVersion.Soap12 ? Soap12.Namespace : Soap.Namespace;
492 … return this.version == SoapProtocolVersion.Soap12 ? Soap12.Encoding : Soap.Encoding;
520 if (this.version == SoapProtocolVersion.Soap12) in BeforeSerialize()
654 else if (reader.NamespaceURI == Soap12.Namespace) in ReadResponse()
655 reader.ReadStartElement(Soap.Element.Envelope, Soap12.Namespace); in ReadResponse()
716 bool soap12 = (reader.NamespaceURI == Soap12.Namespace); in ReadSoapException()
737 else if (reader.LocalName == Soap12.Element.FaultReason) { in ReadSoapException()
744 …if (reader.LocalName == Soap12.Element.FaultReasonText && reader.NamespaceURI == Soap12.Namespace)… in ReadSoapException()
763 else if (reader.LocalName == Soap12.Element.FaultRole) { in ReadSoapException()
815 if (reader.LocalName == Soap12.Element.FaultCodeValue) { in ReadSoap12FaultCodesRecursive()
[all …]
H A DSoapHeader.cs43 get { return version != SoapProtocolVersion.Soap12 && MustUnderstand ? "1" : "0"; }
56 [XmlAttribute("mustUnderstand", Namespace = Soap12.Namespace),
57 SoapAttribute("mustUnderstand", Namespace = Soap12.Namespace),
92 get { return version != SoapProtocolVersion.Soap12 ? InternalActor : ""; }
97 [XmlAttribute("role", Namespace = Soap12.Namespace),
98 SoapAttribute("role", Namespace = Soap12.Namespace),
124 [XmlAttribute("relay", Namespace = Soap12.Namespace),
125 SoapAttribute("relay", Namespace = Soap12.Namespace),
296 if (envelopeNS == Soap12.Namespace) { in WriteHeaders()
297 version = SoapProtocolVersion.Soap12; in WriteHeaders()
[all …]
H A DSoap11ServerProtocol.cs149 else if (code.Namespace == Soap12.Namespace) { in TranslateFaultCode()
150 if (code.Name == Soap12.Code.Receiver) in TranslateFaultCode()
152 else if (code.Name == Soap12.Code.Sender) in TranslateFaultCode()
154 else if (code.Name == Soap12.Code.MustUnderstand) in TranslateFaultCode()
156 else if (code.Name == Soap12.Code.VersionMismatch) in TranslateFaultCode()
H A DSoapServerProtocol.cs562 … expectedNamespace = IsSupported(WebServiceProtocols.HttpSoap) ? Soap.Namespace : Soap12.Namespace; in CheckHelperVersion()
610 …erverMethod.wsiClaims & WsiProfiles.BasicProfile1_1) != 0 && version != SoapProtocolVersion.Soap12; in ReadParameters()
697 if (serverMethod.rpc && version == SoapProtocolVersion.Soap12) { in WriteReturns()
698 writer.WriteAttributeString("xmlns", "rpc", null, Soap12.RpcNamespace); in WriteReturns()
704 …if (isEncoded && version != SoapProtocolVersion.Soap12) // don't write encodingStyle on soap:Body … in WriteReturns()
730 …hod != null && serverMethod.rpc && helper.Version == SoapProtocolVersion.Soap12 && e is ArgumentEx… in WriteException()
834 …XmlElement upgradeElement = doc.CreateElement(Soap12.Prefix, Soap12.Element.Upgrade, Soap12.Namesp… in CreateUpgradeHeader()
838 … upgradeElement.AppendChild(CreateUpgradeEnvelope(doc, Soap12.Prefix, Soap12.Namespace)); in CreateUpgradeHeader()
846 …XmlElement envelopeElement = doc.CreateElement(Soap12.Prefix, Soap12.Element.UpgradeEnvelope, Soap… in CreateUpgradeEnvelope()
849 XmlAttribute qnameAttr = doc.CreateAttribute(Soap12.Attribute.UpgradeEnvelopeQname); in CreateUpgradeEnvelope()
[all …]
H A DRuntimeUtils.cs85 if (ns == Soap12.Namespace || ns == Soap12.Encoding || ns == Soap12.RpcNamespace) in IsKnownNamespace()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/System.ServiceModel.Channels/
H A DMessageVersion.cs42 …Soap12WSAddressing10 = new MessageVersion (EnvelopeVersion.Soap12, AddressingVersion.WSAddressing… in MessageVersion()
44 Soap12 = new MessageVersion (EnvelopeVersion.Soap12, AddressingVersion.None); in MessageVersion()
47 …Soap12WSAddressingAugust2004 = new MessageVersion (EnvelopeVersion.Soap12, AddressingVersion.WSAdd… in MessageVersion()
69 …if (envelopeVersion == EnvelopeVersion.Soap12 && addressingVersion == AddressingVersion.WSAddressi… in CreateVersion()
72 if (envelopeVersion == EnvelopeVersion.Soap12 && addressingVersion == AddressingVersion.None) in CreateVersion()
73 return Soap12; in CreateVersion()
78 …if (envelopeVersion == EnvelopeVersion.Soap12 && addressingVersion == AddressingVersion.WSAddressi… in CreateVersion()
108 get { return CreateVersion (EnvelopeVersion.Soap12); }
127 public static MessageVersion Soap12 { property in System.ServiceModel.Channels.MessageVersion
/dports/www/py-spyne/spyne-2.13.16/spyne/test/protocol/
H A Dtest_soap12.py19 from spyne.protocol.soap.soap12 import Soap12
70 self.app = Application([TestService], 'tns', in_protocol=Soap12(), out_protocol=Soap12())
82 …self.app = Application([MultipleReturnService], 'tns', in_protocol=Soap12(), out_protocol=Soap12())
110 so = Soap12()
121 app = Application([SoapException], 'tns', in_protocol=Soap12(), out_protocol=Soap12())
173 value, faultstrings = Soap12().gen_fault_codes(faultstring=fault_string)
174 self.assertEqual(value, "%s:Receiver" %(Soap12.soap_env))
180 value, faultstrings = Soap12().gen_fault_codes(faultstring=fault_string)
195 in_protocol=Soap12(), out_protocol=Soap12())
235 in_protocol=Soap12(), out_protocol=Soap12())
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/Test/System.ServiceModel.Channels/
H A DEnvelopeVersionTest.cs51 Assert.AreEqual (3, EnvelopeVersion.Soap12.GetUltimateDestinationActorValues ().Length, "#4"); in GetUltimateDestinationActorValuesTest()
53 EnvelopeVersion.Soap12.GetUltimateDestinationActorValues () [0], "#5"); in GetUltimateDestinationActorValuesTest()
55 EnvelopeVersion.Soap12.GetUltimateDestinationActorValues () [1], "#6"); in GetUltimateDestinationActorValuesTest()
57 EnvelopeVersion.Soap12.GetUltimateDestinationActorValues () [2], "#7"); in GetUltimateDestinationActorValuesTest()
63 Assert.AreEqual (EnvelopeVersion.Soap12, MessageVersion.Default.Envelope, "#1"); in Equality()
64 Assert.IsTrue (EnvelopeVersion.Soap12 == MessageVersion.Default.Envelope, "#2"); in Equality()
65 …Assert.IsTrue (Object.ReferenceEquals (EnvelopeVersion.Soap12, MessageVersion.Default.Envelope), "… in Equality()
H A DMessageVersionTest.cs47 EnvelopeVersion.Soap12, AddressingVersion.WSAddressing10); in Equality()
55 EnvelopeVersion.Soap12, AddressingVersion.WSAddressing10); in Equality()
85 MessageVersion.CreateVersion (EnvelopeVersion.Soap12, AddressingVersion.WSAddressing10), in CreateVersionReturnsSameObjectReference()
86 MessageVersion.CreateVersion (EnvelopeVersion.Soap12, AddressingVersion.WSAddressing10) in CreateVersionReturnsSameObjectReference()
95 MessageVersion.CreateVersion (EnvelopeVersion.Soap12, AddressingVersion.None), in CreateVersionReturnsSameObjectReference()
96 MessageVersion.CreateVersion (EnvelopeVersion.Soap12, AddressingVersion.None) in CreateVersionReturnsSameObjectReference()
H A DMessageHeadersTest.cs247 Message m = Message.CreateMessage (MessageVersion.Soap12, "Echo", (object) null); in WriteHeaderContentsAddressingNone()
357 MessageHeaders h = new MessageHeaders (MessageVersion.Soap12); in AddressingNoneAndAction()
365 MessageHeaders h = new MessageHeaders (MessageVersion.Soap12); in AddressingNoneAndFrom()
373 MessageHeaders h = new MessageHeaders (MessageVersion.Soap12); in AddressingNoneAndFaultTo()
381 MessageHeaders h = new MessageHeaders (MessageVersion.Soap12); in AddressingNoneAndMessageId()
389 MessageHeaders h = new MessageHeaders (MessageVersion.Soap12); in AddressingNoneAndRelatesTo()
397 MessageHeaders h = new MessageHeaders (MessageVersion.Soap12); in AddressingNoneAndReplyTo()
404 MessageHeaders h = new MessageHeaders (MessageVersion.Soap12); in AddressingNoneAndTo()
/dports/irc/smuxi/smuxi-1.1/lib/ServiceStack/src/ServiceStack.Common/Web/
H A DContentType.cs27 public const string Soap12 = " application/soap+xml"; field in ServiceStack.Common.Web.ContentType
90 case Soap12: in GetEndpointAttributes()
91 return EndpointAttributes.Soap12; in GetEndpointAttributes()
162 case Soap12: in GetFeature()
163 return Feature.Soap12; in GetFeature()
191 case EndpointType.Soap12: in GetContentType()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Description/
H A DSoapHelper.cs154 … return o is WsdlNS.Soap12Binding ? EnvelopeVersion.Soap12 : EnvelopeVersion.Soap11; in GetSoapVersion()
156 return EnvelopeVersion.Soap12; in GetSoapVersion()
238 …WsdlNS.SoapBinding dest = version == EnvelopeVersion.Soap12 ? new WsdlNS.Soap12Binding() : new Wsd… in ConvertSoapBinding()
376 if (version == EnvelopeVersion.Soap12) in ConvertSoapFaultBinding()
447 return src is T12 ? EnvelopeVersion.Soap12 : EnvelopeVersion.Soap11; in GetBindingVersion()
456 if (version == EnvelopeVersion.Soap12) in CreateSoapAddressBinding()
475 if (version == EnvelopeVersion.Soap12) in CreateSoapBinding()
493 if (version == EnvelopeVersion.Soap12) in CreateSoapOperationBinding()
511 if (version == EnvelopeVersion.Soap12) in CreateSoapBodyBinding()
529 if (version == EnvelopeVersion.Soap12) in CreateSoapHeaderBinding()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/
H A DMessageVersion.cs29 soap12 = new MessageVersion(EnvelopeVersion.Soap12, AddressingVersion.None); in MessageVersion()
31 … soap12Addressing10 = new MessageVersion(EnvelopeVersion.Soap12, AddressingVersion.WSAddressing10); in MessageVersion()
33 …soap12Addressing200408 = new MessageVersion(EnvelopeVersion.Soap12, AddressingVersion.WSAddressing… in MessageVersion()
59 if (envelopeVersion == EnvelopeVersion.Soap12) in CreateVersion()
178 public static MessageVersion Soap12 property in System.ServiceModel.Channels.MessageVersion
H A DMessageHeader.cs74 else if (IsMessageVersionSupported(MessageVersion.Soap12)) in ToString()
76 WriteHeader(writer, MessageVersion.Soap12); in ToString()
140 if (this.Relay && messageVersion.Envelope == EnvelopeVersion.Soap12) in WriteHeaderAttributes()
218 if (version.Envelope == EnvelopeVersion.Soap12) in GetHeaderAttributes()
325 if (actor == EnvelopeVersion.Soap12.UltimateDestinationActor) in XmlObjectSerializerHeader()
330 else if (actor == EnvelopeVersion.Soap12.NextDestinationActorValue) in XmlObjectSerializerHeader()
381 if (messageVersion.Envelope == EnvelopeVersion.Soap12) in IsMessageVersionSupported()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Configuration/
H A DMessageVersionConverter.cs57 case ConfigurationStrings.Soap12: in ConvertFrom()
58 retval = MessageVersion.Soap12; in ConvertFrom()
105 else if (messageVersion == MessageVersion.Soap12) in ConvertTo()
107 retval = ConfigurationStrings.Soap12; in ConvertTo()
/dports/www/py-spyne/spyne-2.13.16/spyne/test/interop/server/soap12/
H A Dsoap_http_basic.py29 from spyne.protocol.soap import Soap12
33 in_protocol=Soap12(validator='lxml', cleanup_namespaces=True),
34 out_protocol=Soap12())
H A Dhttprpc_soap_basic.py28 from spyne.protocol.soap import Soap12
32 'spyne.test.interop.server.httprpc.soap', in_protocol=HttpRpc(), out_protocol=Soap12())
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Services/System/Web/Services/Description/
H A DSoap12ProtocolImporter.cs47 iStart = uriList.IndexOf(Soap12.Encoding, iStart, StringComparison.Ordinal); in IsSoapEncodingPresent()
50 int iEnd = iStart + Soap12.Encoding.Length; in IsSoapEncodingPresent()
60 …edOperationBindingWarning(Res.GetString(Res.WebSoap11EncodingStyleNotSupported1, Soap12.Encoding)); in IsSoapEncodingPresent()
/dports/www/py-spyne/spyne-2.13.16/examples/xml/soap12-mtom/
H A Dsoap12_mtom.py17 from spyne.protocol.soap import Soap12
53 in_protocol=Soap12(),
54 out_protocol=Soap12())
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/
H A DFaultCode.cs51 this.version = EnvelopeVersion.Soap12; in FaultCode()
73 return name == (this.version ?? EnvelopeVersion.Soap12).SenderFaultName;
84 return name == (this.version ?? EnvelopeVersion.Soap12).ReceiverFaultName;
/dports/irc/smuxi/smuxi-1.1/lib/ServiceStack/src/ServiceStack.Interfaces/ServiceHost/
H A DFeature.cs10 Soap = Soap11 | Soap12,
16 Soap12 = 1 << 4, enumerator
H A DEndpointAttributes.cs15 AllEndpointTypes = Soap11 | Soap12 | Xml | Json | Jsv | ProtoBuf | Csv,
43 Soap12 = 1 << 16, enumerator

12345