SAXParser p = XMLUtils.getSAXParser();
XMLReader reader = p.getXMLReader();
reader.setContentHandler(d);
reader.setDTDHandler(d);
reader.setEntityResolver(d);
reader.setErrorHandler(d);
reader.parse(source);
MyObject obj = (MyObject)d.getValue();
Title: Message
Hi,
How do I envoke the
serialization process for objects created by the WSDL2Java process. I
would like to write the SOAP request and response objects out as XML to log4j
during the processing of the request. These are complex objects
generated directly from a wsdl. It i