Re: [PROPOSAL] Decoding multpart mime HTTP POST API

2002-02-11 Thread Tomasz Pik
Ignacio J. Ortega wrote: > Yes, but this can be done in an api agnostic way, without ties to a > especific api, such as Servlet 2.3, a filter can later use it easily, > and It's easy to parse 'upload' stream with JavaMail multipart classes. All that we have to do is to check request.content

[httpclient] patch for RequestInputStream.java

2002-02-11 Thread Sean C. Sullivan
This is a patch for RequestInputStream.java The patch file is attached. I created the patch files using this command: cvs diff -u Foo.java > Foo.patch Changes: Bug fix: One of the constructors was ignoring the InputStream parameter. Added javadoc comments to one

Re: [PROPOSAL] adding jakarta-commons-sandbox filters and upload

2002-02-11 Thread Martin Cooper
+1 (even if it's not strictly necessary :) -- Martin Cooper - Original Message - From: "Glenn Nielsen" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 11, 2002 12:17 PM Subject: [PROPOSAL] adding jakarta-commons-sandbox filters and upload > Based on the positive res

Re: [httpclient] patch for RequestOutputStream.java

2002-02-11 Thread dIon Gillard
Sean C. Sullivan wrote: >I updated the code for the RequestOutputStream.java > >A patch file is attached. > > I created the patch files using this command: > > cvs diff -u Foo.java > Foo.patch > >Changes: > > The simple 1 arg constructor now calls the 2 arg constructor. > In the

[httpclient] patch for RequestOutputStream.java

2002-02-11 Thread Sean C. Sullivan
I updated the code for the RequestOutputStream.java A patch file is attached. I created the patch files using this command: cvs diff -u Foo.java > Foo.patch Changes: The simple 1 arg constructor now calls the 2 arg constructor. In the 2 arg constructor, throw NullPointe

cvs commit: jakarta-commons/httpclient/src/java/org/apache/commons/httpclient HttpConnection.java

2002-02-11 Thread dion
dion02/02/11 18:11:43 Modified:httpclient/src/java/org/apache/commons/httpclient HttpConnection.java Log: Patches for null host as per patch from Sean C. Sullivan Revision ChangesPath 1.7 +15 -8 jakarta-commons/httpclient/src/java/o

cvs commit: jakarta-commons/httpclient/src/java/org/apache/commons/httpclient HttpClient.java

2002-02-11 Thread dion
dion02/02/11 17:50:54 Modified:httpclient/src/java/org/apache/commons/httpclient HttpClient.java Log: Added check for debug enabled as per patch from Sean C. Sullivan Revision ChangesPath 1.43 +17 -10 jakarta-commons/httpclient/src/ja

Re: [httpclient] patches for HttpClient.java, HttpConnection.java

2002-02-11 Thread dIon Gillard
Sean C. Sullivan wrote: > > I updated the code for the HttpClient: > > HttpClient.java > HttpConnection.java > >Patch files attached. > > I created the patch files using this command: > > cvs diff -c Foo.java > Foo.patch > >-Sean > I've applied the HttpClien

cvs commit: jakarta-commons/httpclient/src/java/org/apache/commons/httpclient/methods GetMethod.java

2002-02-11 Thread dion
dion02/02/11 16:46:59 Modified:httpclient/src/java/org/apache/commons/httpclient/methods GetMethod.java Log: Added recycle patch from Sean C. Sullivan Revision ChangesPath 1.8 +6 -3 jakarta-commons/httpclient/src/java/org/apache/co

Re: [httpclient] patch for GetMethod.java, recycle() method in GetMethod class

2002-02-11 Thread dIon Gillard
Sean C. Sullivan wrote: > jakarta-commons httpclient inquiry + patch: > >The HttpMethod interface declares a method called >recycle(): > > > >/** > * Recycle this method so that it can be used again. > * Note that all of my instance variables will be reset > * once