com.sun.xml.internal.ws.api.message.saaj.SAAJFactory Java Examples

The following examples show how to use com.sun.xml.internal.ws.api.message.saaj.SAAJFactory. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AbstractMessageImpl.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public Message toSAAJ(Packet p, Boolean inbound) throws SOAPException {
    SAAJMessage message = SAAJFactory.read(p);
    if (message instanceof MessageWritable)
        ((MessageWritable) message)
                .setMTOMConfiguration(p.getMtomFeature());
    if (inbound != null) transportHeaders(p, inbound, message.readAsSOAPMessage());
    return message;
}
 
Example #2
Source File: SOAPMessageDispatch.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
Packet createPacket(SOAPMessage arg) {
    Iterator iter = arg.getMimeHeaders().getAllHeaders();
    Headers ch = new Headers();
    while(iter.hasNext()) {
        MimeHeader mh = (MimeHeader) iter.next();
        ch.add(mh.getName(), mh.getValue());
    }
    Packet packet = new Packet(SAAJFactory.create(arg));
    packet.invocationProperties.put(MessageContext.HTTP_REQUEST_HEADERS, ch);
    return packet;
}
 
Example #3
Source File: SaajEmptyNamespaceTest.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Test
public void testPreserveNamespacesPosition() throws Exception {
    // Create SOAP message from XML string and process it with SAAJ reader
    XMLStreamReader envelope = XMLInputFactory.newFactory().createXMLStreamReader(
            new StringReader(INPUT_SOAP_MESSAGE_2));
    StreamMessage streamMessage = new StreamMessage(SOAPVersion.SOAP_11,
            envelope, null);
    SAAJFactory saajFact = new SAAJFactory();
    SOAPMessage soapMessage = saajFact.readAsSOAPMessage(SOAPVersion.SOAP_11, streamMessage);

    //Get SOAP body and convert it to string representation
    SOAPBody body = soapMessage.getSOAPBody();
    String bodyAsString = nodeToText(body);
    Assert.assertEquals(bodyAsString, PRESERVE_NAMESPACES_EXPECTED_RESULT);
}
 
Example #4
Source File: SaajEmptyNamespaceTest.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
@Test
public void testResetDefaultNamespaceSAAJ() throws Exception {
    // Create SOAP message from XML string and process it with SAAJ reader
    XMLStreamReader envelope = XMLInputFactory.newFactory().createXMLStreamReader(
            new StringReader(INPUT_SOAP_MESSAGE));
    StreamMessage streamMessage = new StreamMessage(SOAPVersion.SOAP_11,
            envelope, null);
    SAAJFactory saajFact = new SAAJFactory();
    SOAPMessage soapMessage = saajFact.readAsSOAPMessage(SOAPVersion.SOAP_11, streamMessage);

    // Check if constructed object model meets local names and namespace expectations
    SOAPElement request = (SOAPElement) soapMessage.getSOAPBody().getFirstChild();
    // Check top body element name
    Assert.assertEquals(request.getLocalName(), "SampleServiceRequest");
    // Check top body element namespace
    Assert.assertEquals(request.getNamespaceURI(), TEST_NS);
    SOAPElement params = (SOAPElement) request.getFirstChild();
    // Check first child name
    Assert.assertEquals(params.getLocalName(), "RequestParams");
    // Check if first child namespace is null
    Assert.assertNull(params.getNamespaceURI());

    // Check inner elements of the first child
    SOAPElement param1 = (SOAPElement) params.getFirstChild();
    Assert.assertEquals(param1.getLocalName(), "Param1");
    Assert.assertNull(param1.getNamespaceURI());
    SOAPElement param2 = (SOAPElement) params.getChildNodes().item(1);
    Assert.assertEquals(param2.getLocalName(), "Param2");
    Assert.assertNull(param2.getNamespaceURI());
    // Check full content of SOAP body
    Assert.assertEquals(nodeToText(request), EXPECTED_RESULT);
}
 
Example #5
Source File: AbstractMessageImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
public Message toSAAJ(Packet p, Boolean inbound) throws SOAPException {
    SAAJMessage message = SAAJFactory.read(p);
    if (message instanceof MessageWritable)
        ((MessageWritable) message)
                .setMTOMConfiguration(p.getMtomFeature());
    if (inbound != null) transportHeaders(p, inbound, message.readAsSOAPMessage());
    return message;
}
 
