Searched refs:SOAPMessage (Results 1 - 25 of 45) sorted by relevance

12

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSOAPConnection.java55 * @param request the <code>SOAPMessage</code> object to be sent
63 * @return the <code>SOAPMessage</code> object that is the response to the
67 public abstract SOAPMessage call(SOAPMessage request,
78 * @return the <code>SOAPMessage</code> object that is the response to the
83 public SOAPMessage get(Object to)
H A DMessageFactory.java33 * A factory for creating <code>SOAPMessage</code> objects.
44 * created, will produce <code>SOAPMessage</code> objects that
55 * The content of a new <code>SOAPMessage</code> object depends on which of the two
149 * Creates a new <code>SOAPMessage</code> object with the default
152 * can choose to prepopulate the <code>SOAPMessage</code> object with
157 * is sufficient. Otherwise, the <code>SOAPMessage</code> object needs
162 * @return a new <code>SOAPMessage</code> object
167 public abstract SOAPMessage createMessage()
172 * new <code>SOAPMessage</code> object and returns the <code>SOAPMessage</cod
[all...]
H A DSAAJResult.java50 * <code>SOAPPart</code> of a <code>SOAPMessage</code> that is created internally.
54 * @throws SOAPException if there is a problem creating a <code>SOAPMessage</code>
72 * <code>SOAPPart</code> of a <code>SOAPMessage</code> that is created
79 * @throws SOAPException if a <code>SOAPMessage</code> supporting the
90 * <code>SOAPPart</code> of the supplied <code>SOAPMessage</code>.
94 * When used in a transformation the validity of the <code>SOAPMessage</code>
104 public SAAJResult(SOAPMessage message) {
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/handler/soap/
H A DSOAPMessageContext.java28 import javax.xml.soap.SOAPMessage;
35 * response. The <code>javax.xml.soap.SOAPMessage</code> specifies
39 * @see javax.xml.soap.SOAPMessage
46 /** Gets the <code>SOAPMessage</code> from this message context. Modifications
47 * to the returned <code>SOAPMessage</code> change the message in-place, there
50 * @return Returns the <code>SOAPMessage</code>; returns <code>null</code> if no
51 * <code>SOAPMessage</code> is present in this message context
53 public SOAPMessage getMessage();
55 /** Sets the SOAPMessage in this message context
59 * of the <code>SOAPMessage</cod
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DAttachment.java31 import javax.xml.soap.SOAPMessage;
84 * Writes this attachment to the given {@link SOAPMessage}.
86 void writeTo(SOAPMessage saaj) throws SOAPException;
H A DFilterMessageImpl.java43 import javax.xml.soap.SOAPMessage;
118 public SOAPMessage readAsSOAPMessage() throws SOAPException {
122 public SOAPMessage readAsSOAPMessage(Packet packet, boolean inbound) throws SOAPException {
H A DHeader.java43 import javax.xml.soap.SOAPMessage;
273 * Writes out the header to the given SOAPMessage.
277 * as {@link SOAPMessage}, in which case each header needs
284 public void writeTo(SOAPMessage saaj) throws SOAPException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/dynamic/
H A DSOAPMessageFactoryDynamicImpl.java41 public SOAPMessage createMessage() throws SOAPException {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_1/
H A DSOAPMessageFactory1_1Impl.java43 public SOAPMessage createMessage() throws SOAPException {
47 public SOAPMessage createMessage(boolean isFastInfoset,
53 public SOAPMessage createMessage(MimeHeaders headers, InputStream in)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_2/
H A DSOAPMessageFactory1_2Impl.java43 public SOAPMessage createMessage() throws SOAPException {
47 public SOAPMessage createMessage(boolean isFastInfoset,
53 public SOAPMessage createMessage(MimeHeaders headers, InputStream in)
H A DMessage1_2Impl.java47 public Message1_2Impl(SOAPMessage msg) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/dispatch/
H A DSOAPMessageDispatch.java42 import javax.xml.soap.SOAPMessage;
52 * the <code>SOAPMessage</code> class. The <code>javax.xml.ws.Service</code>
59 public class SOAPMessageDispatch extends com.sun.xml.internal.ws.client.dispatch.DispatchImpl<SOAPMessage> {
69 Packet createPacket(SOAPMessage arg) {
81 SOAPMessage toReturnValue(Packet response) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DSOAPMessageContextImpl.java37 import javax.xml.soap.SOAPMessage;
57 private SOAPMessage soapMsg = null;
66 public SOAPMessage getMessage() {
77 public void setMessage(SOAPMessage soapMsg) {
93 //Check if SOAPMessage has changed, if so construct new one,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DRelatesToHeader.java32 import javax.xml.soap.SOAPMessage;
73 public void writeTo(SOAPMessage saaj) throws SOAPException {
H A DDataHandlerAttachment.java35 import javax.xml.soap.SOAPMessage;
102 public void writeTo(SOAPMessage saaj) throws SOAPException {
H A DAbstractMessageImpl.java46 import javax.xml.soap.SOAPMessage;
179 public SOAPMessage readAsSOAPMessage() throws SOAPException {
180 SOAPMessage msg = soapVersion.saajMessageFactory.createMessage();
199 public SOAPMessage readAsSOAPMessage(Packet packet, boolean inbound) throws SOAPException {
200 SOAPMessage msg = readAsSOAPMessage();
H A DByteArrayAttachment.java38 import javax.xml.soap.SOAPMessage;
103 public void writeTo(SOAPMessage saaj) throws SOAPException {
H A DDOMHeader.java42 import javax.xml.soap.SOAPMessage;
109 public void writeTo(SOAPMessage saaj) throws SOAPException {
H A DJAXBAttachment.java40 import javax.xml.soap.SOAPMessage;
109 public void writeTo(SOAPMessage saaj) throws SOAPException {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DMessageFactoryImpl.java65 public SOAPMessage createMessage() throws SOAPException {
69 public SOAPMessage createMessage(boolean isFastInfoset,
75 public SOAPMessage createMessage(MimeHeaders headers, InputStream in)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/
H A DSOAPProviderArgumentBuilder.java41 import javax.xml.soap.SOAPMessage;
67 if(model.datatype==SOAPMessage.class)
112 private static final class SOAPMessageParameter extends SOAPProviderArgumentBuilder<SOAPMessage> {
117 protected SOAPMessage getParameter(Packet packet) {
125 protected Message getResponseMessage(SOAPMessage soapMsg) {
134 protected Packet getResponse(Packet request, @Nullable SOAPMessage returnValue, WSDLPort port, WSBinding binding) {
136 // Populate SOAPMessage's transport headers
H A DProviderEndpointModel.java35 import javax.xml.soap.SOAPMessage;
49 * It also finds about parameterized type(e.g. Source, SOAPMessage, DataSource)
81 ? SOAPMessage.class : DataSource.class;
99 // Illegal to have PAYLOAD && SOAPMessage
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/source/
H A DProtocolSourceMessage.java39 import javax.xml.soap.SOAPMessage;
111 public SOAPMessage readAsSOAPMessage() throws SOAPException {
115 public SOAPMessage readAsSOAPMessage(Packet packet, boolean inbound) throws SOAPException {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/addressing/
H A DEPRHeader.java38 import javax.xml.soap.SOAPMessage;
96 public void writeTo(SOAPMessage saaj) throws SOAPException {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/stream/
H A DStreamAttachment.java36 import javax.xml.soap.SOAPMessage;
102 public void writeTo(SOAPMessage saaj) throws SOAPException {

Completed in 4478 milliseconds

12