Re: Regarding 1 Webserver Multiple Web App project

2009-11-14 Thread Elli Albek
Tomcat by itself as a web server can do that without too much complexity. If you use something in front of it, then that something need to know which domains go to tomcat as well. You don't necessarily need to front tomcat with apache/AJP. You can have tomcat be the web server as well, or front it

Re: Regarding 1 Webserver Multiple Web App project

2009-11-14 Thread André Warnier
Henry Loke wrote: Which method is good to support 1 WebServer with Multiple Web App project? Same answer as for the same question on the Apache httpd forum. - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For add

Re: Regarding 1 Webserver Multiple Web App project

2009-11-14 Thread André Warnier
Henry Loke wrote: Can you give me the link to Tomcat docs? http://lmgtfy.com?q=tomcat+docs - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org

Re: Tomcat really need Shutdown port

2009-11-14 Thread Ziggy
You can use "netstat -a" to see if the Tomcat port number is listening. On Sat, Nov 14, 2009 at 4:09 PM, SRamasamy wrote: > > >>That's bad; each time the user clicks the link a new instance of Tomcat > will start, all but the first of which will die due to port conflicts. > Sloppy, at best. Yo

Re: Tomcat common/lib

2009-11-14 Thread Ziggy
The problem i had with the Oracle specific functions is that they only work if the connection object is of a oracle.jdbc.driver.OracleConnection type. I am using Oracle Specific Types which i found are just a pain to use with Java because they cause lots of issues one of them being interfacing wit

RE: Dedicated Thread Pool

2009-11-14 Thread Caldarale, Charles R
> From: Mohsen Saboorian [mailto:mohs...@gmail.com] > Subject: Re: Dedicated Thread Pool > > Chuck, how can I bind the new to a different webapp > directory? You can't, unless you create an additional and - which is likely more trouble than it's worth. Just use the alternate port when runnin

Re: Dedicated Thread Pool

2009-11-14 Thread Mohsen Saboorian
Thanks for the answers. Chuck, how can I bind the new to a different webapp directory? Mohsen On Sat, Nov 14, 2009 at 8:26 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: Mohsen Saboorian [mailto:mohs...@gmail.com] > > Subject: Dedicated Thread Pool > > > > Is this poss

Re: Dedicated Thread Pool

2009-11-14 Thread Juha Laiho
Mohsen Saboorian wrote: I have a web application in Tomcat 6 which goes out of thread (thread starvation) after working some hours. Now I want to install a monitoring tool which is a webapp itself installed inside tomcat webapp folder. Is this possible to devote a special threadpool to one web ap

RE: Dedicated Thread Pool

2009-11-14 Thread Caldarale, Charles R
> From: Mohsen Saboorian [mailto:mohs...@gmail.com] > Subject: Dedicated Thread Pool > > Is this possible to devote a special threadpool to one web > application, so that I can investigate what's going on > through that monitoring app? Not directly. However, you can configure an additional fo

Dedicated Thread Pool

2009-11-14 Thread Mohsen Saboorian
Hi, I have a web application in Tomcat 6 which goes out of thread (thread starvation) after working some hours. Now I want to install a monitoring tool which is a webapp itself installed inside tomcat webapp folder. Is this possible to devote a special threadpool to one web application, so that I

RE: Regarding 1 Webserver Multiple Web App project

2009-11-14 Thread Caldarale, Charles R
> From: Henry Loke [mailto:fsl...@yahoo.com] > Subject: Re: Regarding 1 Webserver Multiple Web App project > > So, Beside AJP connector, what others method can also do that? http://wiki.apache.org/tomcat/FAQ/Connectors - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPR

RE: Tomcat really need Shutdown port

2009-11-14 Thread SRamasamy
>>That's bad; each time the user clicks the link a new instance of Tomcat will start, all but the first of which will die due to port conflicts. Sloppy, at best. You should have the links target your own script that determines whether or not Tomcat is running and starts it only when needed. -- E

Re: Regarding 1 Webserver Multiple Web App project

2009-11-14 Thread Henry Loke
So, Beside AJP connector, what others method can also do that? Hassan Schroeder-2 wrote: > > On Sat, Nov 14, 2009 at 7:47 AM, Ziggy wrote: > >> If you are using tomcat with apache then you will >> need >> apache virtual hosting with the AJP connector. > > Using the AJP co

RE: Regarding 1 Webserver Multiple Web App project

