Re: Building Web Service Adapter for Struts app.

2003-01-13 Thread John Loring
Greg, If you are using xerces to serialize the DOM, you can use the OutputFormat class to add the DOCTYPE declaration, ie: OutputFormat format = new OutputFormat(document); // Document document format.setDoctype(publicId, systemId); // String publicId,system

Building Web Service Adapter for Struts app.

2003-01-13 Thread Greg Hess
Hi All, I am building an adapter on my Struts app to allow Web Service calls from remote parties. A remote call constructs a XML and sends the request via http to my Struts app. My app processes the request by parsing the XML data posted and returns the XML result. This is all working but my spec