Example #6
Source File: SaajEmptyNamespaceTest.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
@Test
public void testPreserveNamespacesPosition() throws Exception {
    // Create SOAP message from XML string and process it with SAAJ reader
    XMLStreamReader envelope = XMLInputFactory.newFactory().createXMLStreamReader(
            new StringReader(INPUT_SOAP_MESSAGE_2));
    StreamMessage streamMessage = new StreamMessage(SOAPVersion.SOAP_11,
            envelope, null);
    SAAJFactory saajFact = new SAAJFactory();
    SOAPMessage soapMessage = saajFact.readAsSOAPMessage(SOAPVersion.SOAP_11, streamMessage);

    //Get SOAP body and convert it to string representation
    SOAPBody body = soapMessage.getSOAPBody();
    String bodyAsString = nodeToText(body);
    Assert.assertEquals(bodyAsString, PRESERVE_NAMESPACES_EXPECTED_RESULT);
}
 
Example #7
Source File: SOAPMessageDispatch.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
Packet createPacket(SOAPMessage arg) {
    Iterator iter = arg.getMimeHeaders().getAllHeaders();
    Headers ch = new Headers();
    while(iter.hasNext()) {
        MimeHeader mh = (MimeHeader) iter.next();
        ch.add(mh.getName(), mh.getValue());
    }
    Packet packet = new Packet(SAAJFactory.create(arg));
    packet.invocationProperties.put(MessageContext.HTTP_REQUEST_HEADERS, ch);
    return packet;
}
 
Example #8
Source File: SaajEmptyNamespaceTest.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
@Test
public void testResetDefaultNamespaceSAAJ() throws Exception {
    // Create SOAP message from XML string and process it with SAAJ reader
    XMLStreamReader envelope = XMLInputFactory.newFactory().createXMLStreamReader(
            new StringReader(INPUT_SOAP_MESSAGE));
    StreamMessage streamMessage = new StreamMessage(SOAPVersion.SOAP_11,
            envelope, null);
    SAAJFactory saajFact = new SAAJFactory();
    SOAPMessage soapMessage = saajFact.readAsSOAPMessage(SOAPVersion.SOAP_11, streamMessage);

    // Check if constructed object model meets local names and namespace expectations
    SOAPElement request = (SOAPElement) soapMessage.getSOAPBody().getFirstChild();
    // Check top body element name
    Assert.assertEquals(request.getLocalName(), "SampleServiceRequest");
    // Check top body element namespace
    Assert.assertEquals(request.getNamespaceURI(), TEST_NS);
    SOAPElement params = (SOAPElement) request.getFirstChild();
    // Check first child name
    Assert.assertEquals(params.getLocalName(), "RequestParams");
    // Check if first child namespace is null
    Assert.assertNull(params.getNamespaceURI());

    // Check inner elements of the first child
    SOAPElement param1 = (SOAPElement) params.getFirstChild();
    Assert.assertEquals(param1.getLocalName(), "Param1");
    Assert.assertNull(param1.getNamespaceURI());
    SOAPElement param2 = (SOAPElement) params.getChildNodes().item(1);
    Assert.assertEquals(param2.getLocalName(), "Param2");
    Assert.assertNull(param2.getNamespaceURI());
    // Check full content of SOAP body
    Assert.assertEquals(nodeToText(request), EXPECTED_RESULT);
}
 
Example #9
Source File: AbstractMessageImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
public Message toSAAJ(Packet p, Boolean inbound) throws SOAPException {
    SAAJMessage message = SAAJFactory.read(p);
    if (message instanceof MessageWritable)
        ((MessageWritable) message)
                .setMTOMConfiguration(p.getMtomFeature());
    if (inbound != null) transportHeaders(p, inbound, message.readAsSOAPMessage());
    return message;
}
 
Example #10
Source File: SOAPMessageContextImpl.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
protected void updateMessage() {
    //Check if SOAPMessage has changed, if so construct new one,
    // Packet are handled through MessageContext
    if(soapMsg != null) {
        packet.setMessage(SAAJFactory.create(soapMsg));
        soapMsg = null;
    }
}
 
