Re: Re: concurrent connections with mod_jk/apache/tomcat

2009-06-07 Thread Jason Joseph
Rainer Jung wrote: Be careful to secure access to WEB-INF and META-INF. Yup, Ive got this in there, one for META-INF too... deny from all Thanks... Regards, Rainer - To unsubscribe, e-mai

Re: Update to 6.0.20: deferred EL expressions

2009-06-07 Thread Mark Thomas
Caldarale, Charles R wrote: >> From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] >> Subject: RE: Update to 6.0.20: deferred EL expressions >> >> I've verified your observations by fiddling with one of the >> JSP examples that come with Tomcat; it does seem like a bug >> in 6.0.20 at t

RE: Update to 6.0.20: deferred EL expressions

2009-06-07 Thread Martin Gainty
package org.apache.el.parser; import javax.el.ELException; import javax.el.MethodInfo; import org.apache.el.lang.EvaluationContext; /* All AST nodes must implement this interface. It provides basic machinery for constructing the parent and child relationships between nodes. */ /*** @author

Re: concurrent connections with mod_jk/apache/tomcat

2009-06-07 Thread Rainer Jung
On 07.06.2009 18:46, Jason Joseph wrote: The previously send log files show, that those .png requests are not forwarded to Tomcat. So what is actually answering them? Apache web server directly? Did you put them into the DocumentRoot? That should be much faster, than what you see. Andre - Web

how to force tomcat to make a single istance of a servlet

2009-06-07 Thread syed shah
hi, I want to enforce single instance creation for the servlet because I have some code that serves the user requests and i want to implement caching and handle synchronization myself, thanks and best regards Fahad

RE: concurrent connections with mod_jk/apache/tomcat

2009-06-07 Thread Caldarale, Charles R
> From: Jason Joseph [mailto:jjos...@keystreams.com] > Subject: Re: concurrent connections with mod_jk/apache/tomcat > > Alias /WebApp_ID/ > "/etc/local/WebSphere/repository/default/MyOwnBriefcase- > 0.0.1/1244286355278/MyOwnBriefcase-0.0.1-12.war/ That's a directory, not a .war file. Possibly W

Re: concurrent connections with mod_jk/apache/tomcat

2009-06-07 Thread Jason Joseph
The previously send log files show, that those .png requests are not forwarded to Tomcat. So what is actually answering them? Apache web server directly? Did you put them into the DocumentRoot? That should be much faster, than what you see. Andre - Websphere has a component which helps you s

RE: Update to 6.0.20: deferred EL expressions

2009-06-07 Thread Caldarale, Charles R
> From: Marco Guazzone [mailto:marco.guazz...@gmail.com] > Subject: Re: Update to 6.0.20: deferred EL expressions > > I've read the description of the aobe bug, but, sorry, I don't > understand how this applies to my problem. Because I suspect that's the fix that changed the behavior. I've verif

Re: Update to 6.0.20: deferred EL expressions

2009-06-07 Thread Marco Guazzone
On Sun, Jun 7, 2009 at 4:16 PM, Caldarale, Charles R wrote: >> From: Marco Guazzone [mailto:marco.guazz...@gmail.com] >> Subject: Update to 6.0.20: deferred EL expressions >> >> The behavior of Tomcat 6.0.20 seems to be the right one >> (while 6.0.18 was wrong). > > From the changelog, it appears t

RE: Update to 6.0.20: deferred EL expressions

2009-06-07 Thread Caldarale, Charles R
> From: Marco Guazzone [mailto:marco.guazz...@gmail.com] > Subject: Update to 6.0.20: deferred EL expressions > > The behavior of Tomcat 6.0.20 seems to be the right one > (while 6.0.18 was wrong). >From the changelog, it appears to be related to this: https://issues.apache.org/bugzilla/show_bug

Update to 6.0.20: deferred EL expressions

2009-06-07 Thread Marco Guazzone
Dear Tomcat users, I'm updating Tomcat from 6.0.18 to 6.0.20. My web-app use JSP 2.1 and JSF 1.2 (v. 1.2_12). The first difference I've noticed is that the following code snip (part of a JSPX page for outputting an HTML page) get unparsed in Tomcat 6.0.20: --- [snip] --- ... ... --- [/snip] ---

Re: concurrent connections with mod_jk/apache/tomcat

2009-06-07 Thread André Warnier
Jason Joseph wrote: ... Yes all static files are being served by Apache. No they aren't being loaded from the document root they are actually being loaded from within our application war. That I do not understand. It seems contradictory. Or, to put it another way, how do you manage that ? --