help with exception: "IOException while saving persisted sessions: java.io.FileNotFoundException: C:\Documents and Settings\...\SESSIONS.ser (The system cannot find the path specified)"

2010-07-29 Thread Chris Markle
Running Tomcat 7.0.0 under Eclipse on Windows XP SP3. When I save a change to my app and Tomcat reloads whatever it reloads, I get the following exception. I did some web searching but to no avail. The directory C:\Documents and Settings\Dad\Desktop\dev\.metadata\.plugins\org.eclipse.wst.server.co

Re: Tomcat 7 binary download location? associated Servlet 3.0 Javadoc?

2010-06-27 Thread Chris Markle
Charles, Thanks! Found Tomcat 7 and Servlet 3.0 Javadoc where you indicated. Chris - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Tomcat 7 binary download location? associated Servlet 3.0 Javadoc?

2010-06-27 Thread Chris Markle
Folks, Two questions both of which I have had trouble resolving with Google searches. 1. Tomcat 7 binary distribution download location -- Somehow I found a working location once a few days ago, but didn't write it down and now need to get it again. Where can I find binary distributions of Tomcat

Re: Tomcat Comet and threading?

2009-06-19 Thread Chris Markle
Filip, Thanks for the reply. > You can do the actions on the worker thread or on your own thread. Can you clarify your terminology here please? Is the "worker thread" then one where the event() method is running? Can there be more than one of those threads that are running the event() method for

Tomcat Comet and threading?

2009-06-18 Thread Chris Markle
Say I am running the NIO connector and using Comet by my servlet implementing CometProcessor... What is the relationship between my servlet, threading and what is blocking vs. non-blocking? I am trying to understand this better so I can see where I might want to use my own threads or not. If I hit

Re: org.apache.tomcat.sendfile.support attribute returned via getAttribute() but name not returned via getAttributeNames()

2009-06-09 Thread Chris Markle
Ranier, > Yes, there are request attributes, that you can retrieve via > getAttribute(), but are not visible in getAttributeNames(). Those are > mostly somehow connector internal attributes, but yes, some of them can > be interesting to use in a webapp. Unfortunately this will not be easy to > fix

Re: org.apache.tomcat.sendfile.support attribute returned via getAttribute() but name not returned via getAttributeNames()

2009-06-08 Thread Chris Markle
file.support (even though I can access that attribute via the getAttribute method); or 2. There's a doc error in the getAttributeNames doc where the cases where it doesn't show all attribute names needs to be explained. My original message on the topic is below. Thanks! Chris On

org.apache.tomcat.sendfile.support attribute returned via getAttribute() but name not returned via getAttributeNames()

2009-06-05 Thread Chris Markle
Hi, Probably missing something simple here but I can't figure it out... I have pretty much just modified a simpel hello world servlet as I start to play around with NIO sendfile support. I am using Tomcat 6.0.20. I am trying to check for the org.apache.tomcat.sendfile.support which says I can use