2009-11-14 Thread Caldarale, Charles R
> From: Henry Loke [mailto:fsl...@yahoo.com] > Subject: Re: Regarding 1 Webserver Multiple Web App project > > Can you give me the link to Tomcat docs? Being a bit lazy on the weekend? http://tomcat.apache.org/ http://tomcat.apache.org/tomcat-6.0-doc/index.html http://tomcat.apache.org/tomcat-6.

Re: Regarding 1 Webserver Multiple Web App project

2009-11-14 Thread Henry Loke
Can you give me the link to Tomcat docs? Thanks Hassan Schroeder-2 wrote: > > On Sat, Nov 14, 2009 at 7:29 AM, Henry Loke wrote: >> >> Which method is good to support 1 WebServer with Multiple Web App >> project? >> >> Method 1: domain Changes > >> Method 2 : using same domain but append dif

Re: Regarding 1 Webserver Multiple Web App project

2009-11-14 Thread Hassan Schroeder
On Sat, Nov 14, 2009 at 7:47 AM, Ziggy wrote: > If you are using tomcat with apache then you will need > apache virtual hosting with the AJP connector. Using the AJP connector is not the only option for putting httpd in front of Tomcat. -- Hassan Schroeder -

RE: Tomcat really need Shutdown port

2009-11-14 Thread Caldarale, Charles R
> From: Ziggy [mailto:zigg...@gmail.com] > Subject: Re: Tomcat really need Shutdown port > > If you dont configure the shutdown port how will tomcat know > which instance to shutdown if you have configured mulitple > tomcat instances using multiple catalina_bases?? If you don't have a shutdown

RE: What different between Apache and Apache Tomcat?

2009-11-14 Thread Caldarale, Charles R
> From: Ziggy [mailto:zigg...@gmail.com] > Subject: Re: What different between Apache and Apache Tomcat? > > Has this actually been proven now? Are there any benchmark tests > i can refer to? Yes it's been proven - and discussed innumerable times on this mailing list. The best benchmarks are yo

Re: Tomcat really need Shutdown port

