Configuring JSP tag pooling

2007-04-28 Thread S_Ewing
The Tomcat 6 documentation mentions two ways to configure tag pooling (see http://tomcat.apache.org/tomcat-6.0-doc/jasper-howto.html) - org.apache.jasper.runtime.JspFactoryImpl.USE_POOL=true via the System properties - Set enablePooling to true in web.xml Are these two setting doing the same

problem when changing code and deploying

2007-04-28 Thread is_maximum
Hi all I have a big problem, when I change some classes specially classes with static methods and also Context Listener classes of my appllication and the deploy new changes in already installed application, neither of my changes will apply!!! even if I put some new log they wont appear in the

Re: how to close a comet request outside of an event?

2007-04-28 Thread Sebastiaan van Erk
Hi, The request, wait, async response + close pattern seems to be a pretty common use case though, especially with server side push (AJAX), so it would still be good to have a solution that works well allways. Yes, and for this you don't need Comet, you need Asynchronous Servlets they are

Re: how to close a comet request outside of an event?

2007-04-28 Thread Martin Perez
On 4/28/07, Sebastiaan van Erk [EMAIL PROTECTED] wrote: Hi, The request, wait, async response + close pattern seems to be a pretty common use case though, especially with server side push (AJAX), so it would still be good to have a solution that works well allways. Yes, and for this you

Re: Class is not a servlet

2007-04-28 Thread Pid
Seriously, David's recommendation is the way forwards. When he said, 'read the spec', he was indicating that you should at least have a basic familiarity with what a Servlet is. There are *extensive* and complete tutorials from basic to advanced to found for free online. Search Google (other

Unrecognized VM option '+HeapDumpOnOutOfMemoryError'

2007-04-28 Thread [EMAIL PROTECTED]
Hello, i'm experiencing memory issues on the heap space. The guy that handle the server can't set the -XX:+HeapDumpOnOutOfMemoryError option in JAVA_OPTS of the catalina.sh file, since he get the error in the topic. Is there any thing i should tell him to do please?

Re: Tomcat UserDB in MySQL

2007-04-28 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jan, Jan Strauch wrote: It still doesn´t work. this is what Catalina.out sais: [snip] Realm className=org.apache.catalina.realm.UserDatabaseRealm realm className=org.apache.catalina.realm.JDBCRealm Note that Realm and realm are different.

RE: Unrecognized VM option '+HeapDumpOnOutOfMemoryError'

2007-04-28 Thread Caldarale, Charles R
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Subject: Unrecognized VM option '+HeapDumpOnOutOfMemoryError' The guy that handle the server can't set the -XX:+HeapDumpOnOutOfMemoryError option in JAVA_OPTS of the catalina.sh file, since he get the error in the topic. Install a more

RE: problem when changing code and deploying

2007-04-28 Thread Caldarale, Charles R
From: is_maximum [mailto:[EMAIL PROTECTED] Subject: problem when changing code and deploying I have a big problem, when I change some classes specially classes with static methods and also Context Listener classes of my appllication and the deploy new changes in already installed

Issues concerning Tomcat clustering

2007-04-28 Thread Vinícius Paiva
Hi, In the tomcat clustering documentation it's not even mentioned the problems concerning applications with the usage of critical sessions/semaphores (concurrency) and in-memory caching of data. Has anybody any suggestion of reading about how to deal with this? Thanks in

RE: problem when changing code and deploying

2007-04-28 Thread Caldarale, Charles R
From: Caldarale, Charles R [mailto:[EMAIL PROTECTED] Subject: RE: problem when changing code and deploying Why did you think they would? Only .jsp files can be updated on the fly without restarting the application. I should have mentioned that if you want Tomcat to do the restart

Re: Unrecognized VM option '+HeapDumpOnOutOfMemoryError'

2007-04-28 Thread Rainer Jung
It was implemented starting with versions 1.4.2_12, 1.5.0_07 and 1.6.0 FCS. [EMAIL PROTECTED] wrote: Hello, i'm experiencing memory issues on the heap space. The guy that handle the server can't set the -XX:+HeapDumpOnOutOfMemoryError option in JAVA_OPTS of the catalina.sh file, since he get

TC as windows service - thread dump

2007-04-28 Thread Nikola Milutinovic
Hi all. This may have been asked before, but I couldn't find the answer. Perhaps it should be in the FAQ. I have installed TC 5.5 as Windows service. Tomcat Monitor application (the one that sits among tray icons) that is used to start, stop and configure service, also features a command

Keep session alive

2007-04-28 Thread lightbulb432
Is it possible for a Tomcat session keep the session alive for a certain period of time (say, 2 hours), but remove all objects within it after a default period of time (like half an hour)? This way the user doesn't have to re-login as per your usual session timeout but their session state doesn't

Re: Keep session alive

2007-04-28 Thread Rashmi Rubdi
On 4/28/07, lightbulb432 [EMAIL PROTECTED] wrote: Is it possible for a Tomcat session keep the session alive for a certain period of time (say, 2 hours), The session timeout interval is adjustable, see session-config under conf/web.xml Max inactive interval can also be specified in

Re: Keep session alive

2007-04-28 Thread lightbulb432
What would the cookie store? Username and password, just username, or something else? How can this be done in such a way as to prevent the user from changing the value within the cookie? Could you elaborate on what you meant by sessions not working when the browser caches a page? If a user

Re: Keep session alive

2007-04-28 Thread Rashmi Rubdi
On 4/28/07, lightbulb432 [EMAIL PROTECTED] wrote: What would the cookie store? A Cookie stores name, value pairs just like the Session. So you can store anything in a Cookie. But I think it may be a security concern to store the password in a Cookie. Username and password, just username,

unexpected session behavior in Tomcat 5.x

2007-04-28 Thread David
I'm hoping someone can shed light on some session anomalies I'm seeing with Tomcat 5.0.2.8 and Tomcat 5.5.23. I have a web application containing FacesServlet ( javax.faces.webapp.FacesServlet) as well as some additional servlets that also make use of the Faces Context. The normal flow is:

Re: unexpected session behavior in Tomcat 5.x

2007-04-28 Thread Rashmi Rubdi
On 4/28/07, David [EMAIL PROTECTED] wrote: I'm hoping someone can shed light on some session anomalies I'm seeing with Tomcat 5.0.2.8 and Tomcat 5.5.23. I have a web application containing FacesServlet ( javax.faces.webapp.FacesServlet) as well as some additional servlets that also make use of

Re: unexpected session behavior in Tomcat 5.x

2007-04-28 Thread David
Rashmi, Thanks for your initial response. I guess I wasn't clear on a few things. The behavior I'm seeing is the same in both Tomcat 5.0 and 5.5, and they are both configured the same -- using default behavior for cookies. I should elaborate further and mention that the urlEncode method causes

Re: unexpected session behavior in Tomcat 5.x

2007-04-28 Thread Rashmi Rubdi
On 4/28/07, David [EMAIL PROTECTED] wrote: Rashmi, Thanks for your initial response. I guess I wasn't clear on a few things. The behavior I'm seeing is the same in both Tomcat 5.0 and 5.5, and they are both configured the same -- using default behavior for cookies. Sorry for repeating this,

Re: how to reload WEB-INF dir?

2007-04-28 Thread Josh Joy
Thanks for the info. For my application, I am using Tapestry which uses html templates which I was having trouble to be reloaded by tomcat. What I ended up doing was to write an ant hotdeploy script to copy the files to my tomcat installation then have ant invoke the reload command on tomcat.

Re: how to reload WEB-INF dir?

2007-04-28 Thread Rashmi Rubdi
On 4/28/07, Josh Joy [EMAIL PROTECTED] wrote: Thanks for the info. For my application, I am using Tapestry which uses html templates which I was having trouble to be reloaded by tomcat. I don't know Tapestry, but when I write a normal JSP or HTML file, all I have to do is press the browsers

Re: unexpected session behavior in Tomcat 5.x

2007-04-28 Thread David
I've tried forcing the url rewriting behavior by deploying the following snippet in a context.xml file in my webapp's META-INF directory. Context path=/mywebapp debug=10 cookies=false !-- Default set of monitored resources -- WatchedResourceWEB-INF/web.xml/WatchedResource !--

Re: unexpected session behavior in Tomcat 5.x

2007-04-28 Thread Rashmi Rubdi
On 4/28/07, David [EMAIL PROTECTED] wrote: I've tried forcing the url rewriting behavior by deploying the following snippet in a context.xml file in my webapp's META-INF directory. Context path=/mywebapp debug=10 cookies=false !-- Default set of monitored resources --

Re: unexpected session behavior in Tomcat 5.x

2007-04-28 Thread Rashmi Rubdi
The above test was conducted on the Tomcat version I have which is not 5.0. If you check your code throughly and the problem still occurs in 5.0, you may want to file a bug --- only if you're sure it's a bug --- otherwise it will not be resolved , if it's not a bug :-) -Regards Rashmi

java.policy?

2007-04-28 Thread Martin Gainty
Evening All Anyone know where I can a working java.policy file for JBoss? (No domains configured yet) Thanks M-- This email message and any files transmitted with it contain confidential information intended only for the person(s) to whom this email message is addressed. If you have received

Re: how to reload WEB-INF dir?

2007-04-28 Thread Jessek
Hi Josh, During development ~only~ you can pass the following system property to the jvm running your web app and the templates will automatically pick up changes for you: -Dorg.apache.tapestry.disable-caching=true Don't leave it on in production but it should be fine for development.

RE: problem when changing code and deploying

2007-04-28 Thread is_maximum
Why did you think they would? Only .jsp files can be updated on the fly without restarting the application. oh no, I didnt mean on the fly? I restart the Tomcat but it still remain intact. this happens for static methods and static instance variables. -- View this message in context:

Context started twice

2007-04-28 Thread sc
There was a thread on this http://www.nabble.com/Context-starts-twice-t1351694.html;. But my configuration is a bit different. this is my configuration: server.xml doesn't have context definition. context.xml is empty except this line WatchedResourceWEB-INF/web.xml/WatchedResource under