I'm not familiar with your HttpClient class, but I have used
java.net.HttpURLConnection
as (very simple...) http client in the past, which can be instructed
to follow redirects.
You can create one of those using
java.net.URL("http://whatever.com/";).openConnection().
You'll probably have to format/encode the parameters in the message
body yourself, HttpURLConnection
won't do that for you. But that shouldn't be too hard...

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to