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
ichard Sayre" <[EMAIL PROTECTED]> > To: "Tomcat Users List" > Sent: Wednesday, December 05, 2007 12:32 PM > Subject: HTTP 1.1 Not Supported > > > > > I have a C Sharp Pocket PC application that is hitting a Tomcat web > > server and getting some

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.

Re: HTTP 1.1 Not Supported

2007-12-05 Thread Martin Gainty
webservers, firewalls or nat-servers? M-- - Original Message - From: "Richard Sayre" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Wednesday, December 05, 2007 12:32 PM Subject: HTTP 1.1 Not Supported > I have a C Sharp Pocket PC application that is hitt

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 run

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

HTTP 1.1 Not Supported

2007-12-05 Thread Richard Sayre
I have a C Sharp Pocket PC application that is hitting a Tomcat web server and getting some data from that server. With Tomcat 4.1 this application is working fine, but since I upgraded to Tomcat 6 it stopped working. Most of the application works with Tomcat 6. When It does work here is the sce