RE: [HTTPCLIENT] Suggestion: Uniform parameter handling

2002-04-24 Thread Amir D. Kolsky
the other Methods... -Original Message- From: Waldhoff, Rodney [mailto:[EMAIL PROTECTED]] Sent: Wed, April 24, 2002 6:33 PM To: 'Jakarta Commons Developers List' Subject: RE: [HTTPCLIENT] Suggestion: Uniform parameter handling Sounds OK to me. I don't know of anyo

RE: [HTTPCLIENT] Suggestion: Uniform parameter handling

2002-04-24 Thread Waldhoff, Rodney
Sounds OK to me. I don't know of anyone implementing HttpMethod directly, though it's a valid concern. I assume this means that for everything but POST, the setParameter/addParameter/removeParameter methods will modify the query string, (and hence shouldn't be used in conjunction with setQueryStr

RE: [HTTPCLIENT] Suggestion: Uniform parameter handling

2002-04-24 Thread Amir D. Kolsky
2002 10:59 AM To: [EMAIL PROTECTED] Subject: [HTTPCLIENT] Suggestion: Uniform parameter handling Currently there is no common or comfortable mechanism to read an HttpMethod's parameters. You can get and set the query string, but this is reasonable with GET only. Parsing the query string

[HTTPCLIENT] Suggestion: Uniform parameter handling

2002-04-24 Thread Rainer Klute
Currently there is no common or comfortable mechanism to read an HttpMethod's parameters. You can get and set the query string, but this is reasonable with GET only. Parsing the query string into parameters is not supported by httpclient - at least as far as I know. This is a task left to each