|
public static String
xml2String(Document doc)
{ try { OutputFormat format = new OutputFormat(doc); StringWriter stringOut = new StringWriter(); XMLSerializer serial = new XMLSerializer(stringOut, format); serial.asDOMSerializer(); serial.serialize(doc.getDocumentElement()); return stringOut.toString(); } catch (IOException e) { return e.getMessage(); } }
|
- printing soap message Krishnakanth Rao
- RE: printing soap message Madan, Kapil
- RE: printing soap message George Voronoff
- RE: printing soap message Rebecca Dias
- Wilkins, Craig
