Searched defs:soapAction (Results 1 - 20 of 20) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DProblemAction.java43 private String soapAction; field in class:ProblemAction
53 public ProblemAction(String action, String soapAction) { argument
55 this.soapAction = soapAction;
63 return soapAction;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/v200408/
H A DProblemAction.java42 private String soapAction; field in class:ProblemAction
52 public ProblemAction(String action, String soapAction) { argument
54 this.soapAction = soapAction;
62 return soapAction;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DContentTypeImpl.java36 private final @NotNull String soapAction; field in class:ContentTypeImpl
44 public ContentTypeImpl(String contentType, @Nullable String soapAction) { argument
45 this(contentType, soapAction, null);
48 public ContentTypeImpl(String contentType, @Nullable String soapAction, @Nullable String accept) { argument
51 this.soapAction = getQuotedSOAPAction(soapAction);
71 private String getQuotedSOAPAction(String soapAction){ argument
72 if(soapAction == null || soapAction.length() == 0){
74 }else if(soapAction
[all...]
H A DStreamSOAP11Codec.java66 protected ContentType getContentType(String soapAction) { argument
67 return new ContentTypeImpl(SOAP11_CONTENT_TYPE, soapAction);
H A DStreamSOAP12Codec.java70 protected ContentType getContentType(String soapAction) { argument
72 if (soapAction == null) {
75 return new ContentTypeImpl(SOAP12_CONTENT_TYPE + ";action="+fixQuotesAroundSoapAction(soapAction));
82 packet.soapAction = fixQuotesAroundSoapAction(ct.getParameter("action"));
86 private String fixQuotesAroundSoapAction(String soapAction) { argument
87 if(soapAction != null && (!soapAction.startsWith("\"") || !soapAction.endsWith("\"")) ) {
88 String fixedSoapAction = soapAction;
89 if(!soapAction
[all...]
H A DStreamSOAPCodec.java91 return getContentType(packet.soapAction);
105 return getContentType(packet.soapAction);
108 protected abstract ContentType getContentType(String soapAction); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/soap/
H A DSOAPBindingImpl.java48 this.soapAction = sb.getSOAPAction();
66 * @param soapAction The soapAction to set.
68 public void setSOAPAction(String soapAction) { argument
69 this.soapAction = soapAction;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/document/soap/
H A DSOAPOperation.java43 public com.sun.xml.internal.ws.wsdl.writer.document.soap.SOAPOperation soapAction(String value); method in interface:SOAPOperation
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/document/soap12/
H A DSOAPOperation.java43 public com.sun.xml.internal.ws.wsdl.writer.document.soap12.SOAPOperation soapAction(String value); method in interface:SOAPOperation
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/model/soap/
H A DSOAPBinding.java45 protected String soapAction = ""; field in class:SOAPBinding
83 * Value of <code>wsdl:binding/wsdl:operation/soap:operation@soapAction</code> attribute or
90 * &lt;soap12:operation soapAction=""/>
96 * @see com.sun.xml.internal.ws.api.message.Packet#soapAction
99 return soapAction;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/fastinfoset/
H A DFastInfosetStreamSOAP11Codec.java63 protected ContentType getContentType(String soapAction) { argument
64 if (soapAction == null || soapAction.length() == 0) {
67 return new ContentTypeImpl(_defaultContentType.getContentType(), soapAction);
H A DFastInfosetStreamSOAP12Codec.java63 protected ContentType getContentType(String soapAction) { argument
64 if (soapAction == null) {
68 _defaultContentType.getContentType() + ";action=\""+soapAction+"\"");
H A DFastInfosetStreamSOAPCodec.java89 return getContentType(packet.soapAction);
102 return getContentType(packet.soapAction);
121 protected abstract ContentType getContentType(String soapAction); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A DSEIMethodHandler.java67 protected final String soapAction; field in class:SEIMethodHandler
83 //If a non-"" soapAction is specified, wsa:action the SOAPAction
85 this.soapAction = method.getInputAction();
87 this.soapAction = method.getBinding().getSOAPAction();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DProblemActionHeader.java52 protected String soapAction; field in class:ProblemActionHeader
62 public ProblemActionHeader(@NotNull String action, String soapAction, @NotNull AddressingVersion av) { argument
66 this.soapAction = soapAction;
100 if (soapAction != null) {
102 w.writeCharacters(soapAction);
115 if (soapAction != null) {
117 she.addTextNode(soapAction);
130 if (soapAction != null) {
132 h.characters(soapAction
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DRequestContext.java205 private String soapAction; field in class:RequestContext
209 return soapAction;
215 soapAction = sAction;
252 soapAction = that.soapAction;
302 if (soapAction != null) {
303 packet.soapAction = soapAction;
306 if((!isAddressingEnabled && (soapActionUse == null || !soapActionUse)) && soapAction != null) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/client/
H A DHttpTransportPipe.java351 * write SOAPAction header if the soapAction parameter is non-null or BindingProvider properties set.
354 private void writeSOAPAction(Map<String, List<String>> reqHeaders, String soapAction) { argument
358 if (soapAction != null)
359 reqHeaders.put("SOAPAction", Collections.singletonList(soapAction));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DPacket.java188 this.soapAction = that.soapAction;
530 public String soapAction; field in class:Packet
706 response.soapAction = null; // de-initializing
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/wsdl/
H A DWSDLBoundOperationImpl.java68 private String soapAction; field in class:WSDLBoundOperationImpl
98 return soapAction;
101 public void setSoapAction(String soapAction) { argument
102 this.soapAction = soapAction!=null?soapAction:"";
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DHttpAdapter.java307 packet.soapAction = fixQuotesAroundSoapAction(con.getRequestHeader("SOAPAction"));
327 * Make sure SOAPAction is quoted as {@link Packet#soapAction} expectsa quoted soapAction value.
329 * @param soapAction SoapAction HTTP Header
332 private String fixQuotesAroundSoapAction(String soapAction) { argument
333 if(soapAction != null && (!soapAction.startsWith("\"") || !soapAction.endsWith("\"")) ) {
334 LOGGER.warning("Received WS-I BP non-conformant Unquoted SoapAction HTTP header: "+ soapAction);
335 String fixedSoapAction = soapAction;
[all...]

Completed in 153 milliseconds