Re: session invalid?

2001-06-12 Thread DAK
Got it figured out. I turns out that the proxy within Xerox was messing up the cookies. Disable the proxy and all is well! David DAK wrote: > > I'm seeing something strange. (would I write if it wasn't strange?) > I have a servlet that is used to generate an image. I in

session invalid?

2001-06-11 Thread DAK
I'm seeing something strange. (would I write if it wasn't strange?) I have a servlet that is used to generate an image. I include the URL to it as output from another servlet. (so it is embedded in the page generated by the first). Somewhat regularly, it fails to get the session object. I call

Re: RPM of 3.3m3 - XERCES-J instead of JAXP - Agree ?

2001-06-05 Thread DAK
I agree about JAXP1.1 I've been using that with tomcat 3.2.x without any problems. I use Xalan and XSLT, so thought it would be nice to have everything running the same parser. David [EMAIL PROTECTED] wrote: > What about using jaxp-1.1 ? You can now build the whole thing from > xml-common

Re: [BUG T322] Bug in getServletContext().getResource() for relative URLs

2001-05-29 Thread DAK
Yes, Have a look at this Bug Id: 4447088 On the Bug Parade at the JDC. I submitted this after trying to use classloader.getResource() in a servlet. URL doesn't construct a proper URL string when the constructor you show is used. Works fine on unix/linux, but windows absolute paths can start wi

tomcat.sh for cygwin

2001-05-24 Thread DAK
For those who use cygwin on windows, here is a version of the tomcat.sh script that I've been using. Perhaps this could go in the repository under tomcat.cygwin David #!/bin/sh # # $Id: tomcat.sh,v 1.17.2.1 2000/11/17 22:05:50 glenn Exp $ # Shell script to start and stop the server # Ther

Re: [PATCH] Bug fix for #1678

2001-05-24 Thread DAK
Now, this is what I was talking about with the upload data corruption! Finally, corroboration! David Hiro Takahashi wrote: > This is the fix for ServletInputStream.read() bug. > #1678: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=1678 > The change is in Ajp13ConnectorRequest.java.

Re: upload data corruption report

2001-05-20 Thread DAK
e > outcome. To test this I wrote a simple Java application simply ran through > all possible byte values and did your char/mask/byte translation and then > tested if the result was different than the original value. It never was. > > I'm not saying that you aren't seeing some

upload data corruption report

2001-05-19 Thread DAK
I've been asked to provide more information, so here is combination of the two messages I posted with some more commentary and attachments. It pertains to Tomcat-3.2.1 and looks to be the same in 3.2.2.b4. I'm running Apache 1.3.17 on Win 2K Professional. I'm also using mod_jk I have some cli

servlet upload data corruption (more)

2001-05-19 Thread DAK
I finally got out from under some work and was able to make some test code. I'm attaching the client and servlet code. The code transfers a couple parameters, then a binary file (I was using a .jar). If you call the client with "BinTestClient localhost something.jar b", it uses byte-by-byte rea

Re: Servlet Upload Data Corruption

2001-05-17 Thread DAK
gain and send it? > thanks. > > DAK wrote: > >> Here's my first submission! It pertains to Tomcat-3.2.1 and looks to be >> the same in 3.2.2.b4 >> >> I have some client code that sends a jar file to the servlet. The jar >> file was

Servlet Upload Data Corruption

2001-05-16 Thread DAK
Here's my first submission! It pertains to Tomcat-3.2.1 and looks to be the same in 3.2.2.b4 I have some client code that sends a jar file to the servlet. The jar file was getting corrupted. After much digging, I found a CVS commit to Ajp13ConnectorRequest.java that mentioned a problem like th