Example #11
Source File: SOAPMessageDispatch.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
Packet createPacket(SOAPMessage arg) {
    Iterator iter = arg.getMimeHeaders().getAllHeaders();
    Headers ch = new Headers();
    while(iter.hasNext()) {
        MimeHeader mh = (MimeHeader) iter.next();
        ch.add(mh.getName(), mh.getValue());
    }
    Packet packet = new Packet(SAAJFactory.create(arg));
    packet.invocationProperties.put(MessageContext.HTTP_REQUEST_HEADERS, ch);
    return packet;
}
 
Example #12
Source File: SaajEmptyNamespaceTest.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
@Test
public void testResetDefaultNamespaceSAAJ() throws Exception {
    // Create SOAP message from XML string and process it with SAAJ reader
    XMLStreamReader envelope = XMLInputFactory.newFactory().createXMLStreamReader(
            new StringReader(INPUT_SOAP_MESSAGE));
    StreamMessage streamMessage = new StreamMessage(SOAPVersion.SOAP_11,
            envelope, null);
    SAAJFactory saajFact = new SAAJFactory();
    SOAPMessage soapMessage = saajFact.readAsSOAPMessage(SOAPVersion.SOAP_11, streamMessage);

    // Check if constructed object model meets local names and namespace expectations
    SOAPElement request = (SOAPElement) soapMessage.getSOAPBody().getFirstChild();
    // Check top body element name
    Assert.assertEquals(request.getLocalName(), "SampleServiceRequest");
    // Check top body element namespace
    Assert.assertEquals(request.getNamespaceURI(), TEST_NS);
    SOAPElement params = (SOAPElement) request.getFirstChild();
    // Check first child name
    Assert.assertEquals(params.getLocalName(), "RequestParams");
    // Check if first child namespace is null
    Assert.assertNull(params.getNamespaceURI());

    // Check inner elements of the first child
    SOAPElement param1 = (SOAPElement) params.getFirstChild();
    Assert.assertEquals(param1.getLocalName(), "Param1");
    Assert.assertNull(param1.getNamespaceURI());
    SOAPElement param2 = (SOAPElement) params.getChildNodes().item(1);
    Assert.assertEquals(param2.getLocalName(), "Param2");
    Assert.assertNull(param2.getNamespaceURI());
    // Check full content of SOAP body
    Assert.assertEquals(nodeToText(request), EXPECTED_RESULT);
}
 
Example #13
Source File: SOAPMessageContextImpl.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
protected void updateMessage() {
    //Check if SOAPMessage has changed, if so construct new one,
    // Packet are handled through MessageContext
    if(soapMsg != null) {
        packet.setMessage(SAAJFactory.create(soapMsg));
        soapMsg = null;
    }
}
 
Example #14
Source File: SOAPMessageContextImpl.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
protected void updateMessage() {
    //Check if SOAPMessage has changed, if so construct new one,
    // Packet are handled through MessageContext
    if(soapMsg != null) {
        packet.setMessage(SAAJFactory.create(soapMsg));
        soapMsg = null;
    }
}
 
Example #15
Source File: SOAPMessageDispatch.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
Packet createPacket(SOAPMessage arg) {
    Iterator iter = arg.getMimeHeaders().getAllHeaders();
    Headers ch = new Headers();
    while(iter.hasNext()) {
        MimeHeader mh = (MimeHeader) iter.next();
        ch.add(mh.getName(), mh.getValue());
    }
    Packet packet = new Packet(SAAJFactory.create(arg));
    packet.invocationProperties.put(MessageContext.HTTP_REQUEST_HEADERS, ch);
    return packet;
}
 
Example #16
Source File: AbstractMessageImpl.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
public Message toSAAJ(Packet p, Boolean inbound) throws SOAPException {
    SAAJMessage message = SAAJFactory.read(p);
    if (message instanceof MessageWritable)
        ((MessageWritable) message)
                .setMTOMConfiguration(p.getMtomFeature());
    if (inbound != null) transportHeaders(p, inbound, message.readAsSOAPMessage());
    return message;
}
 
