At 11:22 AM 8/7/2001 -0500, Rich Catlett wrote:
...
>I've used the TcpTunnelGui and it show that the XML document is indeed getting sent
>to the service, but then from the service all I get back is this
>
>[Attributes={}] [BodyEntries=
>[(0)=[purchaseOrder: null]]
>]
>
>Can someone tell me what I'm doing wrong or point me in the direction to figure it
>out.
Have you tried getting the service to dump it to a local file, or just to System.out
(on Tomcat that would generally put it on the console window...) just some variation
on
> new org.apache.xml.serialize
> .XMLSerializer(System.out,
> new org.apache.xml.serialize.OutputFormat("xml","utf-8",true))
> .asDOMSerializer().serialize(doc);
(assuming that you're using apache, of course)? In other words, the document is
being lost, so you've just got to track it as far as it goes... :-)
Tom Myers