JSP cannot find classes when app not under webapps.

2003-01-29 Thread Haytham Samad
Not sure this is a STRUTS question, but I am using STRUTS to implement this application and there might be somethign going on there that I am not aware of. This is what I am using: Struts 1.1b, Tomcat 4.1, J2SDK1.4.1. I have my jsp's installed under WEB-INF\jsp and my application is placed in a

Web App Classloader..How?

2003-01-29 Thread Haytham Samad
I have a question regarding how the web application loader works. Especially when my application is not deployed under tomcat home/webapps in Tomcat 4.1.x. This is the situation. Tomcat is installed on drive C: on the server and I have my application deployed on drive D. This is the a

RE: Web App Classloader..How?

2003-01-29 Thread Haytham Samad
the files (which I am pretty sure it will be called) your classes can be loaded from whichever location you like. I hope that helps. ~Sumit -Original Message- From: Haytham Samad [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 1:53 PM To: Tomcat Users List Subject: Web App

RE: Web App Classloader..How?

2003-01-29 Thread Haytham Samad
Yoav, I was deploying using WARs with an ant task. Pretty cool. But when I move the files to the directory I am deploying in, it does not open the WAR. So now I am unpacking the war in that directory. This deploy is not in webapps!! Or is there a way to make Tomcat open up WAR files in

RE: Problem with tomcat4 at win 2000 - not work JSP

2003-01-29 Thread Haytham Samad
What version of Tomcat are you using? It also seems that you are using JRE instead of JDK. I think you will need the JDK. best... -Original Message- From: Julio Oliveira - Buenos Aires [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 2:56 PM To: Tomcat Users List Subject:

Remote Restart Tomcat 4.1.8

2003-01-30 Thread Haytham Samad
Is it possible to restart or shutdown/start Tomcat remotely? Thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Memory configuration for Tomcat

2003-02-03 Thread Haytham Samad
Hi All, I wanted to tweak the way tomcat (well, JVM in which tomcat runs) uses memory. I read somewhere in previous messages on the mail-archive that the following entry for CATALINA_OPTS=-server -Xss128k -Xms256m -Xmx256 basically optimizes the heap size and thread stack size. I am not sure

RE: web.xml question

2003-02-03 Thread Haytham Samad
Hi, I think you need to change your url to the following: http://localhost:8080/test/servlets/SessioinTest or change servlets to servlet, not sure which at this point. This is basically how you call a servlet that is not mapped to a specific url pattern in your web.xml config file. I am

RE: web.xml question

2003-02-03 Thread Haytham Samad
Tim, Thanks for the clarification there. I have not used this in a while since I typically map my servlets to a url. Haytham -Original Message- From: Haytham Samad [mailto:[EMAIL PROTECTED]] Sent: Monday, February 03, 2003 4:47 PM To: Tomcat Users List Subject: RE: web.xml question

RE: Tomcat startup question

2003-02-03 Thread Haytham Samad
Is it pickign up the same port to start up the other instances? 8080? or another port? It should give an error if it is configured to only pick up port 8080? -Original Message- From: Kenny G. Dubuisson, Jr. [mailto:[EMAIL PROTECTED]] Sent: Monday, February 03, 2003 3:36 PM To: Tomcat

RE: Memory issue with Tomcat/4.0.3

2003-02-13 Thread Haytham Samad
I am not sure what -Xingcg is? I am assuming you are using the incremental garbage collector though. This will only make the gc be done incrementally as the name indicates and it might not be able to keep up with object creation as your application is running. There are other things going on as

Tomcat NT Service with IIS issues.

2003-02-17 Thread Haytham Samad
Hi, I had Tomcat 4.1.8 and IIS configured with the isapi redirector dll working fine. When I uninstalled tomcat using tomcat.exe and reinstalled it with a modified configuration (just added some jvm arguments to better handle garbage collection) the redirectory stopped working with the following

RE: Tomcat Windows 2000 / IIS 5 installation

2003-02-18 Thread Haytham Samad
check this url out! http://www.onjava.com/pub/a/onjava/2002/12/18/tomcat.html Cheers, Haytham -Original Message- From: Stanley Tan Boon Keat [mailto:[EMAIL PROTECTED]] Sent: Monday, February 17, 2003 8:06 PM To: Tomcat Users List Subject: Re: Tomcat Windows 2000 / IIS 5 installation

RE: TomCat to run with the IIS locally

2003-02-18 Thread Haytham Samad
Check this site: http://www.onjava.com/pub/a/onjava/2002/12/18/tomcat.html It provides an excellent explanation on how to do this. Cheers, Haytham -Original Message- From: Edemilson Aguiar [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 18, 2003 1:53 PM To: 'Tomcat Users List'

How To Unit Testing Tomcat Datasource

2003-02-19 Thread Haytham Samad
I have set up a datasource in Tomcat's server.xml using dbcp. It works fine, I get connections connect to the database, etc. Now, I am in the process of putting together quite a bit of DAO code and would like to unit test each call as I am going through the coding using my JUnit tests. How can

RE: Free utility for installing and managing Tomcat as a WindowsService

2003-02-19 Thread Haytham Samad
David, Thanks for sharing this information. It will sure come handy as I am forced to interoperate IIS 5.0 with Tomcat. Haytham -Original Message- From: David Boyer [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 19, 2003 9:51 AM To: [EMAIL PROTECTED] Subject: Free utility for

RE: How To Unit Testing Tomcat Datasource

2003-02-19 Thread Haytham Samad
, 2003 12:14 PM To: [EMAIL PROTECTED] Subject: RE: How To Unit Testing Tomcat Datasource Always use java:comp/env/yourdatasource Regards, PQ This Guy Thinks He Knows Everything This Guy Thinks He Knows What He Is Doing -Original Message- From: Haytham Samad [mailto:[EMAIL PROTECTED

RE: How To Unit Testing Tomcat Datasource

2003-02-19 Thread Haytham Samad
: Haytham Samad [mailto:[EMAIL PROTECTED]] Sent: February 19, 2003 1:30 PM To: Tomcat Users List Subject: RE: How To Unit Testing Tomcat Datasource PQ, Thanks for the reply. I actually use that in my factory class to connect to JNDI, get the datasource and use it to create connections for my database

RE: Tomcat 3.3.1a Install Windows 2000 Service

2003-02-24 Thread Haytham Samad
Check this link out on apache's site: http://jakarta.apache.org/tomcat/tomcat-3.3-doc/NT-Service-howto.html There are various tools out there. I read a posting that listed this site: http://web.bvu.edu/staff/david/tcservcfg/ If you run a search on google you will find a bunch and if you

Tomcat Scalability

2003-03-03 Thread Haytham Samad
I have searched in the mail archive and did not find a comprehansive answer to the settings one needs to look for to make sure Tomcat scales with an increasing number of users. I have read about the tweaks that can be made to the JVM to make the GC work more efficiently and allocating enough

RE: Tomcat Manager

2003-03-03 Thread Haytham Samad
) that you have udpated without restarting Tomcat. Hope this helps. Haytham Samad Application Developer DePaul University -Original Message- From: Brewer, Michael [mailto:[EMAIL PROTECTED] Sent: Monday, March 03, 2003 3:13 PM To: [EMAIL PROTECTED] Subject: Tomcat Manager I just installed

RE: Tomcat Scalability

2003-03-19 Thread Haytham Samad
that the way the application works and its design is scalable and efficient are well taken. Thanks again, Haytham Samad -Original Message- From: Chakravarthy, Sundar [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 10:48 AM To: Tomcat Users List Subject: RE: Tomcat Scalability

Tomcat in JBoss setup with IIS

2003-09-15 Thread Haytham Samad
Okay. I am trying to setup Tomcat with IIS. I have done this before successfully with Tomcat standalone. Now I have to use JBoss with Tomcat embedded (jboss-3.2.1_tomcat-4.1.24). The configuration is not working so well nor does it map as nicely. Anywhere I can look to get a description of

JBoss embedded Tomcat setup with IIS

2003-09-15 Thread Haytham Samad
Okay. I am trying to setup Tomcat with IIS. I have done this before successfully with Tomcat standalone. Now I have to use JBoss with Tomcat embedded (jboss-3.2.1_tomcat-4.1.24). The configuration is not working so well nor does it map as nicely. Anywhere I can look to get a description of

JBoss embedded Tomcat setup with IIS - 2nd post

2003-09-15 Thread Haytham Samad
Okay. I am trying to setup Tomcat with IIS. I have done this before successfully with Tomcat standalone. Now I have to use JBoss with Tomcat embedded (jboss-3.2.1_tomcat-4.1.24). The configuration is not working so well nor does it map as nicely. Anywhere I can look to get a description of