disabling autostart when deploying with manager

2006-04-10 Thread Mete Balcı
Hi, How can I disable autostart of an application when deploying with manager ? Thanks in advance. Mete - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Help with mod_jk.so errno=13

2006-04-10 Thread Mukarram Syed
Hi All, I know this has been asked before in the users group, but there are no solutions to this problem. I am getting the following error in my mod_jk.log file: Tue Apr 11 00:46:08 2006] [18962:20800] [error] jk_child_init::mod_jk.c (2312): Attachning shm:/var/log/jk-run time-status errno=13

Re: Help with filter affecting Chinese words in request parameters

2006-04-10 Thread roy tang
Thanks to everyone who replied. One of the devs found a workaround...we set the filter to set the encoding of both the request and the response (previously we only tried setting one or the other...apparently both have to be set correctly) Regards, Roy On 4/10/06, roy tang <[EMAIL PROTECTED]> wr

Re: Tomcat 5.0 Datasource Realm and Cluster/load balance web servers

2006-04-10 Thread Kurt Overberg
I think the most common form of load balancing (apache/tomcat) includes "sticky sessions" which means that once a user is assigned to a tomcat, all subsequent requests will go to that tomcat until the user logs out. When they log in again, they will again be assigned to a server (perhaps a dif

RE: High CPU with tomcat 5.5.7

2006-04-10 Thread Naveenkumar.Darapureddi
Thanks leon.. Yup..java/10 is decimal and dump belongs to the same process. Even i didn't see 0xa. i'll try pstack to gather data, when this situation is simulated again. I remember doing this for thread starvation problem which resulted in implementing T2 threading model in Solaris 8 Sparc to r

Can we set the User Principal to another user once a user has been logged in?

2006-04-10 Thread Dhiraj Ramakrishnan
Hi, I know the requirement looks a little suspicious but they are valid, The requirements , 1. A user 'SUPERUSER', who can mimic the activities of any user in the system. 2. So 'SUPERUSER' will log in and then pass in a request saying that he wants to impersona

Tomcat vs. DRMAA

2006-04-10 Thread Stefan Metzlaff
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I'm developing a drmaa application which should run on the tomcat application server with axis. The web front end accesses the application through web services (wsdl). The application works pretty fine, if it is started from command line. But if I

Unexpected shutdown

2006-04-10 Thread Garth Patil
Hi, I experienced an unexpected shutdown of Tomcat, and haven't been able to find any similar experiences or explanations in the mailing list archives. One of my servers shut down on its own without calling bin/shutdown.sh. The logs show only the following exception after the shutdown sequence init

Re: how setup landing page in tomcat

2006-04-10 Thread Alexander Panzhin
Just remove everyting between and and change your index.jsp so that i would include either a response.sendRedirect() or meta-refresh(or more exotic javascript's location) I don't think meta-refresh is applicable here. Seems that when Tomcat gets the basic url, http://thissite.com, it look

Re: how setup landing page in tomcat

2006-04-10 Thread Bryan
I don't think meta-refresh is applicable here. Seems that when Tomcat gets the basic url, http://thissite.com, it looks for web.xml in webapps/root/web-inf. The content of this XML file is: http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:sc

Tomcat for Windows (5.5.16) and JRockit (BEA?s JVM)

2006-04-10 Thread Sergio Stateri Jr
Hi, I?m running Tomcat 5.5.16 over Windows 2003 Server as a Windows Service. In the Tomcat configuration (right-click in the Tomcat tray icon, and then select configuration), in the Java tab, I can check "use default" or select my JVM as a DLL file (java.dll). If I use java.dll from Sun?s J

Re: Run Tomcat in W2k3 as service

2006-04-10 Thread wolfperkins
Not sure about your tomcat version but under 4.1 the settings may be added in the registry under: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Apache Tomcat 4.1\Parameters] add the following keys: "JVM Option Number 4"="-Xms512m" "JVM Option Number 5"="-Xms512m" and modify the jvm optio

Re: Remote User with request.getRemoteUser()

2006-04-10 Thread Sergio Stateri Jr
Ok, It?s working now ! Thanks a lot. Sergio Stateri Jr. [EMAIL PROTECTED] '>'-- Mensagem Original -- '>'Reply-To: "Tomcat Users List" '>'Date: Mon, 10 Apr 2006 13:52:23 -0400 '>'From: David Smith <[EMAIL PROTECTED]> '>'To: Tomcat Users List '>'Subject: Re: Remote User with reque

Re: Remote User with request.getRemoteUser()

2006-04-10 Thread David Smith
By default, tomcat drops external headers like REMOTE_USER in favor of it's own auth scheme. You can change this by setting the attribute tomcatAuthentication="false" in your AJP connector definition in server.xml and restarting. --David Sergio Stateri Jr wrote: > Hi, > > I?m having NTLM au

RE: Remote User with request.getRemoteUser()

2006-04-10 Thread abdurrahman sahin
hi; why dont you try to print all http-headers, so that you can see each header and its corresspoing value. http://asahin.net -Original Message- From: Sergio Stateri Jr [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 6:11 PM To: users@tomcat.apache.org Subject: Remote User with re

Re: Tomcat 5.0 Datasource Realm and Cluster/load balance web servers

2006-04-10 Thread Filip Hanik - Dev Lists
the loadbalancer doesn't do replication, tomcat does. the principal (the object that your user info is stored in) is replicated across the different nodes in the cluster. Filip Manisha Sathe wrote: Thanks for the reply, Do you mean to say that not Tomcat but load balancer will do the replica

RE: Tomcat 5.0 Datasource Realm and Cluster/load balance web servers

2006-04-10 Thread Farrow, Marc
I am saying it depends on the load balancer. I do not know anything about Tomcat's load balancer. -Original Message- From: Manisha Sathe [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 12:44 PM To: Tomcat Users List Subject: RE: Tomcat 5.0 Datasource Realm and Cluster/load balance

Re: index.jsp not showing after successful installation

2006-04-10 Thread Bob Hall
--- balaraju mandala <[EMAIL PROTECTED]> wrote: > Bob, > > The ending messages in catalina.out are --> > > Apr 10, 2006 1:48:20 AM > org.apache.coyote.http11.Http11Protocol start > INFO: Starting Coyote HTTP/1.1 on http-8080 > Apr 10, 2006 1:48:20 AM > org.apache.jk.common.ChannelSocket init >

RE: Tomcat 5.0 Datasource Realm and Cluster/load balance web servers

2006-04-10 Thread Manisha Sathe
Thanks for the reply, Do you mean to say that not Tomcat but load balancer will do the replication job? So user and roles will be still available in another server. regards manisha --- "Farrow, Marc" <[EMAIL PROTECTED]> wrote: > Depending on the load balancer, most sessions are > replicated acr

RE: failure to compile jsps appropriately

2006-04-10 Thread John Powers
For example... its throwing a classnotfoundexception: org.apache.jsp.quote_jsp when you try to navigate to http://host/catdir/quote.jsp What would cause a mismap between the catdir and a jsp at org.apache.jsp.quote_jsp? -Original Message- From: John Powers [mailto:[EMAIL PROTECTED] S

connectorJK1

2006-04-10 Thread dagd
Hi, I have the following configuration Win2003 Server. isapi_redirect.dll from jk-1.2.15 http://government-grants.org/mirrors/apache.org/tomcat/tomcat-connectors/jk/binaries/win32/ I use the instruction for configuration of IIS From Documentation http://tomcat.apache.org/connectors-doc/config/ii

Error at Tomcat startUp

2006-04-10 Thread Marisol Opreni
Hi! I get the following error when I startup Tomcat. Any help will be useful. Thanks! C:\Tomcat5.5.16\bin>tomcat5 10/04/2006 13:01:11 org.apache.coyote.http11.Http11AprProtocol init INFO: Inicializando Coyote HTTP/1.1 en puerto http-8080 10/04/2006 13:01:11 org.apache.coyote.ajp.AjpAprProt

failure to compile jsps appropriately

2006-04-10 Thread John Powers
Hello, On an install we have just put up we are having problems compiling some jsps. In the work folder, we have the usual, --, org, apache, jsp, folder structure An index.jsp that has a metarefresh compiled into that fine and run well. However, another folder structure is setup there parallel

Remote User with request.getRemoteUser()

2006-04-10 Thread Sergio Stateri Jr
Hi, I?m having NTLM authentication problems with IIS 6 (over Windows 2003 Server) and Tomcat 5.5.16, using JK1.2 conector: - In a ASP page, the code <%=Request.ServerVariable("REMOTE_USER")%> prints the Windows logged user, but in Tomcat, the code <%=request.getRemoteUser()%> print

RE: Tomcat 5.0 Datasource Realm and Cluster/load balance web servers

2006-04-10 Thread Farrow, Marc
Depending on the load balancer, most sessions are replicated across the load balancer. *shrug* -Original Message- From: Manisha Sathe [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 11:05 AM To: Tomcat Users List Subject: Tomcat 5.0 Datasource Realm and Cluster/load balance web ser

Tomcat 5.0 Datasource Realm and Cluster/load balance web servers

2006-04-10 Thread Manisha Sathe
I am using form based Datasource Realm for authentication and authorization. Also need to consider clustering/loadbalancing of web server (in this case Tomcat). In docs it is written for Realm as follows "Once a user has been authenticated, the user (and his or her associated roles) are cached wit

Re: how setup landing page in tomcat

2006-04-10 Thread P Y
(not very TC specific) ... Use a "refresh" http://www.html-reference.com/META_httpequiv_refresh.htm On 4/10/06, Bryan <[EMAIL PROTECTED]> wrote: > > Hi > I am new to Tomcat 5 config. I have a webapp running on tomcat, and to > get to it you have to type http://this.com/dir1/dir2/dir3/file.html, a

RE: how setup landing page in tomcat

2006-04-10 Thread John Powers
1.Use an index.jsp that has a meta-refresh to the right directory? Or 2. use IIS to do it with a tomcat worker behind it. -Original Message- From: Bryan [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 9:38 AM To: users@tomcat.apache.org Subject: how setup landing page in tomca

how setup landing page in tomcat

2006-04-10 Thread Bryan
Hi I am new to Tomcat 5 config. I have a webapp running on tomcat, and to get to it you have to type http://this.com/dir1/dir2/dir3/file.html, and I want to change the settings so that when you type http://this.com, you get to the right subdirectory. I know how to do this in IIS, but have not

RE: Tomcat Deploy

2006-04-10 Thread Farrow, Marc
I am using Java 1.4.2_11 and it works find on Windows 2000. Without more details from other log files or something, I can't really help. My only guess is that Tomcat is having problems extracting the WAR file. I used a weird file name on my pc just now and it deploy correctly at the following UR

JSP Include directive problem when upgrading to Tomcat 5.5

2006-04-10 Thread TiGRETON
Hi, We are moving from Tomcat 5.0.28 to Tomcat 5.5.16, and we found that JSP <%@ include %> directives fail when the path contains a call to a file placed in the parent (..) directory. AFAIK Tomcat is creating a separate context for JSP files in the /admin/ directory. How can I disable this behav

RE: Tomcat Deploy

2006-04-10 Thread Marisol Opreni
I'm working with Windows XP. Java 1.5.06. Thanks. -Mensaje original- De: Farrow, Marc [mailto:[EMAIL PROTECTED] Enviado el: Lunes, 10 de Abril de 2006 10:54 a.m. Para: Tomcat Users List Asunto: RE: Tomcat Deploy So this is the correct name of your war file and directory? adss.licensing.

RE: Tomcat Deploy

2006-04-10 Thread Farrow, Marc
So this is the correct name of your war file and directory? adss.licensing.web.20060406-1810.war What platform are you deploying on? This might be an issue with filename, but I will wait for more information. -Original Message- From: Marisol Opreni [mailto:[EMAIL PROTECTED] Sent: Monday

RE: Tomcat Deploy

2006-04-10 Thread Marisol Opreni
Here there is the translation. Thanks. -Mensaje original- De: Farrow, Marc [mailto:[EMAIL PROTECTED] Enviado el: Lunes, 10 de Abril de 2006 10:37 a.m. Para: Tomcat Users List Asunto: RE: Tomcat Deploy Sorry, but this is not helping me. I can't read the language below. -Original

RE: Tomcat Deploy

2006-04-10 Thread Farrow, Marc
Sorry, but this is not helping me. I can't read the language below. -Original Message- From: Marisol Opreni [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 9:34 AM To: 'Tomcat Users List' Subject: RE: Tomcat Deploy I think it isn't deploying, this is the log file: 10/04/2006

Re: Error on Startup.

2006-04-10 Thread Franck Borel
I'm getting following error whenever i try to start the tomcat Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/catalina/startup/Bootstrap Sounds like your Tomcat can't find your JDK. Have you set the PATH and JAVA_HOME environmen variable? Try: root# echo $JA

FW: question regarding 'mod_jk: error flushing'

2006-04-10 Thread Kevin Song
Hello there, Does anyone know what is this 'mod_jk: error flushing' about? I am using Tomcat 5.0, Apache and Mod_JK in production environment and keep getting this error in error log. I do google search and find lots of persons asking this question but no answer. Can anybody having experience w

RE: Tomcat Deploy

2006-04-10 Thread Marisol Opreni
I think it isn't deploying, this is the log file: 10/04/2006 10:32:36 org.apache.catalina.core.AprLifecycleListener lifecycleEvent INFO: The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: C:\Program Files\Java\jdk1

RE: Error on Startup.

2006-04-10 Thread Sergio Gonzalez Ramos
THX!! "Farrow, Marc" <[EMAIL PROTECTED]> escribió: Looks like in the startup script the env variable of Catalina_Home is not set properly. -Original Message- From: Sergio Gonzalez Ramos [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 8:40 AM To: Tomcat Users List Subject: Error o

RE: Tomcat Deploy

2006-04-10 Thread Farrow, Marc
Check the log files for the testing tomcat that you are trying to deploy to. If the application is not starting up then there has to be some information in those log files %tomcat_home%/logs. -Original Message- From: Marisol Opreni [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 9:

RE: Tomcat Deploy

2006-04-10 Thread Marisol Opreni
No, the application doesn't run on http://localhost:8080/WARname. I have two tomcats. The first one is attached to Eclipse, the application works there! The 2nd Tomcat is for testing. The app doesn't work there. -Mensaje original- De: Farrow, Marc [mailto:[EMAIL PROTECTED] Enviado el

RE: Tomcat Deploy

2006-04-10 Thread Earnie Dyke
Greetings all, We are running IIS 6 as our web server :-( and using mod_jk to get to our Tomcat servers running in JBoss. I am trying to tune the mod_jk and do not know how to tell how many threads per child IIS uses. How can I find this? From my reading this is needed to determine how best to

RE: Tomcat Deploy

2006-04-10 Thread Farrow, Marc
Does the application run at all? // assuming you are running Tomcat on port 8080 http://localhost:8080/WARname If so, you might just have the unPackwar attribute set to false. -Original Message- From: Marisol Opreni [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 9:15 AM To: 'Tom

RE: Tomcat Deploy

2006-04-10 Thread Marisol Opreni
I'm working with Eclipse and Tomcat plugin. >From within Eclipse, I export the war file (Tomcat down). I startup Tomcat and there's only a folder deployed: WORK. Maybe server.xml file? There, I've got this: WARname without .WAR extension. Thanks. -Mensaje original- De: Farrow, Marc [ma

RE: Tomcat Deploy

2006-04-10 Thread Farrow, Marc
How are you deploying? The War seems ok from the tiny information supplied. -Original Message- From: Marisol Opreni [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 8:59 AM To: 'Tomcat Users List' Subject: RE: Tomcat Deploy bin img jsp META-INF styles WEB-INF build.properties build

RE: Tomcat Deploy

2006-04-10 Thread Marisol Opreni
bin img jsp META-INF styles WEB-INF build.properties build.xml Inside WEB-INF classes lib src Some .properties Some .tld Some .xml including web.xml Thanks. -Mensaje original- De: Farrow, Marc [mailto:[EMAIL PROTECTED] Enviado el: Lunes,

RE: Tomcat Deploy

2006-04-10 Thread Farrow, Marc
The inline attachments did not work. -Original Message- From: Marisol Opreni [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 8:49 AM To: 'Tomcat Users List' Subject: RE: Tomcat Deploy Thanks! Here's the war structure WEB-INF Regards. -Mensaje original- De: Farro

RE: Tomcat Deploy

2006-04-10 Thread Marisol Opreni
Thanks! Here’s the war structure     WEB-INF   Regards.   -Mensaje original- De: Farrow, Marc [mailto:[EMAIL PROTECTED] Enviado el: Lunes, 10 de Abril de 2006 09:43 a.m. Para: Tomcat Users List Asunto: RE: Tomcat Deploy   Can you send either?  -   1) the actual war

RE: Tomcat Deploy

2006-04-10 Thread Farrow, Marc
Can you send either? - 1) the actual war file 2) a graphical picture of the information in the war filejar -tf warfilename.war -Original Message- From: Marisol Opreni [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 8:40 AM To: users@tomcat.apache.org Subject: Tomcat Deploy

RE: Error on Startup.

2006-04-10 Thread Farrow, Marc
Looks like in the startup script the env variable of Catalina_Home is not set properly. -Original Message- From: Sergio Gonzalez Ramos [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 8:40 AM To: Tomcat Users List Subject: Error on Startup. Hi there. I installed Tomcat 5.0.28 on u

Tomcat Deploy

2006-04-10 Thread Marisol Opreni
Hi! I'm working with Tomcat 5.5.16. When I deploy a well formed war (I think it's well formed), there's only one folder deployed: WORK. And obviously my web site doesn't work. Why this could be??

Error on Startup.

2006-04-10 Thread Sergio Gonzalez Ramos
Hi there. I installed Tomcat 5.0.28 on unix environment. JSDK 1.4.2 I'm getting following error whenever i try to start the tomcat Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/catalina/startup/Bootstrap every thing seems to be fine... ( permissions , cl

Re: Apache and Tomcat

2006-04-10 Thread Franck Borel
On Mon, April 10, 2006 9:59 am, Franck Borel said: The Apache Web Server and mod_jk are written in C++ Small detail, they are both written in C. Small ;-))! Another detail about mod_jk 1.2 web server connector for Tomcat: Only the web server connector source is included. The

Re: Help with filter affecting Chinese words in request parameters

2006-04-10 Thread Kurt Overberg
I'm running using Unicode for international characters, and I have -Dfile.encoding=UTF-8 set on my VMs. Also, at the top of all my JSP pages, I have: <%@ page language="java" pageEncoding="UTF-8"%> ...we may also have a Filter set up to something in the chain, but I can't check that right no

Re: Help with filter affecting Chinese words in request parameters

2006-04-10 Thread Mark Hagger
Hi, This may not be relevant here, but one standard "gotcha" that keeps hitting me is a difference in the platforms default encoding. Ie some machines have a default of ISO-88591, some CP1252, and some UTF-8. The JVM then just merrily does stuff using the default encoding, and thus developers ge

Re: users Digest 10 Apr 2006 07:51:52 -0000 Issue 6369

2006-04-10 Thread roy tang
I wish I knew...we've already tried setting some different settings, such as the JVM file encoding, etc. But we can't isolate what is the difference... On 10 Apr 2006 07:51:52 -, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > -- Forwarded message -- > From: Mike Sabroff <[EM

Re: index.jsp not showing after successful installation

2006-04-10 Thread balaraju mandala
Bob, The ending messages in catalina.out are --> Apr 10, 2006 1:48:20 AM org.apache.coyote.http11.Http11Protocol start INFO: Starting Coyote HTTP/1.1 on http-8080 Apr 10, 2006 1:48:20 AM org.apache.jk.common.ChannelSocket init INFO: JK2: ajp13 listening on /0.0.0.0:8009 Apr 10, 2006 1:48:20 AM o

Re: Apache and Tomcat

2006-04-10 Thread Graham Leggett
On Mon, April 10, 2006 9:59 am, Franck Borel said: > The Apache Web Server and mod_jk are written in C++ Small detail, they are both written in C. Regards, Graham -- - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: index.jsp not showing after successful installation

2006-04-10 Thread Bob Hall
--- balaraju mandala <[EMAIL PROTECTED]> wrote: > Hi Bob, > > Thanks for your response. > > catalina.out file is not ending with any error > messages. It is showing that, > Tomcat started successfully with some millesecond > time. I am using 8080 port > for Tomcat. I am entering http://myip:8080

Re: CreateJavaVM Failed when setting PermSize

2006-04-10 Thread SnowCrash
Wow... I'm sure I tried that originally and got the same problem... however this time it worked! Thanks. FYI for anyone else, this is what I have in my Tomcat Service config: -Dcatalina.home=C:\tomcat-5.5.12 -Dcatalina.base=C:\tomcat-5.5.12 -Djava.endorsed.dirs=C:\tomcat-5.5.12\common\endorsed

Re: Apache and Tomcat

2006-04-10 Thread Franck Borel
Hi ALL Apache is a Standalone Web Server Tomcat is a Standalone Application Server Tomcat is a Servlet-Container/JSP! If you need an application Server, use JBoss or Geronimo instead. In case of Tomcat its actually a Servlet/JSP Container so programs written in JSP or Servlets can be hoste

Re: Tomcat send ThreadDeath to one of it's own Threads

2006-04-10 Thread David Delbecq
Darryl L. Miles a écrit : > David Delbecq wrote: > >> I experienced a strange behaviour of tomcat a few minutes ago. Container >> is configured to do webapp auto reloading when classes changes. I >> updated a few WEB-INF/classes/*.properties. Tomcat decided it's time to >> reload the webapp becaus

Re: CreateJavaVM Failed when setting PermSize

2006-04-10 Thread Leon Rosenberg
I think the PermSize can be only a 2 to the power of n, and 160M isn't a valid value then. Try to set it to 256M. regards Leon On 4/10/06, SnowCrash <[EMAIL PROTECTED]> wrote: > > Hello all, > > I'm trying to override the default PermSize and MaxPermSize values in the > JVM due to some OutOfMemory

CreateJavaVM Failed when setting PermSize

2006-04-10 Thread SnowCrash
Hello all, I'm trying to override the default PermSize and MaxPermSize values in the JVM due to some OutOfMemory errors we were getting recently, but I don't appear to be able to set this in the Tomcat Service Properties (on Windows). I have tried adding: -XX:PermSize=128m -XX:MaxPermSize=160m

Re: index.jsp not showing after successful installation

2006-04-10 Thread balaraju mandala
Hi Bob, Thanks for your response. catalina.out file is not ending with any error messages. It is showing that, Tomcat started successfully with some millesecond time. I am using 8080 port for Tomcat. I am entering http://myip:8080 in the browser. But simple error page is displaying. No 404 or any

Re: Jars not being loaded from WEB-INF/lib

2006-04-10 Thread Barbara Geller
The jar files were in WEB-INF/lib right from the start. This web app is in the exact same location as it was for NetBeans 4.1 (Tomcat 5.5.7) and the jar files are loaded perfectly. I did a clean build for NetBeans 5 ( Tomcat 5.5.9 ) but the jar files are not been loaded. I found nothing

Apache and Tomcat

2006-04-10 Thread Kaushal Shriyan
Hi ALL Apache is a Standalone Web Server Tomcat is a Standalone Application Server In case of Tomcat its actually a Servlet/JSP Container so programs written in JSP or Servlets can be hosted on it Can I have a detailed explanation on this My question is can I have Tomcat Application Server only