Package org.springframework.ws.soap.axiom

Examples of org.springframework.ws.soap.axiom.AxiomSoapMessage


            is = resource.getInputStream();

            XMLStreamReader parser = XMLInputFactory.newInstance().createXMLStreamReader(is);
            StAXSOAPModelBuilder builder = new StAXSOAPModelBuilder(parser, SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI);
            org.apache.axiom.soap.SOAPMessage soapMessage = builder.getSoapMessage();
            return new AxiomSoapMessage(soapMessage, "", true, true);
        }
        finally {
            is.close();
        }
    }
View Full Code Here

TOP

Related Classes of org.springframework.ws.soap.axiom.AxiomSoapMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.