Re: HTTPSender

2002-11-05 Thread Paul Hunnisett
> The call > in readHeadersFromSocket is reading the HTTP status code, e.g. the 200 > in > > HTTP/1.1 200 OK Ok, I have realised that I may be missing some implementation here. The setStatus(int) method of my HttpServletResponse does nothing yet, whihc may cause this problem. The main reason

[Fwd: Re: HTTPSender]

2002-10-30 Thread Paul Hunnisett
--- Begin Message --- OK, I may be tracking down the problem. In org.apache.axis.SOAPPart, line 538, there is an attempt to instantiate an InputSource with a new StringReader. The constructor for the StringReader takes in the result of getAsString(). I am guessing that the getAsString() metho

[Fwd: Re: HTTPSender]

2002-10-30 Thread Paul Hunnisett
t; <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, October 30, 2002 4:01 AM > Subject: RE: HTTPSender > > > > Does no-one really know anything about this class? In it's > > readFromSocket() method it attempts to parse a String conta

Re: HTTPSender

2002-10-30 Thread Scott Nichol
response with tcpmon or a similar tool and post it here as well. Scott Nichol - Original Message - From: "Paul Hunnisett" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 30, 2002 4:01 AM Subject: RE: HTTPSender > Does no-one really know anyth

RE: HTTPSender

2002-10-30 Thread Davanum Srinivas
Which line #? --- Paul Hunnisett <[EMAIL PROTECTED]> wrote: > Does no-one really know anything about this class? In it's > readFromSocket() method it attempts to parse a String containing > encoding information. When I run Axis on my server, this always throws > a NumberFormatException. Is ther

RE: HTTPSender

2002-10-30 Thread Paul Hunnisett
Does no-one really know anything about this class? In it's readFromSocket() method it attempts to parse a String containing encoding information. When I run Axis on my server, this always throws a NumberFormatException. Is there soemthing I should have implemented but haven't? Any ideas? Paul

RE: HTTPSender

2002-10-28 Thread Manoj Sharma
Thanks. Ill give it a try. -Original Message- From: Steve Loughran [mailto:steve_l@;iseran.com] Sent: Monday, October 28, 2002 12:40 PM To: [EMAIL PROTECTED] Subject: Re: HTTPSender - Original Message - From: "Manoj Sharma" <[EMAIL PROTECTED]> To: <[EMAIL P

Re: HTTPSender

2002-10-28 Thread Steve Loughran
- Original Message - From: "Manoj Sharma" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, October 28, 2002 6:27 AM Subject: RE: HTTPSender > In the same vein as the earlier query is Axis tied to a WebServer which > supp

RE: HTTPSender

2002-10-28 Thread Manoj Sharma
/manoj_sharma0 -Original Message- From: Davanum Srinivas [mailto:dims@;yahoo.com] Sent: Monday, October 28, 2002 7:55 AM To: Paul Hunnisett; [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: HTTPSender Forwarding this to axis-dev mailing list. Thanks, dims --- Paul Hunnisett <[EMAIL PROTEC

Re: HTTPSender

2002-10-28 Thread Davanum Srinivas
Forwarding this to axis-dev mailing list. Thanks, dims --- Paul Hunnisett <[EMAIL PROTECTED]> wrote: > I have recently been examining the source code for Apache Axis and I > have come across some code that has confused me. In HTTPSender > readFromSocket() method, some parsing is done of a String

RE: HTTPSender not using HttpURLConnection

2002-04-11 Thread Ng, Charles
Title: HTTPSender not using HttpURLConnection From what I have read, HttpURLConnection did not handle HTTP 5xx status code prior to J2SDK 1.3.1_01. -Original Message-From: Volkmann, Mark [mailto:[EMAIL PROTECTED]]Sent: Thursday, April 11, 2002 10:43 AMTo: '[EMAIL PROTECTED]'Su

RE: HTTPSender

2002-04-08 Thread CHEN,SHIH-CHANG (HP-NewJersey,ex2)
1. it sounds good but, fo course, this never means it works well. And i agree that it's not a good time to move to jdk1.4 right now. 2. if before, we alsoe use jakarta's httpclient in jaxm but found some problems. At least, i found web-proxy does not work properly. When i look into the codes, i f

Re: HTTPSender

2002-04-05 Thread Steve Loughran
- Original Message - From: "CHEN,SHIH-CHANG (HP-NewJersey,ex2)" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: "Boyd, Garth" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, April 04, 2002 12:38 PM Subject: RE: HTTPSender > Yes,

RE: HTTPSender

2002-04-04 Thread CHEN,SHIH-CHANG (HP-NewJersey,ex2)
CTED]' > Cc: Boyd, Garth > Subject: RE: HTTPSender > > > Hi Chen. > > I think that will be very helpful. Specifically, the ability to fully > configure JSSE is really what I want. > > Do you plan to commit this code? > > Thanks, > Charles > > -

RE: HTTPSender

2002-04-04 Thread Ng, Charles
2:03 PM To: '[EMAIL PROTECTED]' Cc: '[EMAIL PROTECTED]' Subject: RE: HTTPSender 1. I have tired to modify the HTTPSender to use the httpclient in apache common project. The purpose is as you said to support Keep-alive and chunking transfer-encoding. However, httpclient does

RE: HTTPSender

2002-04-04 Thread CHEN,SHIH-CHANG (HP-NewJersey,ex2)
1. I have tired to modify the HTTPSender to use the httpclient in apache common project. The purpose is as you said to support Keep-alive and chunking transfer-encoding. However, httpclient does not fit my need very well and I found it have problems when using http proxy. So, is the httpclient li