Re: Tomcat - Automatically writes a session?

2004-01-20 Thread neal cabage
Unfortunately this isn't working either. In addition to the [EMAIL PROTECTED] session=false% directive in my JSP, I have also set the cookies=false attribute in my server.xml file, for the host in question. It is *still* happening! Perhaps this is a Tomcat bug, as previously suggested?

Re: Tomcat - Automatically writes a session?

2004-01-20 Thread neal cabage
. -- -Tim neal cabage wrote: Unfortunately this isn't working either. In addition to the session=false%directive in my JSP, I have also set the cookies=false attribute in my server.xml file, for the host in question. It is *still* happening

RE: Tomcat - Automatically writes a session?

2004-01-20 Thread neal cabage
of 'meta' page (like header.jsp or login.jsp or footer.jsp) which are included in any number of other pages. As for filters, people are referring to any javax.servlet.Filter classes you may have written. -Original Message- From: neal cabage [mailto:[EMAIL PROTECTED] Sent: Tuesday

RE: Tomcat - Automatically writes a session?

2004-01-20 Thread neal cabage
cookie sent to you, as they are sent to you, including jsessionid 'session' cookies. -Original Message- From: neal cabage [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 20, 2004 5:00 PM To: Tomcat Users List Subject: Re: Tomcat - Automatically writes a session? Which tool

javax.net.ssl.SSLHandshakeException: Could not find trusted certificate

2004-01-14 Thread neal cabage
I went through th process of applying the new Level 2 3 certs to my cacerts file using the Java Keytool and the output of the keytool seems to have implied this was done correctly but I'm still getting the same error when attempting to retrieve a document over https (SSL):

Re: RES: javax.net.ssl.SSLHandshakeException: Could not find trusted certificate

2004-01-13 Thread neal cabage
What page at Verisign were you reading this from? Thanks. Neal Mauro Pencov [EMAIL PROTECTED] wrote:I was reading in the site of the Verisign, I found the page that offers for download Intermediate CA, but this would be used for Apache. And in tomcat? Somebody already it made this in the

global.asa - Web.xml

2003-12-15 Thread neal cabage
I'm trying to do something as simple as define global constants for my JSP application. In ASP there is a Global.asa file and the closest thing in JSP is of course the web.xml file. I defined a value in my web.xml file and assumed I could retrieve it using the following line: String test =

RE: global.asa - Web.xml

2003-12-15 Thread neal cabage
Oops, you're right that line would not have compiled...I meant I use this: DataSource ds = (DataSource) new InitialContext().lookup(application.getInitParameter(db.jndi.dsn)); ...to get a datasource values and assumed the similar line would work for retrieving a String: String str =

Re: global.asa - Web.xml

2003-12-15 Thread neal cabage
Ah, thanks Ben. Yes, I tried what I wrote prior and also tried application.getAttribute ... but didn't realize there was a getInitParameter() method. That did the trick. Thanks. N Ben Souther [EMAIL PROTECTED] wrote: In your web.xml file: city_name NY In your JSP City: On

RE: Garbage Collection issues

2003-12-01 Thread neal cabage
When I said that surely it can't be a memory leak in my app I was operating under the assumption that the JRE runs garbage collection periodically anywayis this not true? If I was waisting resources and not releasing them in a way that the GC could take them back when it runs

How to monitor RAM Usage

2003-11-14 Thread neal cabage
Does anyone know how I can montior RAM usage/availability on Tomcat at any given time? I'm currently having a problem wherein Tomcat crashes about once per week and gives the error Java.error.OutOfMemory but I can't see any diagnostics by which to establish any patterns. I also can't find

RE: How to monitor RAM Usage

2003-11-14 Thread neal cabage
().freeMemory() Nathan McMinn Application Developer NequalsOne - HealthCare marketing tools mailto:[EMAIL PROTECTED] http://www.NequalsOne.com -Original Message- From: neal cabage [mailto:[EMAIL PROTECTED] Sent: Friday, November 14, 2003 1:07

Re: How to monitor RAM Usage

2003-11-14 Thread neal cabage
Thanks. Out of curiosity, what sort of RAM allocations would you typically do on a production UNIX machine? Obviously I don't want to use up all of my memory, but this and mySQL are my only two production apps. ' Thanks. Neal James Black [EMAIL PROTECTED] wrote: neal cabage wrote: I'm