Package org.apache.servicemix.jbi.jaxp

Examples of org.apache.servicemix.jbi.jaxp.ExtendedXMLStreamReader


    }
   
  private SoapMessage readSoapUsingStax(InputStream is) throws Exception {
    SoapMessage message = new SoapMessage();
    XMLStreamReader reader = marshaler.getInputFactory().createXMLStreamReader(is);
    reader = new ExtendedXMLStreamReader(reader);
    reader.nextTag();
    // Check Envelope tag
    if (!reader.getLocalName().equals(SoapMarshaler.ENVELOPE)) {
      throw new SoapFault(SoapFault.SENDER, "Unrecognized element: "
          + reader.getName() + " at ["
View Full Code Here


    }
   
  private SoapMessage readSoapUsingStax(InputStream is) throws Exception {
    SoapMessage message = new SoapMessage();
    XMLStreamReader reader = marshaler.getInputFactory().createXMLStreamReader(is);
    reader = new ExtendedXMLStreamReader(reader);
    reader.nextTag();
    // Check Envelope tag
    if (!reader.getLocalName().equals(SoapMarshaler.ENVELOPE)) {
      throw new SoapFault(SoapFault.SENDER, "Unrecognized element: "
          + reader.getName() + " at ["
View Full Code Here

TOP

Related Classes of org.apache.servicemix.jbi.jaxp.ExtendedXMLStreamReader

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.