Example #17
Source File: SOAPMessageContextImpl.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
protected void updateMessage() {
    //Check if SOAPMessage has changed, if so construct new one,
    // Packet are handled through MessageContext
    if(soapMsg != null) {
        packet.setMessage(SAAJFactory.create(soapMsg));
        soapMsg = null;
    }
}
 
Example #18
Source File: SOAPMessageDispatch.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
Packet createPacket(SOAPMessage arg) {
    Iterator iter = arg.getMimeHeaders().getAllHeaders();
    Headers ch = new Headers();
    while(iter.hasNext()) {
        MimeHeader mh = (MimeHeader) iter.next();
        ch.add(mh.getName(), mh.getValue());
    }
    Packet packet = new Packet(SAAJFactory.create(arg));
    packet.invocationProperties.put(MessageContext.HTTP_REQUEST_HEADERS, ch);
    return packet;
}
 
Example #19
Source File: AbstractMessageImpl.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public Message toSAAJ(Packet p, Boolean inbound) throws SOAPException {
    SAAJMessage message = SAAJFactory.read(p);
    if (message instanceof MessageWritable)
        ((MessageWritable) message)
                .setMTOMConfiguration(p.getMtomFeature());
    if (inbound != null) transportHeaders(p, inbound, message.readAsSOAPMessage());
    return message;
}
 
Example #20
Source File: SOAPMessageContextImpl.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
protected void updateMessage() {
    //Check if SOAPMessage has changed, if so construct new one,
    // Packet are handled through MessageContext
    if(soapMsg != null) {
        packet.setMessage(SAAJFactory.create(soapMsg));
        soapMsg = null;
    }
}
 
Example #21
Source File: SOAPMessageDispatch.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
Packet createPacket(SOAPMessage arg) {
    Iterator iter = arg.getMimeHeaders().getAllHeaders();
    Headers ch = new Headers();
    while(iter.hasNext()) {
        MimeHeader mh = (MimeHeader) iter.next();
        ch.add(mh.getName(), mh.getValue());
    }
    Packet packet = new Packet(SAAJFactory.create(arg));
    packet.invocationProperties.put(MessageContext.HTTP_REQUEST_HEADERS, ch);
    return packet;
}
 
Example #22
Source File: SaajEmptyNamespaceTest.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
@Test
public void testPreserveNamespacesPosition() throws Exception {
    // Create SOAP message from XML string and process it with SAAJ reader
    XMLStreamReader envelope = XMLInputFactory.newFactory().createXMLStreamReader(
            new StringReader(INPUT_SOAP_MESSAGE_2));
    StreamMessage streamMessage = new StreamMessage(SOAPVersion.SOAP_11,
            envelope, null);
    SAAJFactory saajFact = new SAAJFactory();
    SOAPMessage soapMessage = saajFact.readAsSOAPMessage(SOAPVersion.SOAP_11, streamMessage);

    //Get SOAP body and convert it to string representation
    SOAPBody body = soapMessage.getSOAPBody();
    String bodyAsString = nodeToText(body);
    Assert.assertEquals(bodyAsString, PRESERVE_NAMESPACES_EXPECTED_RESULT);
}
 
Example #23
Source File: SaajEmptyNamespaceTest.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
@Test
public void testResetDefaultNamespaceSAAJ() throws Exception {
    // Create SOAP message from XML string and process it with SAAJ reader
    XMLStreamReader envelope = XMLInputFactory.newFactory().createXMLStreamReader(
            new StringReader(INPUT_SOAP_MESSAGE));
    StreamMessage streamMessage = new StreamMessage(SOAPVersion.SOAP_11,
            envelope, null);
    SAAJFactory saajFact = new SAAJFactory();
    SOAPMessage soapMessage = saajFact.readAsSOAPMessage(SOAPVersion.SOAP_11, streamMessage);

    // Check if constructed object model meets local names and namespace expectations
    SOAPElement request = (SOAPElement) soapMessage.getSOAPBody().getFirstChild();
    // Check top body element name
    Assert.assertEquals(request.getLocalName(), "SampleServiceRequest");
    // Check top body element namespace
    Assert.assertEquals(request.getNamespaceURI(), TEST_NS);
    SOAPElement params = (SOAPElement) request.getFirstChild();
    // Check first child name
    Assert.assertEquals(params.getLocalName(), "RequestParams");
    // Check if first child namespace is null
    Assert.assertNull(params.getNamespaceURI());

    // Check inner elements of the first child
    SOAPElement param1 = (SOAPElement) params.getFirstChild();
    Assert.assertEquals(param1.getLocalName(), "Param1");
    Assert.assertNull(param1.getNamespaceURI());
    SOAPElement param2 = (SOAPElement) params.getChildNodes().item(1);
    Assert.assertEquals(param2.getLocalName(), "Param2");
    Assert.assertNull(param2.getNamespaceURI());
    // Check full content of SOAP body
    Assert.assertEquals(nodeToText(request), EXPECTED_RESULT);
}
 
