[VOTE] New committer: Sean Sullivan

2002-06-04 Thread Marc . Saegesser
I would like to nominate Sean Sullivan as a committer for the Jakarta Commons project. Sean has been active in providing patches and support the HttpClient project over the last several months and I think he would be a good addition to the community. Marc Saegesser -- To unsubscribe, e-mail

RE: [HttpClient] Post parameters

2002-06-04 Thread Marc . Saegesser
had so far is to create a new GetMethod class internally, send that request and then copy the response data from the temporary GET method back into the original POST method got in the first place. If anyone has any better ideas I'd love to hear them. Marc Saegesser -Original Message

RE: HTTPClient: resolving relative URLS?

2002-05-10 Thread Marc . Saegesser
the specification so we allow incorrect behavior in non-strictMode. Marc Saegesser -Original Message- From: Lomvardias, Christopher [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 09, 2002 7:31 PM To: '[EMAIL PROTECTED]' Subject: HTTPClient: resolving relative URLS? Can the http client

RE: HttpClient question.

2002-05-09 Thread Marc . Saegesser
://jakarta.apache.org/site/getinvolved.html. In general we try to to deal with dummies. :-) Marc Saegesser -Original Message- From: Dennis Cook [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 09, 2002 2:08 PM To: 'Jakarta Commons Developers List' (E-mail) Subject: HttpClient question

RE: [httpclient]: Q about HttpMultiClient and redirects

2002-05-07 Thread Marc . Saegesser
the 405 Method Not Allowed response and have the caller guess that it should send back a GET instead of the POST. Againk this sucks, but I don't see any other alternative right now. Marc Saegesser -Original Message- From: otisg [mailto:[EMAIL PROTECTED]] Sent: Monday, May 06, 2002 5:54

RE: HttpClient development

2002-05-06 Thread Marc . Saegesser
think a basic user's guide or introduction document would be great. I won't get to those in the next few weeks, though. Do you see a need? Do you think something is missing? Remember how it works? Marc Saegesser -Original Message- From: Amir D. Kolsky [mailto:[EMAIL PROTECTED]] Sent

RE: HttpClient development

2002-05-05 Thread Marc . Saegesser
Yes, to both questions. I've been a little short on time recently, but I'm hoping to get back into things a little more next week. Marc Saegesser -Original Message- From: Donald Ball [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 05, 2002 3:07 PM To: [EMAIL PROTECTED] Subject

RE: HttpClient development

2002-05-05 Thread Marc . Saegesser
database so we don't forget. 4. is the httpclient object threadsafe? that is to say, can i have several threads calling executeMethod simultaneously? No. HttpMultiClient is. - donald Marc Saegesser -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail

RE: Why are HTTP POST headers split into multiple packets?

2002-05-01 Thread Marc . Saegesser
The fact that headers are sent in different packets makes absolutely *no* difference at the application layer (e.g. HttpClient and the Web server). At the application level, TCP is simply a stream of bytes. The protocol handles packing and unpacking these bytes into packets as it sees

RE: Redirect problems in HTTP client of Jakarta Commons

2002-04-28 Thread Marc . Saegesser
Take a look at HttpMultiClient in the latest nightly builds. I think it will do exactly what your looking for. Marc Saegesser -Original Message- From: Samuel Cheung [mailto:[EMAIL PROTECTED]] Sent: Saturday, April 27, 2002 9:56 PM To: '[EMAIL PROTECTED]' Subject: Redirect

RE: HTTP Client of Jakarta Commons Parsing Error

2002-04-28 Thread Marc . Saegesser
don't know why you're aren't seeing the HTTP response status line since it works fine for me. Marc Saegesser -Original Message- From: Samuel Cheung [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 28, 2002 10:47 AM To: [EMAIL PROTECTED] Subject: HTTP Client of Jakarta Commons Parsing

RE: HTTP Client of Jakarta Commons Parsing Error

2002-04-28 Thread Marc . Saegesser
Sam, Don't know what to tell you. My simple page getting application is attached. Try running Ethereal and see what the server is actually sending back. Marc Saegesser -Original Message- From: Samuel Cheung [mailto:[EMAIL PROTECTED]] Sent: Sunday, April 28, 2002 11:17 AM

RE: [HTTPCLIENT] possible bug?

2002-04-21 Thread Marc . Saegesser
there right now is pretty solid. There are only a few things left to wrap up related to some new functionality. There have also been some recent bug reports and enhancement requests that need to be evaluated. Marc Saegesser -Original Message- From: Gerhard Froehlich [mailto:[EMAIL PROTECTED

RE: Minimum JDK version for HttpClient

2002-03-29 Thread Marc Saegesser
they got used in the first place was because the JavaDoc for the java.net.URL class doesn't have an @since tag for the methods that got added in 1.3. Add this to list of issues to be resolved prior to a 2.0 final release. Marc Saegesser If I have to add this to the list of issues

Minimum JDK version for HttpClient

2002-03-27 Thread Marc Saegesser
of these methods is all that difficult to implement, but I'd much rather use the existing library methods if possible. Marc Saegesser -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: [HttpClient] Still problems with null domains and paths

2002-03-22 Thread Marc Saegesser
Vincent, I've written quite a bit on this topic over the last few weeks, so you might find some of the stuff in list archives useful. I'll try to summarize things again here. All cookies have a domain and path associated with them. The path can be specified explicitly using attributes on the

RE: [HttpClient]Encoding

2002-03-21 Thread Marc Saegesser
Yep, that's my position. HTTP (and hence HttpClient) is about moving the data around. The _interpretation_ of the data should be left up to a higher application layer. Marc Saegesser -Original Message- From: Rapheal Kaplan [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002

RE: [HttpClient] Any tests for HttpMultiClient?

2002-03-21 Thread Marc Saegesser
couple weeks. I'm trying to get everything wrapped up so that I can get to JavaOne next week. Maybe I'll find some quiet time to work on the HttpClient test cases while I'm there. :-) Marc Saegesser -Original Message- From: Sung-Gu [mailto:[EMAIL PROTECTED]] Sent: Thursday, March

RE: [HttpClient]Encoding

2002-03-20 Thread Marc Saegesser
. Marc Saegesser -Original Message- From: Rapheal Kaplan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 1:53 PM To: Jakarta Commons Developers List Subject: Re: [HttpClient]Encoding Makes sense to me. Because the encoding is handled in the body itself

RE: [httpclient] Constructing Cookies with null domains (again)

2002-03-08 Thread Marc Saegesser
Comments in-line. Marc Saegesser -Original Message- From: dIon Gillard [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 07, 2002 6:08 PM To: Jakarta Commons Developers List Subject: Re: [httpclient] Constructing Cookies with null domains (again) Marc Saegesser wrote

RE: [httpclient] Constructing Cookies with null domains (again)

2002-03-07 Thread Marc Saegesser
the Cookie class so that it won't barf when it sees these cookies, but they'll never show up in any cookie header until someone comes along and calls the setDomain() and setPath() methods on them to give them a valid values. Marc Saegesser -Original Message- From: dIon Gillard [mailto

RE: [httpclient] Constructing Cookies with null domains (again)

2002-03-06 Thread Marc Saegesser
value and we require that a domain be provided by calling setDomain() at some point before the Cookie is actually used, but I really don't see the point in this. Marc Saegesser -Original Message- From: dIon Gillard [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 06, 2002 6:59 PM

[httpclient] Constructing Cookies with null domains (again)

2002-03-04 Thread Marc Saegesser
. The reason is that the Cookie constructor is not in a position to provide any reasonable default value for domain because it does not have any idea what the request host is. Marc Saegesser -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL

RE: [httpclient] Sorted cookie patch broken

2002-02-25 Thread Marc Saegesser
Yep, I've got other work to do for new test cases and that I'm hoping to get to later this week. I'll take a look at the this test while I'm in there. Marc Saegesser -Original Message- From: dIon Gillard [mailto:[EMAIL PROTECTED]] Sent: Friday, February 22, 2002 1:31 PM

RE: [httpclient] patch for Cookie.java

2002-02-24 Thread Marc Saegesser
Committed. Thanks. Marc Saegesser -Original Message- From: Sean C. Sullivan [mailto:[EMAIL PROTECTED]] Sent: Sunday, February 24, 2002 1:35 AM To: Jakarta Commons Developers List Subject: [httpclient] patch for Cookie.java Here is a patch for Cookie.java A patch

[httpclient] Sorted cookie patch broken

2002-02-21 Thread Marc Saegesser
anyone else starts having problems with it until I get my changes committed. Marc Saegesser -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

RE: [httpclient] More HttpMultiClient patches - initial strict m ode stuff

2002-02-20 Thread Marc Saegesser
for the new code. Marc Saegesser -Original Message- From: Marc Paquette [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 9:31 AM To: Jakarta Commons Developers List Subject: Re: [httpclient] More HttpMultiClient patches - initial strict m ode stuff Marc Saegesser

[httpclient] More HttpMultiClient patches - initial strict mode stuff

2002-02-19 Thread Marc Saegesser
for strictMode. Updated executeMethod() to set the strictMode for each request. Marc Saegesser HttpMethodBase.diff Description: Binary data HttpMethod.diff Description: Binary data HttpMultiClient.java Description: Binary data -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED

[httpclient] Lots of patches and discussion

2002-02-12 Thread Marc Saegesser
. HttpUrlMethod classes are initialized with a fully qualified URL instead of just the path component. UrlGetMethod.java UrlPostMethod.java UrlDeleteMethod.java UrlOptionsMethod.java UrlPutMethod.java - These classes exetend their respective method classes and impelement HttpUrlMethod. Marc Saegesser

[PATCH] HttpClient: Expires date format addition

2002-01-16 Thread Marc Saegesser
Attached is a trivial patch that adds one more date format for cookie expiration. The new format is returned by some servers (namely whatever it is that yahoo.com is running). Marc Saegesser Cookie.java.diff Description: Binary data -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED