Dear all,

 

Could anyone tell me how can I see what XML-RPC send to the Webserver?

 

I have execute this kind of remote call and send it to a webserver ..

 

XmlRpcClient xmlrpc = new XmlRpcClient("http://localhost:81");

Date date = new Date();

Vector v = new Vector(3);

v.add("0810");

v.add("8201");

v.add(date);

Vector result = (Vector) xmlrpc.execute("SOMEnetwork.echo", v);

 

But in the web server all I can see is

 

“POST / HTTP/1.1

Content-Length: 343

Content-Type: text/xml

Cache-Control: no-cache

Pragma: no-cache

User-Agent: Java/1.4.2_01

Host: localhost:81

Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2

Connection: keep-alive

 

 

I cannot see the XML. How can I see the xml?

 

 

Reply via email to