You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@commons.apache.org by "Norrod, Dennis G Mr Veridian-MRJ" <De...@DET.AMEDD.ARMY.MIL> on 2003/06/03 13:51:11 UTC

RE: [HttpClient] What method should be used to add params to a po st met hods

Hi Nitin,

Docs say setRequestBody(NameValuePair[]). I use MultipartPostMethod exclusively (so far), which has not (yet?) deprecated the addParameter methods. HTH.

Later.
Dennis  

-----Original Message-----
From: Verma, Nitin (GECP, OTHER, 529706)
To: Jakarta Commons Users List
Sent: 6/3/03 7:10 AM
Subject: RE: [HttpClient] What method should be used to add params to a po st  met hods

Anyone any clue?

-----Original Message-----
From: Verma, Nitin (GECP, OTHER, 529706) 
Sent: Tuesday, June 03, 2003 1:44 PM
To: Jakarta Commons Users List
Subject: [HttpClient] What method should be used to add params to a post
met hods



 
        PostMethod method = new PostMethod(url);

method.setParameter( "","" ); 
method.addParameter(new NameValuePair("", ""));
method.addParameter("", ""); 
 
 
are deprecated as for my dependency
 
    <dependency>
        <id>commons-httpclient</id>
        <version>2.0-alpha3</version>
        <url>http://jakarta.apache.org/commons/httpclient/</url>
    </dependency>
 
What method should be used?

 <<ATT25071.txt>>