Re: HTTP 1.1 Not Supported

2007-12-05 Thread Bill Barker
"Richard Sayre" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Thank you everyone for all the help I am getting. I have been doing > some debugging and it seems that Tomcat is ok. As I stated earlier > there is only one piece of code not working, I have other code that is > succe

Re: HTTP 1.1 Not Supported

2007-12-05 Thread Richard Sayre
Thank you everyone for all the help I am getting. I have been doing some debugging and it seems that Tomcat is ok. As I stated earlier there is only one piece of code not working, I have other code that is successfully getting data from the server. Here is what I found out using Ethereal: 1) I

Re: HTTP 1.1 Not Supported

2007-12-05 Thread Filip Hanik - Dev Lists
that looks like a valid request, there most be something else in the data sent over that breaks it there is only one place where tomcat checks for this, its in the Http11Processor you should be able to turn on the debug to get the actual data that tomcat is trying to parse put org.apache.coy

Re: HTTP 1.1 Not Supported

2007-12-05 Thread Martin Gainty
32 PM Subject: RE: HTTP 1.1 Not Supported > From: Richard Sayre [mailto:[EMAIL PROTECTED] > Subject: Re: HTTP 1.1 Not Supported > > Here is the exact String exported from the packet: > > POST /test/sync/upload.jsp?username=test1 HTTP/1.1 > Content-Type: text/xml > Cont

RE: HTTP 1.1 Not Supported

2007-12-05 Thread Caldarale, Charles R
> From: Richard Sayre [mailto:[EMAIL PROTECTED] > Subject: Re: HTTP 1.1 Not Supported > > Here is the exact String exported from the packet: > > POST /test/sync/upload.jsp?username=test1 HTTP/1.1 > Content-Type: text/xml > Content-Length: 4005 > Connection: Keep-A

RE: HTTP 1.1 Not Supported

2007-12-05 Thread Caldarale, Charles R
> From: Propes, Barry L [mailto:[EMAIL PROTECTED] > Subject: RE: HTTP 1.1 Not Supported > > if the PPC won't accept the Coyote Connector, I don't know > what path you can take to rectify that. The Pocket PC is not rejecting the response, it's Tomcat that's

RE: HTTP 1.1 Not Supported

2007-12-05 Thread Propes, Barry L
x27;t know what path you can take to rectify that. -Original Message- From: Richard Sayre [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 05, 2007 12:05 PM To: Tomcat Users List Subject: Re: HTTP 1.1 Not Supported On Dec 5, 2007 2:22 PM, Caldarale, Charles R <[EMAIL PROTECTED

Re: HTTP 1.1 Not Supported

2007-12-05 Thread Richard Sayre
The Pocket PC is sending XML data to Tomcat. The XML contains all of the changes made to the data on the Pocket PC. On Dec 5, 2007 2:38 PM, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > > From: Richard Sayre [mailto:[EMAIL PROTECTED] > > Subject: Re: HTTP 1.1 Not Supported

Re: HTTP 1.1 Not Supported

2007-12-05 Thread Richard Sayre
On Dec 5, 2007 2:28 PM, Martin Gainty <[EMAIL PROTECTED]> wrote: > did you verify protocol is set to HTTP 1.1 (at least not set to 1.0) > default non-ssl connector in $CATALINA_HOME/conf/server.xml? This is my non ssl connector in server.xml: The ssl connector is commented out. > did you ver

RE: HTTP 1.1 Not Supported

2007-12-05 Thread Caldarale, Charles R
> From: Richard Sayre [mailto:[EMAIL PROTECTED] > Subject: Re: HTTP 1.1 Not Supported > > > And what does the access log (or Wireshark trace) show as > > being sent by the app on the Pocket PC? > > > Using Ethereal I found that Tomcat is sending this error back

Re: HTTP 1.1 Not Supported

2007-12-05 Thread Richard Sayre
Here is the exact String exported from the packet: POST /test/sync/upload.jsp?username=test1 HTTP/1.1 Content-Type: text/xml Content-Length: 4005 Connection: Keep-Alive Expect: 100-continue Host: 192.168.1.116 On Dec 5, 2007 2:29 PM, Richard Sayre <[EMAIL PROTECTED]> wrote: > The spacing seems to

Re: HTTP 1.1 Not Supported

2007-12-05 Thread Richard Sayre
On Dec 5, 2007 2:22 PM, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > > From: Richard Sayre [mailto:[EMAIL PROTECTED] > > Subject: HTTP 1.1 Not Supported > > > > 2. The pocket pc app tries to obtain a Response object > > from the request > > 3. On the line of code that tries to obtain a respons

Re: HTTP 1.1 Not Supported

2007-12-05 Thread Martin Gainty
did you verify protocol is set to HTTP 1.1 (at least not set to 1.0) default non-ssl connector in $CATALINA_HOME/conf/server.xml? did you verify that Port 80 redirects to connector configured for 8084? did you verify the connector is live and listening on 8084? are there any other intervening webse

Re: HTTP 1.1 Not Supported

2007-12-05 Thread Richard Sayre
The spacing seems to be ok. I request several pages using the C# object. The only time I get that error is when I write some data to the request before I get the response. Here is the request String: POST /test/sync/upload.jsp?username=test1 HTTP/1.1 On Dec 5, 2007 2:17 PM, Dwebb <[EMAIL PROT

RE: HTTP 1.1 Not Supported

2007-12-05 Thread Caldarale, Charles R
> From: Richard Sayre [mailto:[EMAIL PROTECTED] > Subject: HTTP 1.1 Not Supported > > 2. The pocket pc app tries to obtain a Response object > from the request > 3. On the line of code that tries to obtain a response > I get a server error Are you referring to the app running on the Pocket PC o

Re: HTTP 1.1 Not Supported

2007-12-05 Thread Dwebb
Hi, You might want to check the Request line in a tcp capture. We have run into a problem recently with the new tomcat bundles that do very strict checking of the request line. It has to be formatted METHOD SPACE REQUEST_URI SPACE VERSION (ie POST /test HTTP/1.1). if there are more than one spa