about HttpSession on TOMCAT

2003-02-03 Thread randie ursal
hi list, does too many HttpSession created on the Servlet container (TOMCAT) affect its performance? Since i have this application that doesn't explicitly invalidate the HttpSession created but instead just let the Servlet container invalidate this one when it TIMEOUT. thanks. randie

Tool for HTTP Request Stress Test

2003-01-17 Thread randie ursal
Hi, can anyone suggest an HTTP Stress Test tool. coz i wanna stress test my web application which is deployed on Tomcat. thanks. -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Using Zip file instead of TAR file

2002-11-27 Thread randie ursal
in NT, but that's about it. randie ursal wrote: hi list, is it ok if i installed on a Solaris machine the ZIP version of Jakarta-Tomcat-4.0 and not the TAR GZ file? actually i already installed and used it...so far i haven't got any problem. is there a difference between this releases

Re: Using Zip file instead of TAR file

2002-11-27 Thread randie ursal
does it mean, there's a fixed no. of log files ang previous log files will not be cleanup by Tomcat, it will just rotate? Kwok Peng Tuck wrote: By default logs are rotated on a daily basis. randie ursal wrote: thanks...but i noticed something with the log files. it wasn't been deleted

Re: Using Zip file instead of TAR file

2002-11-27 Thread randie ursal
that way. I'm not sure if you can change the behaviour of this. I personally wouldn't like to look at one huge file. randie ursal wrote: does it mean, there's a fixed no. of log files ang previous log files will not be cleanup by Tomcat, it will just rotate? Kwok Peng Tuck wrote: By default

Using Zip file instead of TAR file

2002-11-27 Thread randie ursal
hi list, is it ok if i installed on a Solaris machine the ZIP version of Jakarta-Tomcat-4.0 and not the TAR GZ file? actually i already installed and used it...so far i haven't got any problem. is there a difference between this releases?..is ZIP version file just for Windows OS or it can

how to STOP TOMCAT LOGGING

2002-11-09 Thread randie ursal
hi list, how can i disable logging on TOMCAT? i have a tomcat on a Solaris 8.0 machine, and when i look at the logs folder the log files from previous months was not erased. so, if this is going on for so long there's a tendency that my disk space will be full. BTW, im using

Waht are the applicationss invoke when start Tomcat

2002-10-03 Thread randie ursal
hi list, does anyone have an idea what are the applications that runs when catalina.sh run is executed? because i'm planning of making an Application Management System that would keep track of the Tomcat Server as it runs, so that if something abnormal happen i can have a proper

IE browser doesn't give error

2002-09-19 Thread randie ursal
hi, sorry for asking about this but i still haven't found a solution on why this is happening. i try to make an abnormal scenario on my web application, here it is: I first access my web application and do some operation, then in the middle of my transaction i disconnect the

session timeout on Tomcat

2002-09-11 Thread randie ursal
hi, could somebody explain to me what possibly went wrong about my application. what i did was, i set the maxInactiveIinterval time for 30 secs. on my servlet then i added to my HttpSession object an object that implements HttpSessionBindingListener so that i can keep track and see

Re: session timeout on Tomcat

2002-09-11 Thread randie ursal
shared the session which is what the session id being the same suggests. Use two physicly separate computers (KVM switch ok) to do the same test to be absolutely sure that this is still happening (it won't :) d. randie ursal wrote: hi, could somebody explain to me what possibly went

Re: SSL in Tomcat

2002-09-03 Thread randie ursal
the site is running. This is kind of a check that the certificate is coming from the same server on which the site is running, because if it is coming from another server then it could be fraud. cheers Tathagat -Original Message- From: randie ursal [mailto:[EMAIL PROTECTED]] Sent: Tuesday

SSL in Tomcat

2002-09-03 Thread randie ursal
hi, sorry for this off the list topic but i really need some idea. when i created my self-signed certificate using keytool to make SSL available in Tomcat i specify in my certificate information ex. keytool -genkey -dname CN=Mark Smith, OU=JavaSoft, O=Sun, L=Cupertino,

multiple certificate on Tomcat

2002-09-03 Thread randie ursal
just a follow up on my previous question. is it possible to have multiple certificate on Tomcat server, and still be able to make use both successfully? because i tried implementing it using the certificate generated by keytool. what happen is that only the first certificate on the default

Re: need some idea

2002-09-03 Thread randie ursal
in memory is still valid) If the user closes the browser though - this would reset the credentials (should they have had to logon)... And reset the temp cookies used for session state information. Hope this helps. -Original Message- From: randie ursal [mailto:[EMAIL PROTECTED]] Sent: 03

Re: Can't find resource for bundle java.util.PropertyResourceBundleexception

2002-09-03 Thread randie ursal
place your resources on the default directories where tomcat look for them.. example in the WEB-INF/classes directory of your wepapplication. hope this helps. randie [EMAIL PROTECTED] wrote: Anyone has an idea what could be the cause of the following exception: Can't find resource for

need some idea

2002-09-03 Thread randie ursal
hi, i'm trying to get a some explanation/idea about this... what will happen if for example a client access my webserver then i would disconnect the network cable for about 10 minswhat will happen if i connect it again an continue accessing? would i have a new session or what other

specify session timeout

2002-09-03 Thread randie ursal
hi, can i specify a session timeout value in Tomcat? if yes, how? i've done it but it is on the servlet side part, i want if possible to set it on the web server. so that i would have a centralized session time for my web application. thanks in advance randie -- To

Re: Help with Tomcat 3.3.1 and IIS 5.0

2002-08-29 Thread randie ursal
the \classes directory must be inside the \WEB-INF directory. ex. webapps\ch03\WEB-INF\classes Marisol Encalada-Malibran wrote: Hi, I also need some help with Tomcat, I have installed Tomcat 3.3 with IIS 5.0, I have been working in the examples folder under webapps but now I want to

setting classpath variable

2002-08-27 Thread randie ursal
hi, i have this newbie question. here is the scenario, i have a servlet that will read a .properties file and i make use of PropertyResourceBundle to read the value from it. the problem is that the PropertyResourceBundle doesn't find the properties file. the API for ResourceBundle

Re: Loading properties files

2002-08-27 Thread randie ursal
why is it tomcat could not locate the property file if i place it on the package directory structure of my servlets?...it is still on the WEB-INF/classes directory isnt it? just need some more clarifications. e.g WEB-INF/classess/com/test/MyProperty.properties thanks Alan Tingley - Iperia

Re: PropertyResourceBundle problems

2002-08-27 Thread randie ursal
i have that same problem, and i solve it through the efforts of some people on this list. i just place my property file on WEB-INF/classes of my web application...that's it everything works fine now. =)...no need to place it on other repositories. this is my code in reading the property