Searched refs:SOAPEnvelope (Results 1 - 8 of 8) sorted by relevance

/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/
H A DEnvelope.java31 import javax.xml.soap.SOAPEnvelope;
41 public interface Envelope extends SOAPEnvelope {
H A DSOAPPartImpl.java61 import javax.xml.soap.SOAPEnvelope;
141 public SOAPEnvelope getEnvelope() throws SOAPException {
/openjdk9/jaxws/src/java.xml.ws/share/classes/javax/xml/soap/
H A DSOAPEnvelope.java33 * {@code SOAPEnvelope} object. The {@code SOAPEnvelope} object
42 * objects by calling the methods {@code SOAPEnvelope.getHeader} and
43 * {@code SOAPEnvelope.getBody}. The
47 * which is then used to get the {@code SOAPEnvelope} object <i>se</i>.
51 * SOAPEnvelope se = sp.getEnvelope();
56 * It is possible to change the body or header of a {@code SOAPEnvelope}
67 * the method {@code SOAPEnvelope.addHeader}, which creates a new header and
68 * adds it to the {@code SOAPEnvelope} object. Similarly, the method
70 * it to the {@code SOAPEnvelope} objec
99 public interface SOAPEnvelope extends SOAPElement { interface in inherits:SOAPElement
[all...]
H A DSOAPPart.java61 * A {@code SOAPPart} object contains a {@code SOAPEnvelope} object,
65 * to retrieve the {@code SOAPEnvelope} object.
72 * Gets the {@code SOAPEnvelope} object associated with this
76 * @return the {@code SOAPEnvelope} object for this
80 public abstract SOAPEnvelope getEnvelope() throws SOAPException;
150 * {@code SOAPEnvelope} object.
243 * Sets the content of the {@code SOAPEnvelope} object with the data
256 * Returns the content of the SOAPEnvelope as a JAXP {@code Source}
/openjdk9/jdk/test/javax/xml/soap/
H A DXmlTest.java27 import javax.xml.soap.SOAPEnvelope;
82 SOAPEnvelope envelope = msg.getSOAPPart().getEnvelope();
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DHeaderImpl.java43 import javax.xml.soap.SOAPEnvelope;
198 if (!(element instanceof SOAPEnvelope)) {
200 throw new SOAPException("Parent of SOAPHeader has to be a SOAPEnvelope");
H A DBodyImpl.java49 import javax.xml.soap.SOAPEnvelope;
219 if (!(element instanceof SOAPEnvelope)) {
221 throw new SOAPException("Parent of SOAPBody has to be a SOAPEnvelope");
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/message/saaj/
H A DSAAJMessage.java230 SOAPEnvelope se = sm.getSOAPPart().getEnvelope();
247 SOAPEnvelope se = msg.getSOAPPart().getEnvelope();
347 SOAPEnvelope env = sm.getSOAPPart().getEnvelope();

Completed in 169 milliseconds