cvs commit: xml-soap/java/docs/install tomcat.html

2002-11-12 Thread snichol
snichol 2002/11/12 10:58:57 Modified:java/docs/install tomcat.html Log: Add a note about Java 1.4 and endorsed directories. Revision ChangesPath 1.15 +6 -0 xml-soap/java/docs/install/tomcat.html Index: tomcat.html =

Re: cvs commit: xml-soap/java/src/org/apache/soap/transport/httpSOAPHTTPConnection.java

2002-11-12 Thread Scott Nichol
If I put comments in my code, you would not have had the question ;-) Scott Nichol - Original Message - From: "Pavel Ausianik" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, November 12, 2002 12:10 PM Subject: RE: cvs commit: xml-soap/java/src/org/apache/soap/transport/http SO

RE: cvs commit: xml-soap/java/src/org/apache/soap/transport/http SOAPHTTPConnection.java

2002-11-12 Thread Pavel Ausianik
Agree, it is just end of working day fro me..., sorry > -Original Message- > From: Scott Nichol [mailto:snicholnews@;scottnichol.com] > Sent: Tuesday, November 12, 2002 6:25 PM > To: [EMAIL PROTECTED] > Subject: Re: cvs commit: > xml-soap/java/src/org/apache/soap/transport/http > SOAPHTTP

Re: cvs commit: xml-soap/java/src/org/apache/soap/transport/httpSOAPHTTPConnection.java

2002-11-12 Thread Scott Nichol
This is the case where the message has a Content-Length header specifying 0 octets. I create the byte array of that length, but there is no reason to read, since I want 0 bytes, which is what I already have. Scott Nichol - Original Message - From: "Pavel Ausianik" <[EMAIL PROTECTED]> To:

RE: [PATCH] Use static predefined ContentType

2002-11-12 Thread Pavel Ausianik
Scott, Just a reminder I have a patch proposed in the thread "Performance reserve". I don't mean you need to submit it right now, or submit at all, just to bring your attention to it. Pavel > -Original Message- > From: Scott Nichol [mailto:snicholnews@;scottnichol.com] > Sent: Tuesday,

RE: cvs commit: xml-soap/java/src/org/apache/soap/transport/http SOAPHTTPConnection.java

2002-11-12 Thread Pavel Ausianik
Scott, i don't know if this makes sence, but logic little bit strange, in case contentLength=0. See buffer has been created, but as I can see it is not used anymore since the following block finishes at the end. Should be there condition to go inside and read from buffer? bytes = new byte

RE: [PATCH] Use static predefined ContentType

2002-11-12 Thread Pavel Ausianik
Scott, For filter transport I guess easier to make getEnvelope as it done corrently via BufferedReader . I'm not sure how it is really used and how many users will not benefit from this not improved implementation. Pavel > -Original Message- > From: Scott Nichol [mailto:snicholnews@;sco

cvs commit: xml-soap/java/src/org/apache/soap Constants.java

2002-11-12 Thread snichol
snichol 2002/11/12 06:34:56 Modified:java/src/org/apache/soap/rpc Call.java java/src/org/apache/soap/transport TransportMessage.java java/src/org/apache/soap Constants.java Log: Submitted by: Pavel Ausianik <[EMAIL PROTECTED]> I have prepared patch

cvs commit: xml-soap/java/src/org/apache/soap/transport/http SOAPHTTPConnection.java

2002-11-12 Thread snichol
snichol 2002/11/12 06:15:38 Modified:java/src/org/apache/soap/util/net HTTPUtils.java java/src/org/apache/soap/transport TransportMessage.java java/src/org/apache/soap/transport/http SOAPHTTPConnection.java Log: Reduce the number

Re: [PATCH] Use static predefined ContentType

2002-11-12 Thread Scott Nichol
Pavel, I will be committing changes I made to HTTPUtils, TransportMessage and SOAPHTTPConnection later today, after which I will apply and commit your changes. Also, I have come to the conclusion that, as you suggested, we should add a getEnvelope method to SOAPTransport, not SOAPContext. For SO