Java SOAP Message toSOAPPart(String xml)

Here you can find the source of toSOAPPart(String xml)

Description

Convert an xml String to a Document

License

Apache License

Declaration

public static org.w3c.dom.Document toSOAPPart(String xml) throws Exception 

Method Source Code

//package com.java2s;
/**/*from  w w  w.j  a  va2  s. c o  m*/
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

import javax.xml.soap.MessageFactory;
import javax.xml.soap.SOAPMessage;
import java.io.ByteArrayInputStream;

public class Main {
    /**
     * Convert an xml String to a Document
     */
    public static org.w3c.dom.Document toSOAPPart(String xml) throws Exception {
        ByteArrayInputStream in = new ByteArrayInputStream(xml.getBytes());
        MessageFactory factory = MessageFactory.newInstance();
        SOAPMessage soapMessage = factory.createMessage(null, in);
        return soapMessage.getSOAPPart();
    }
}

Related

  1. saveMimeHeaders(SOAPMessage msg, String fileName)
  2. toByteArray(SOAPMessage soapMessage)
  3. toPrettyString(SOAPMessage response)
  4. toSOAPMessage(String msgString)
  5. toSOAPPart(String xml)
  6. toString(SOAPMessage soapMessage)
  7. writeAndRead(SOAPMessage soapMessage)