Example #24
Source File: SOAPMessageDispatch.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
Packet createPacket(SOAPMessage arg) {
    Iterator iter = arg.getMimeHeaders().getAllHeaders();
    Headers ch = new Headers();
    while(iter.hasNext()) {
        MimeHeader mh = (MimeHeader) iter.next();
        ch.add(mh.getName(), mh.getValue());
    }
    Packet packet = new Packet(SAAJFactory.create(arg));
    packet.invocationProperties.put(MessageContext.HTTP_REQUEST_HEADERS, ch);
    return packet;
}
 
Example #25
Source File: AbstractMessageImpl.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
public Message toSAAJ(Packet p, Boolean inbound) throws SOAPException {
    SAAJMessage message = SAAJFactory.read(p);
    if (message instanceof MessageWritable)
        ((MessageWritable) message)
                .setMTOMConfiguration(p.getMtomFeature());
    if (inbound != null) transportHeaders(p, inbound, message.readAsSOAPMessage());
    return message;
}
 
Example #26
Source File: SOAPMessageContextImpl.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
protected void updateMessage() {
    //Check if SOAPMessage has changed, if so construct new one,
    // Packet are handled through MessageContext
    if(soapMsg != null) {
        packet.setMessage(SAAJFactory.create(soapMsg));
        soapMsg = null;
    }
}
 
Example #27
Source File: SOAPMessageDispatch.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
Packet createPacket(SOAPMessage arg) {
    Iterator iter = arg.getMimeHeaders().getAllHeaders();
    Headers ch = new Headers();
    while(iter.hasNext()) {
        MimeHeader mh = (MimeHeader) iter.next();
        ch.add(mh.getName(), mh.getValue());
    }
    Packet packet = new Packet(SAAJFactory.create(arg));
    packet.invocationProperties.put(MessageContext.HTTP_REQUEST_HEADERS, ch);
    return packet;
}
 
Example #28
Source File: SOAPMessageContextImpl.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
protected void updateMessage() {
    //Check if SOAPMessage has changed, if so construct new one,
    // Packet are handled through MessageContext
    if(soapMsg != null) {
        packet.setMessage(SAAJFactory.create(soapMsg));
        soapMsg = null;
    }
}
 
Example #29
Source File: SOAPMessageContextImpl.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
protected void updateMessage() {
    //Check if SOAPMessage has changed, if so construct new one,
    // Packet are handled through MessageContext
    if(soapMsg != null) {
        packet.setMessage(SAAJFactory.create(soapMsg));
        soapMsg = null;
    }
}
 
Example #30
Source File: SaajEmptyNamespaceTest.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
@Test
public void testPreserveNamespacesPosition() throws Exception {
    // Create SOAP message from XML string and process it with SAAJ reader
    XMLStreamReader envelope = XMLInputFactory.newFactory().createXMLStreamReader(
            new StringReader(INPUT_SOAP_MESSAGE_2));
    StreamMessage streamMessage = new StreamMessage(SOAPVersion.SOAP_11,
            envelope, null);
    SAAJFactory saajFact = new SAAJFactory();
    SOAPMessage soapMessage = saajFact.readAsSOAPMessage(SOAPVersion.SOAP_11, streamMessage);

    //Get SOAP body and convert it to string representation
    SOAPBody body = soapMessage.getSOAPBody();
    String bodyAsString = nodeToText(body);
    Assert.assertEquals(bodyAsString, PRESERVE_NAMESPACES_EXPECTED_RESULT);
}