Home
last modified time | relevance | path

Searched refs:soapAction (Results 1 – 25 of 405) sorted by relevance

12345678910>>...17

/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DContentTypeImpl.java36 private final @NotNull String soapAction; field in ContentTypeImpl
49 this(contentType, soapAction, null); in ContentTypeImpl()
53 this(contentType, soapAction, accept, null); in ContentTypeImpl()
59 this.soapAction = getQuotedSOAPAction(soapAction); in ContentTypeImpl()
84 private String getQuotedSOAPAction(String soapAction){ in getQuotedSOAPAction() argument
85 if(soapAction == null || soapAction.length() == 0){ in getQuotedSOAPAction()
87 }else if(soapAction.charAt(0) != '"' && soapAction.charAt(soapAction.length() -1) != '"'){ in getQuotedSOAPAction()
89 return "\"" + soapAction + "\""; in getQuotedSOAPAction()
91 return soapAction; in getQuotedSOAPAction()
102 return soapAction; in getSOAPActionHeader()
[all …]
H A DStreamSOAP12Codec.java76 if (packet.soapAction == null) { in getContentType()
79 b.contentType = b.contentType + ";action="+fixQuotesAroundSoapAction(packet.soapAction); in getContentType()
87 packet.soapAction = fixQuotesAroundSoapAction(ct.getParameter("action")); in decode()
91 private String fixQuotesAroundSoapAction(String soapAction) { in fixQuotesAroundSoapAction() argument
92 if(soapAction != null && (!soapAction.startsWith("\"") || !soapAction.endsWith("\"")) ) { in fixQuotesAroundSoapAction()
93 String fixedSoapAction = soapAction; in fixQuotesAroundSoapAction()
94 if(!soapAction.startsWith("\"")) in fixQuotesAroundSoapAction()
96 if(!soapAction.endsWith("\"")) in fixQuotesAroundSoapAction()
100 return soapAction; in fixQuotesAroundSoapAction()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DContentTypeImpl.java36 private final @NotNull String soapAction; field in ContentTypeImpl
49 this(contentType, soapAction, null); in ContentTypeImpl()
53 this(contentType, soapAction, accept, null); in ContentTypeImpl()
59 this.soapAction = getQuotedSOAPAction(soapAction); in ContentTypeImpl()
84 private String getQuotedSOAPAction(String soapAction){ in getQuotedSOAPAction() argument
85 if(soapAction == null || soapAction.length() == 0){ in getQuotedSOAPAction()
87 }else if(soapAction.charAt(0) != '"' && soapAction.charAt(soapAction.length() -1) != '"'){ in getQuotedSOAPAction()
89 return "\"" + soapAction + "\""; in getQuotedSOAPAction()
91 return soapAction; in getQuotedSOAPAction()
102 return soapAction; in getSOAPActionHeader()
[all …]
H A DStreamSOAP12Codec.java76 if (packet.soapAction == null) { in getContentType()
79 b.contentType = b.contentType + ";action="+fixQuotesAroundSoapAction(packet.soapAction); in getContentType()
87 packet.soapAction = fixQuotesAroundSoapAction(ct.getParameter("action")); in decode()
91 private String fixQuotesAroundSoapAction(String soapAction) { in fixQuotesAroundSoapAction() argument
92 if(soapAction != null && (!soapAction.startsWith("\"") || !soapAction.endsWith("\"")) ) { in fixQuotesAroundSoapAction()
93 String fixedSoapAction = soapAction; in fixQuotesAroundSoapAction()
94 if(!soapAction.startsWith("\"")) in fixQuotesAroundSoapAction()
96 if(!soapAction.endsWith("\"")) in fixQuotesAroundSoapAction()
100 return soapAction; in fixQuotesAroundSoapAction()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/
H A DSOAPActionBasedOperationFinder.java63 String soapAction = m.getSOAPAction(); in SOAPActionBasedOperationFinder() local
64 Integer count = unique.get(soapAction); in SOAPActionBasedOperationFinder()
66 unique.put(soapAction, 1); in SOAPActionBasedOperationFinder()
68 unique.put(soapAction, ++count); in SOAPActionBasedOperationFinder()
73 String soapAction = m.getSOAPAction(); in SOAPActionBasedOperationFinder() local
76 if (unique.get(soapAction) == 1) { in SOAPActionBasedOperationFinder()
77 methodHandlers.put('"' + soapAction + '"', wsdlOperationMapping(m)); in SOAPActionBasedOperationFinder()
90 return request.soapAction == null ? null : methodHandlers.get(request.soapAction); in getWSDLOperationMapping()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/
H A DSOAPActionBasedOperationFinder.java63 String soapAction = m.getSOAPAction(); in SOAPActionBasedOperationFinder() local
64 Integer count = unique.get(soapAction); in SOAPActionBasedOperationFinder()
66 unique.put(soapAction, 1); in SOAPActionBasedOperationFinder()
68 unique.put(soapAction, ++count); in SOAPActionBasedOperationFinder()
73 String soapAction = m.getSOAPAction(); in SOAPActionBasedOperationFinder() local
76 if (unique.get(soapAction) == 1) { in SOAPActionBasedOperationFinder()
77 methodHandlers.put('"' + soapAction + '"', wsdlOperationMapping(m)); in SOAPActionBasedOperationFinder()
90 return request.soapAction == null ? null : methodHandlers.get(request.soapAction); in getWSDLOperationMapping()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DProblemActionHeader.java52 protected String soapAction; field in ProblemActionHeader
62 …public ProblemActionHeader(@NotNull String action, String soapAction, @NotNull AddressingVersion a… in ProblemActionHeader() argument
66 this.soapAction = soapAction; in ProblemActionHeader()
100 if (soapAction != null) { in writeTo()
102 w.writeCharacters(soapAction); in writeTo()
115 if (soapAction != null) { in writeTo()
117 she.addTextNode(soapAction); in writeTo()
130 if (soapAction != null) { in writeTo()
132 h.characters(soapAction.toCharArray(),0,soapAction.length()); in writeTo()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DProblemActionHeader.java52 protected String soapAction; field in ProblemActionHeader
62 …public ProblemActionHeader(@NotNull String action, String soapAction, @NotNull AddressingVersion a… in ProblemActionHeader() argument
66 this.soapAction = soapAction; in ProblemActionHeader()
100 if (soapAction != null) { in writeTo()
102 w.writeCharacters(soapAction); in writeTo()
115 if (soapAction != null) { in writeTo()
117 she.addTextNode(soapAction); in writeTo()
130 if (soapAction != null) { in writeTo()
132 h.characters(soapAction.toCharArray(),0,soapAction.length()); in writeTo()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/mscorlib/system/runtime/remoting/
H A Dsoap.cs401 if (soapAction != null) in RegisterSoapActionForMethodBase()
403 _methodBaseToSoapAction[mb] = soapAction; in RegisterSoapActionForMethodBase()
426 if (soapAction == null) in GetSoapActionFromMethodBase()
430 soapAction = attr.SoapAction; in GetSoapActionFromMethodBase()
433 return soapAction; in GetSoapActionFromMethodBase()
444 if ((soapAction[0] == '"') && (soapAction[soapAction.Length - 1] == '"')) in IsSoapActionValidForMethodBase()
445 soapAction = soapAction.Substring(1, soapAction.Length - 2); in IsSoapActionValidForMethodBase()
464 String[] parts = soapAction.Split(new char[1]{'#'}); in IsSoapActionValidForMethodBase()
504 if ((soapAction[0] == '"') && (soapAction[soapAction.Length - 1] == '"')) in GetTypeAndMethodNameFromSoapAction()
505 soapAction = soapAction.Substring(1, soapAction.Length - 2); in GetTypeAndMethodNameFromSoapAction()
[all …]
/dports/www/kdsoap/kdsoap-1.9.0/src/KDSoapClient/
H A DKDSoapClientInterface.cpp100 QString soapAction = action; in prepareRequest() local
102 if (soapAction.isNull()) { in prepareRequest()
106 soapAction = this->m_messageNamespace; in prepareRequest()
107 if (!soapAction.endsWith(QLatin1Char('/'))) { in prepareRequest()
108 soapAction += QLatin1Char('/'); in prepareRequest()
110 soapAction += method; in prepareRequest()
117 request.setRawHeader("SoapAction", '\"' + soapAction.toUtf8() + '\"'); in prepareRequest()
119 … soapHeader += QString::fromLatin1("application/soap+xml;charset=utf-8;action=") + soapAction; in prepareRequest()
160 QNetworkRequest request = d->prepareRequest(method, soapAction); in asyncCall()
175 … KDSoapThreadTaskData *task = new KDSoapThreadTaskData(this, method, message, soapAction, headers); in call()
[all …]
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/v200408/
H A DProblemAction.java42 private String soapAction; field in ProblemAction
52 public ProblemAction(String action, String soapAction) { in ProblemAction() argument
54 this.soapAction = soapAction; in ProblemAction()
62 return soapAction; in getSoapAction()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DProblemAction.java43 private String soapAction; field in ProblemAction
53 public ProblemAction(String action, String soapAction) { in ProblemAction() argument
55 this.soapAction = soapAction; in ProblemAction()
63 return soapAction; in getSoapAction()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DProblemAction.java43 private String soapAction; field in ProblemAction
53 public ProblemAction(String action, String soapAction) { in ProblemAction() argument
55 this.soapAction = soapAction; in ProblemAction()
63 return soapAction; in getSoapAction()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/v200408/
H A DProblemAction.java42 private String soapAction; field in ProblemAction
52 public ProblemAction(String action, String soapAction) { in ProblemAction() argument
54 this.soapAction = soapAction; in ProblemAction()
62 return soapAction; in getSoapAction()
/dports/www/phpgroupware/phpgroupware-0.9.16.017/phpgwapi/inc/
H A Dclass.phpgw_soapclient.inc.php59 function call($method,$params='',$namespace=false,$soapAction=false) argument
82 if(!$soapAction)
88 if(!$soapAction = $this->wsdl->getSoapAction($this->portName,$method))
93 $this->debug("soapAction: $soapAction");
120 $dbg = "sending msg w/ soapaction '$soapAction'...";
121 if($return = $soap_client->send($soapmsg,$soapAction))
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.Services/System.Web.Services.Description/
H A DSoapOperationBinding.cs41 string soapAction; field in System.Web.Services.Description.SoapOperationBinding
50 soapAction = String.Empty; in SoapOperationBinding()
60 get { return soapAction; }
61 set { soapAction = value; }
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/soap/
H A DSOAPBindingImpl.java48 this.soapAction = sb.getSOAPAction(); in SOAPBindingImpl()
68 public void setSOAPAction(String soapAction) { in setSOAPAction() argument
69 this.soapAction = soapAction; in setSOAPAction()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/oracle/webservices/internal/api/message/
H A DContentType.java65 private String soapAction; field in ContentType.Builder
70 public Builder soapAction (String s) {soapAction = s; return this; } in soapAction() method in ContentType.Builder
75 return new ContentTypeImpl(contentType, soapAction, accept, charset); in build()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/oracle/webservices/internal/api/message/
H A DContentType.java65 private String soapAction; field in ContentType.Builder
70 public Builder soapAction (String s) {soapAction = s; return this; } in soapAction() method in ContentType.Builder
75 return new ContentTypeImpl(contentType, soapAction, accept, charset); in build()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/soap/
H A DSOAPBindingImpl.java48 this.soapAction = sb.getSOAPAction(); in SOAPBindingImpl()
68 public void setSOAPAction(String soapAction) { in setSOAPAction() argument
69 this.soapAction = soapAction; in setSOAPAction()
/dports/science/apbs/apbs-pdb2pqr-apbs-1.5-102-g500c1473/pdb2pqr/contrib/ZSI-2.1-a1/ZSI/
H A DServiceContainer.py169 soapAction = {} variable in ServiceInterface
203 self.soapAction.get(action)
272 soapAction = self.headers.getheader('SOAPAction')
276 if soapAction:
277 soapAction = soapAction.strip('\'"')
298 self.headers, soapAction)
302 post=post, action=soapAction)
318 soapAction = self.headers.getheader('SOAPAction')
322 if soapAction:
323 soapAction = soapAction.strip('\'"')
[all …]
/dports/science/apbs/apbs-pdb2pqr-apbs-1.5-102-g500c1473/pdb2pqr/ZSI/
H A DServiceContainer.py169 soapAction = {} variable in ServiceInterface
203 self.soapAction.get(action)
272 soapAction = self.headers.getheader('SOAPAction')
276 if soapAction:
277 soapAction = soapAction.strip('\'"')
298 self.headers, soapAction)
302 post=post, action=soapAction)
318 soapAction = self.headers.getheader('SOAPAction')
322 if soapAction:
323 soapAction = soapAction.strip('\'"')
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/corlib/System.Runtime.Remoting/
H A DSoapServices.cs206 public static bool GetTypeAndMethodNameFromSoapAction (string soapAction, in GetTypeAndMethodNameFromSoapAction() argument
212 MethodBase mb = (MethodBase) _soapActionsMethods [soapAction]; in GetTypeAndMethodNameFromSoapAction()
227 int i = soapAction.LastIndexOf ('#'); in GetTypeAndMethodNameFromSoapAction()
230 methodName = soapAction.Substring (i+1); in GetTypeAndMethodNameFromSoapAction()
232 if (!DecodeXmlNamespaceForClrTypeNamespace (soapAction.Substring (0,i), out type, out assembly) ) in GetTypeAndMethodNameFromSoapAction()
289 public static bool IsSoapActionValidForMethodBase (string soapAction, MethodBase mb) in IsSoapActionValidForMethodBase() argument
293 GetTypeAndMethodNameFromSoapAction (soapAction, out typeName, out methodName); in IsSoapActionValidForMethodBase()
382 public static void RegisterSoapActionForMethodBase (MethodBase mb, string soapAction) in RegisterSoapActionForMethodBase() argument
386 _soapActions [mb] = soapAction; in RegisterSoapActionForMethodBase()
387 _soapActionsMethods [soapAction] = mb; in RegisterSoapActionForMethodBase()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DRequestContext.java192 private String soapAction; field in RequestContext
196 return soapAction; in getSoapAction()
200 soapAction = sAction; in setSoapAction()
237 soapAction = that.soapAction; in RequestContext()
347 final String localSoapAction = p ? packet.soapAction : soapAction; in fillSOAPAction()
357 packet.soapAction = localSoapAction; in fillSOAPAction()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DRequestContext.java192 private String soapAction; field in RequestContext
196 return soapAction; in getSoapAction()
200 soapAction = sAction; in setSoapAction()
237 soapAction = that.soapAction; in RequestContext()
347 final String localSoapAction = p ? packet.soapAction : soapAction; in fillSOAPAction()
357 packet.soapAction = localSoapAction; in fillSOAPAction()

12345678910>>...17