Re: Pagecache framework?

2005-01-21 Thread Mike Fuellbrandt
How about this? http://www.servlets.com/cos/javadoc/com/oreilly/servlet/CacheHttpServlet.html - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: method level synchronization doesn't work

2004-10-01 Thread Mike Fuellbrandt
synchronization so I could be really wrong here...) Mike Fuellbrandt On Thu, 30 Sep 2004 16:43:33 -0500, QM [EMAIL PROTECTED] wrote: On Thu, Sep 30, 2004 at 05:31:25PM -0400, Malia Noori wrote: : Thank you for replying, but I would appreciate it if you could expand on : your explanation. Here is my

Re: urls not conforming to the standards problem

2004-10-01 Thread Mike Fuellbrandt
If you are looking for just the SessionID that is passed, then you could retrieve it via HttpServletRequest.getRequestedSessionId(); To get it back into the outgoing url, wouldn't you just use encodeUrl()? As an aside, I don't believe that it's JK (mod_jk?) that's parsing it out as Tomcat

Re: javascript and servlets.

2004-09-03 Thread Mike Fuellbrandt
If your fields are all file uploads, then you probably can't get them through the regular HttpServletRequest.getParameter(). I'm curious though, what do you get from the first element (file0). Is it the file contents? What you need to do is submit the form as multipart form, and process posted