Searched refs:SOAPFaultException (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/soap/
H A DSOAPFaultException.java30 /** The <code>SOAPFaultException</code> exception represents a
33 * <p>A <code>SOAPFaultException</code> wraps a SAAJ <code>SOAPFault</code>
53 public class SOAPFaultException extends javax.xml.ws.ProtocolException { class in inherits:javax.xml.ws.ProtocolException
57 /** Constructor for SOAPFaultException
62 public SOAPFaultException(SOAPFault fault) { method in class:SOAPFaultException
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/fault/
H A DSOAPFaultBuilder.java58 import javax.xml.ws.soap.SOAPFaultException;
142 * @param faultcode soap faultcode. Its ignored if the {@link ProtocolException} instance is {@link SOAPFaultException} and it has a
166 * <li>If t is instance of {@link SOAPFaultException} then its serilaized as protocol exception.
167 * <li>If t.getCause() is instance of {@link SOAPFaultException} and t is a checked exception then
357 SOAPFaultException soapFaultException = null;
361 if (e instanceof SOAPFaultException) {
362 soapFaultException = (SOAPFaultException) e;
363 } else if (cause != null && cause instanceof SOAPFaultException) {
364 soapFaultException = (SOAPFaultException) e.getCause();
428 SOAPFaultException soapFaultExceptio
[all...]
H A DSOAP11Fault.java39 import javax.xml.ws.soap.SOAPFaultException;
178 return new SOAPFaultException(fault);
H A DSOAP12Fault.java44 import javax.xml.ws.soap.SOAPFaultException;
214 return new SOAPFaultException(fault);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/protocol/soap/
H A DClientMUTube.java37 import javax.xml.ws.soap.SOAPFaultException;
62 * @throws SOAPFaultException
63 * if all the headers in the packet are not understood, throws SOAPFaultException
H A DMUTube.java51 import javax.xml.ws.soap.SOAPFaultException;
126 final SOAPFaultException createMUSOAPFaultException(Set<QName> notUnderstoodHeaders) {
133 return new SOAPFaultException(fault);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/dispatch/
H A DDispatchImpl.java63 import javax.xml.ws.soap.SOAPFaultException;
184 throw (SOAPFaultException)faultBuilder.createException(null);
450 throw (SOAPFaultException)faultBuilder.createException(null);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/
H A DResponseBuilder.java58 import javax.xml.ws.soap.SOAPFaultException;
432 private SOAPFaultException createDuplicateHeaderException() {
436 return new SOAPFaultException(fault);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/sei/
H A DEndpointArgumentsBuilder.java59 import javax.xml.ws.soap.SOAPFaultException;
429 private SOAPFaultException createDuplicateHeaderException() {
433 return new SOAPFaultException(fault);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/saaj/
H A DSAAJMessage.java68 import javax.xml.ws.soap.SOAPFaultException;

Completed in 45 milliseconds