Hi Olivier, > Are the parameters passed in the order they were registered in the > HttpMethodParams object, or is it random ? Will I need to build and > url-encode the URL string myself, or is there an easier way ? > HttpMethodParams has nothing to do with GET parameters in a URL. It is used for configuring the method, not for passing parameters to a server.
Yes, you will have to build the URL yourself. Have a look at org.apache.commons.httpclient.URI and the classes in o.a.c.h.util to see whether they are of help. cheers, Roland --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
