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

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DEnvelope.java31 import javax.xml.soap.SOAPEnvelope;
40 public interface Envelope extends SOAPEnvelope {
H A DSOAPPartImpl.java112 public SOAPEnvelope getEnvelope() throws SOAPException {
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSOAPEnvelope.java33 * <code>SOAPEnvelope</code> object. The <code>SOAPEnvelope</code> object
42 * objects by calling the methods <code>SOAPEnvelope.getHeader</code> and
43 * <code>SOAPEnvelope.getBody</code>. The
47 * which is then used to get the <code>SOAPEnvelope</code> object <i>se</i>.
51 * SOAPEnvelope se = sp.getEnvelope();
56 * It is possible to change the body or header of a <code>SOAPEnvelope</code>
67 * the method <code>SOAPEnvelope.addHeader</code>, which creates a new header and
68 * adds it to the <code>SOAPEnvelope</code> object. Similarly, the method
70 * it to the <code>SOAPEnvelope</cod
97 public interface SOAPEnvelope extends SOAPElement { interface in inherits:SOAPElement
[all...]
H A DSOAPPart.java61 * A <code>SOAPPart</code> object contains a <code>SOAPEnvelope</code> object,
65 * to retrieve the <code>SOAPEnvelope</code> object.
71 * Gets the <code>SOAPEnvelope</code> object associated with this
75 * @return the <code>SOAPEnvelope</code> object for this
79 public abstract SOAPEnvelope getEnvelope() throws SOAPException;
149 * <code>SOAPEnvelope</code> object.
242 * Sets the content of the <code>SOAPEnvelope</code> object with the data
255 * Returns the content of the SOAPEnvelope as a JAXP <code>Source</code>
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/saaj/
H A DSAAJMessage.java56 import javax.xml.soap.SOAPEnvelope;
238 SOAPEnvelope se = sm.getSOAPPart().getEnvelope();
254 SOAPEnvelope se = msg.getSOAPPart().getEnvelope();
340 SOAPEnvelope env = sm.getSOAPPart().getEnvelope();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DBodyImpl.java179 if (!(element instanceof SOAPEnvelope)) {
181 throw new SOAPException("Parent of SOAPBody has to be a SOAPEnvelope");
H A DHeaderImpl.java180 if (!(element instanceof SOAPEnvelope)) {
182 throw new SOAPException("Parent of SOAPHeader has to be a SOAPEnvelope");

Completed in 40 milliseconds