You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@commons.apache.org by "Verma, Nitin (GECP, OTHER, 529706)" <NI...@APPL.GE.COM> on 2003/06/03 13:10:33 UTC

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?