Searched defs:faultcode (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/
H A DSOAP11Fault.java49 * <faultcode>soap:Client</faultcode>
69 "faultcode",
77 private QName faultcode; field in class:SOAP11Fault
101 this.faultcode = code;
117 this.faultcode = fault.getFaultCodeAsQName();
131 return faultcode;
134 void setFaultcode(QName faultcode) { argument
135 this.faultcode = faultcode;
[all...]
H A DSOAPFaultBuilder.java138 * To be called to convert a {@link ProtocolException} and faultcode for a given {@link SOAPVersion} in to a {@link Message}.
142 * @param faultcode soap faultcode. Its ignored if the {@link ProtocolException} instance is {@link SOAPFaultException} and it has a
143 * faultcode present in the underlying {@link SOAPFault}.
146 public static @NotNull Message createSOAPFaultMessage(@NotNull SOAPVersion soapVersion, @NotNull ProtocolException ex, @Nullable QName faultcode){ argument
149 return createSOAP12Fault(soapVersion, ex, detail, null, faultcode);
150 return createSOAP11Fault(soapVersion, ex, detail, null, faultcode);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DMessages.java399 * To be called to convert a {@link ProtocolException} and faultcode for a given {@link SOAPVersion} in to a {@link Message}.
403 * @param faultcode soap faultcode. Its ignored if the {@link ProtocolException} instance is {@link javax.xml.ws.soap.SOAPFaultException} and it has a
404 * faultcode present in the underlying {@link SOAPFault}.
407 public static @NotNull Message create(@NotNull SOAPVersion soapVersion, @NotNull ProtocolException pex, @Nullable QName faultcode){ argument
408 return SOAPFaultBuilder.createSOAPFaultMessage(soapVersion, pex, faultcode);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DFaultImpl.java66 protected abstract void finallySetFaultCode(String faultcode) throws SOAPException; argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_1/
H A DFault1_1Impl.java69 return NameImpl.createFromUnqualifiedName("faultcode");
93 // SOAP 1.1 doesn't seem to mandate using faultcode from a particular
98 protected void finallySetFaultCode(String faultcode) throws SOAPException { argument
99 this.faultCodeElement.addTextNode(faultcode);
118 // specs. A message that does not contain a <faultcode>
188 localName.equalsIgnoreCase("faultcode") ||
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_2/
H A DFault1_2Impl.java134 protected void finallySetFaultCode(String faultcode) throws SOAPException { argument
136 value.addTextNode(faultcode);
340 String faultcode = getFaultCode();
341 if (faultcode == null) {
349 faultcode,
354 String faultcode = getFaultCode();
355 if (faultcode == null) {
364 faultcode,

Completed in 44 milliseconds