Hi Bob, I had a same problem with a post method request. In my case, I forgot to instance a new PostMethod object and started the second request with the old PostMethod object.
My logger showed something like ---------------------------------------------- ... // first request content httpclient.wire.content: >> a=1&b=2" ... // second request content httpclient.wire.content: >> a=1&b=2&a=1&b=2" ---------------------------------------------- Maybe that it. Good luck, Bastian ---- > I'm using Fiddler (www.fiddlertool.com) for debugging http communication. > It's a proxy, with many options for debugging. > > > -----Ursprüngliche Nachricht----- > Von: Bob Arnott [mailto:[EMAIL PROTECTED] > Gesendet: Donnerstag, 23. November 2006 11:41 > An: HttpClient User Discussion > Betreff: HTTP Proxy > > Hello, I have an issue where one of the POST parameters I set is being > duplicated. I don't know if it's within my HTTP server or be sent over > the > wire by HTTP Client. > > Can anyone recommend a HTTP monitor / logging proxy type thing that I > could > put between HTTP Client and my HTTP server and see what's being sent each > way...? > > Cheers, > > -- > Bob Arnott > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] -- Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen! Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
