Fwd: Out of Memory when compiling JSP (Struts app on Tomcat 4.1.27)

2005-01-06 Thread chachany
Hi all I'm working on an application currently that is experiencing some intermittent memory problems when installed onto our "integration test" server, but not on the development staff's local laptops. I have attempted to increase the maximum memory available to Tomcat by creating a global envir

I think I have a scope problem....

2004-10-22 Thread ChaChaNY
All I'm using the tag to get a value out of the Session scope as follows... I seem to be getting the wrong value, however when I grab the object into a local variable However, if I do THIS, I get the correct value CurrentStatusBean status = (CurrentStatusBean) session.getAttribute(""); s

XML Parse Error in Validation.xml

2004-09-29 Thread ChaChaNY
Hi all I'm using the 1.2.4 distribution of Struts (upgraded from 1.2.2 because of the known issues). I'm using the distribution exactly as it came, and I see that validation.xml is causing problems. I'm getting the following error. It's pretty obvious why this is happening as all the elements are

Fwd: Checking a cookie or redirecting - best way?

2004-09-21 Thread ChaChaNY
Addendum: Currently I have the followign in my JSP and this in my Action class String cookieValue = new java.util.Date().toString(); Cookie c = new Cookie ("validUser", cookieValue);//FIXME make more useful c.setMaxAge(3600*24); //FIXME make a parameter later response.addCookie(