2009-11-14 Thread Ziggy
If you dont configure the shutdown port how will tomcat know which instance to shutdown if you have configured mulitple tomcat instances using multiple catalina_bases?? On Sat, Nov 14, 2009 at 3:15 PM, Caldarale, Charles R < chuck.caldar...@unisys.com> wrote: > > From: SRama [mailto:su...@techie

Re: What different between Apache and Apache Tomcat?

2009-11-14 Thread Ziggy
On Sat, Nov 14, 2009 at 2:21 PM, Peter Crowther wrote: > > Many Internet sites still tell you that Tomcat is slow at serving > > static content such as html files, and you should put httpd in front > > for serving those files. This is not true for Tomcat 5.5.x and Tomcat > > 6.0.x. You will rea

Re: Regarding 1 Webserver Multiple Web App project

2009-11-14 Thread Ziggy
What is wrong with two domains? i.e. www.domain1.com points to webapp1 www.domain2.com points to webapp2 Both domains need to be pointing at the same IP address i.e. the IP address of where the webapps are hosted. Then just use virtual hosting using Apache or Tomcat to redirect. If you are using

Re: Regarding 1 Webserver Multiple Web App project

2009-11-14 Thread Hassan Schroeder
On Sat, Nov 14, 2009 at 7:29 AM, Henry Loke wrote: > > Which method is good to support 1 WebServer with Multiple Web App project? > > Method 1: domain Changes > Method 2 : using same domain but append different file structure > May I know what the keyword/term used in Apache Tomcat to decribe me

Regarding 1 Webserver Multiple Web App project

2009-11-14 Thread Henry Loke
Which method is good to support 1 WebServer with Multiple Web App project? Method 1: domain Changes When user type in 1. http://webapp1.example.com will go to webapp1 project 2. http://webapp2.example.com will go to webapp2 project etc etc Method 2 : using same domain but append different

Re: What different between Apache and Apache Tomcat?

2009-11-14 Thread Henry Loke
I will go for Apache with Tomcat. Since there is no way for me to install Apache httpd in front of Apache Tomcat :D Thanks guys -fsloke David Smith-2 wrote: > > Not always. In the simplest of configurations, just serving out > webapps, it's better to go with a standalone Apache Tomcat > inst

RE: Tomcat really need Shutdown port

2009-11-14 Thread Caldarale, Charles R
> From: SRama [mailto:su...@techie.com] > Subject: RE: Tomcat really need Shutdown port > > As of my knowledge and other tomcat related document and experts > response it’s states we need tomcat port need to shuts down for > windows. Read all the responses; you do *not* need the shutdown port in

RE: how to find tomcat binary distribution service name

2009-11-14 Thread Caldarale, Charles R
> From: SRamasamy [mailto:su...@techie.com] > Subject: RE: how to find tomcat binary distribution service name > > Tomcat have service name and also its configured with server.xml The name configured in server.xml and the Windows service name are completely independent. The Windows service name

Re: What different between Apache and Apache Tomcat?

2009-11-14 Thread David Smith
Not always. In the simplest of configurations, just serving out webapps, it's better to go with a standalone Apache Tomcat installation. Putting Httpd in front would just add latency to the request and make the environment more complicated. If you need other features best provided by Httpd, then

Re: What different between Apache and Apache Tomcat?

2009-11-14 Thread Henry Loke
So, it is better to install Apache httpd in front of Tomcat Thanks Guys... -fsloke Konstantin Kolinko wrote: > > 2009/11/14 Henry Loke : >> >> I only install Apache Tomcat my Java webapp can work already. >> So far I know what Apache can do, Apache Tomcat also can do. >> The common different

Re: What different between Apache and Apache Tomcat?

2009-11-14 Thread Konstantin Kolinko
2009/11/14 Henry Loke : > > I only install Apache Tomcat my Java webapp can work already. > So far I know what Apache can do, Apache Tomcat also can do. > The common different is Apache Tomcat is for Java program only > Apache can support multiple language webapp eg. php, Java , etc etc > > I a bit

Re: What different between Apache and Apache Tomcat?

2009-11-14 Thread Peter Crowther
2009/11/14 Henry Loke : > I only install Apache Tomcat my Java webapp can work already. > So far I know what Apache can do, Apache Tomcat also can do. > The common different is Apache Tomcat is for Java program only > Apache can support multiple language webapp eg. php, Java , etc etc By "Apache"

Re: What different between Apache and Apache Tomcat?

2009-11-14 Thread Pid
On 14/11/2009 13:51, Henry Loke wrote: I only install Apache Tomcat my Java webapp can work already. So far I know what Apache can do, Apache Tomcat also can do. The common different is Apache Tomcat is for Java program only Apache can support multiple language webapp eg. php, Java , etc etc I

What different between Apache and Apache Tomcat?

2009-11-14 Thread Henry Loke
I only install Apache Tomcat my Java webapp can work already. So far I know what Apache can do, Apache Tomcat also can do. The common different is Apache Tomcat is for Java program only Apache can support multiple language webapp eg. php, Java , etc etc I a bit confuse the existence of Apache? If

Re: How to Hide Tomcat startup console

2009-11-14 Thread Konstantin Kolinko
2009/11/14 SRama : > > I want to hide tomcat status console (once stated server dos window it will > show about tomcat stat up stuts) so please let me know how to hide? I have > to do anything related in the confi files? Use "javaw.exe" instead of "java". Though running as service should be the p

Re: How to Hide Tomcat startup console

2009-11-14 Thread Mark Thomas
SRama wrote: > I want to hide tomcat status console (once stated server dos window it will > show about tomcat stat up stuts) so please let me know how to hide? I have > to do anything related in the confi files? If you don't want the console, the simplest solution is to run Tomcat as a service.

RE: how to find tomcat binary distribution service name

2009-11-14 Thread SRamasamy
Tomcat have service name and also its configured with server.xml but when I run tomcat binary version why it was not listing showing service name? I have checked through command prombt “tasklist “ how OS will identified the server instance? How OS will create pid ? Please let me can I possible to

How to Hide Tomcat startup console

2009-11-14 Thread SRama
I want to hide tomcat status console (once stated server dos window it will show about tomcat stat up stuts) so please let me know how to hide? I have to do anything related in the confi files? -- View this message in context: http://old.nabble.com/How-to-Hide-Tomcat-startup-console-tp26349486p

RE: Tomcat really need Shutdown port

2009-11-14 Thread SRama
Dear Guys, As of my knowledge and other tomcat related document and experts response it’s states we need tomcat port need to shuts down for windows. I have one more clarification regarding tomcat port Over view of my product: our product based developed by struts web application its running on

RE: SSL Configuration Question

2009-11-14 Thread Liav Ezer
Hi Charles, The reason i'm looking in the forum is beacause the toturial wasn't clear to me. The section about importing a certificate issued by a CA begins with: Download a Chain Certificate from the Certificate Authority you obtained the Certificate from. For Verisign.com commercial certifica