Hi!
I use the following piece of code:
HttpClient client = new HttpClient();
PostMethod pm = new PostMethod("http://www.eksperten.dk");
NameValuePair userid = new NameValuePair("login_username",
"jespersahner");
NameValuePair password = new NameValuePair("login_password", "xxxx");
pm.setRequestBody(new NameValuePair[] {userid, password});
client.executeMethod(pm);
My question now is if I can debug/trace the data sent back to the server
using executeMethod()?
Regards,
Jesper
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]