Advice me

2006-05-27 Thread Ahmed . AlGhafri
Hello all, How can i make the Tomcat opens to my servlet once i call it, using this call http://localhost:8080; ??? What i wan to say that i want me own servlet be the default page, and I am using apache-tomcat-5.5.17 Thanks

Advice me

2006-05-27 Thread Ahmed . AlGhafri
Hello all, How can i make the Tomcat opens to my servlet once i call it, using this call http://localhost:8080; ??? What i wan to say that i want me own servlet be the default page, and I am using apache-tomcat-5.5.17 Thanks

Re: Advice me

2006-05-27 Thread Michael Echerer
[EMAIL PROTECTED] wrote: Hello all, How can i make the Tomcat opens to my servlet once i call it, using this call http://localhost:8080; ??? Basically this works, if you put a webapp context called ROOT into the webapps directory. You should have a look at the Tomcat default installation.

Re: Advice me

2006-05-27 Thread Ahmed . AlGhafri
My problem that i want to send a massage to my servlet which is running in Tocat5.5.17 using a client that open a socket connection at 8080 usingTCP/IP connection ? how i can do that ?

how to increment the max memory of Tomcat´s JVM??

2006-05-27 Thread Iosev Perez Rivero
how to increment the max memory of Tomcat´s JVM?? Because this is for default 63 Mb, I need increment this count. Thanks!!! Iósev Pérez Rivero Estudiantes de 4to Año Universidad de las Ciencias Informáticas - To start a new

Re: how to increment the max memory of Tomcat´s JVM??

2006-05-27 Thread Mladen Adamovic
Iosev Perez Rivero wrote: how to increment the max memory of Tomcat´s JVM?? Because this is for default 63 Mb, I need increment this count. Tomcat use -server parametar and on new Java VM it means 256MB of memory by default. Anyway, if you need more memory change

Re: Advice me

2006-05-27 Thread Edoardo Panfili
[EMAIL PROTECTED] wrote: My problem that i want to send a massage to my servlet which is running in Tocat5.5.17 using a client that open a socket connection at 8080 usingTCP/IP connection ? how i can do that ? I have a group of servelet configured in a Context. To do that you neet to read some

How to get process/threads dump when running tomcat in console

2006-05-27 Thread Mike Klein
I have a webapp with some problem libraries (FreeTTS...speechSynth) that aren't freeing up when I call deallocate methods on synthesizer. As a result, I cannot programmatically undeploy/redeploy webapp without tomcat getting mangledend result is jars under web-inf/lib are still there after

SSL with Tomcat and Apache..IE problems

2006-05-27 Thread Rizwan Merchant
We are running tomcat 5.5.16 on Fedora Core 4 OS. We just installed apache2.0 as a front to serve the pages using the mod_jk connector. There are 2 apps on tomcat (virtual hosting), one of which needs to be SSL enabled (lets say app1 and app2, app2 is the one that needs to be SSL enabled).

Re: How to get process/threads dump when running tomcat in console

2006-05-27 Thread Leon Rosenberg
on linux - kill -quit process_id leon On 5/27/06, Mike Klein [EMAIL PROTECTED] wrote: I have a webapp with some problem libraries (FreeTTS...speechSynth) that aren't freeing up when I call deallocate methods on synthesizer. As a result, I cannot programmatically undeploy/redeploy webapp

Re: SSL with Tomcat and Apache..IE problems

2006-05-27 Thread Wade Chandler
--- Rizwan Merchant [EMAIL PROTECTED] wrote: We are running tomcat 5.5.16 on Fedora Core 4 OS. We just installed apache2.0 as a front to serve the pages using the mod_jk connector. There are 2 apps on tomcat (virtual hosting), one of which needs to be SSL enabled (lets say app1 and

Re: SSL with Tomcat and Apache..IE problems

2006-05-27 Thread Rizwan Merchant
Hi, Thanks for the response. apache is listening on standard port 80. Tomcat is listening on standard port 8080 with a redirect to 8443 for SSL connections. So the request http://www.app2.com comes in on port 80 (apache) and then the mod_jk connector forwards this request to 8080 (which is

Re: How to get process/threads dump when running tomcat in console

2006-05-27 Thread Mike Klein
I should've mentioned...I'm using Windows. mike Leon Rosenberg wrote: on linux - kill -quit process_id leon On 5/27/06, Mike Klein [EMAIL PROTECTED] wrote: I have a webapp with some problem libraries (FreeTTS...speechSynth) that aren't freeing up when I call deallocate methods on

Re: How to get process/threads dump when running tomcat in console

2006-05-27 Thread Leon Rosenberg
I'm not sure, but I think cygwin is able of sending signals. leon On 5/27/06, Mike Klein [EMAIL PROTECTED] wrote: I should've mentioned...I'm using Windows. mike Leon Rosenberg wrote: on linux - kill -quit process_id leon On 5/27/06, Mike Klein [EMAIL PROTECTED] wrote: I have a webapp

Re: SSL with Tomcat and Apache..IE problems

2006-05-27 Thread Bill Barker
Rizwan Merchant [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] We are running tomcat 5.5.16 on Fedora Core 4 OS. We just installed apache2.0 as a front to serve the pages using the mod_jk connector. There are 2 apps on tomcat (virtual hosting), one of which needs to be SSL

Re: SSL with Tomcat and Apache..IE problems

2006-05-27 Thread Rizwan Merchant
P.S if it were up to me, I wouldnt use IE for anything..been having too many problems with IE and SSL, IE and struts, etc etc Unfortunately, as a web-app developer, we have to cater to 80% of the population that still uses IE !!! :) Bill Barker wrote: Rizwan Merchant [EMAIL PROTECTED] wrote in

[OT] Performance of AtomicLong

2006-05-27 Thread Leon Rosenberg
Hi, have someone made some actual measures on performance of atomiclong compared to old-style synchronization? Sun stats (http://java.sun.com/developer/technicalArticles/J2SE/concurrency/) that Atomics are faster than the synchronized() block, but from the implementation of some methods I would

Re: can the servlet instantiation be patched?

2006-05-27 Thread Tim Funk
There's the rub. You don't. But you can inspect request.getServletPath() OR request attributes: javax.servlet.include.request_uri javax.servlet.include.context_path javax.servlet.include.servlet_path javax.servlet.include.path_info javax.servlet.include.query_string

Re: SSL with Tomcat and Apache..IE problems

2006-05-27 Thread Bill Barker
Rizwan Merchant [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Thanks Bill, Can I change the redirect port in server.xml from 8443 to 443? Currently, we are running tomcat as non-root user (tomcat user). Will we need to change this as well? Well, since you are fronting with

JasperException not passed to error page

2006-05-27 Thread Mitch Gitman
I have a JSP with an invalid call to a JSTL function. If I go to access this page, Tomcat 5.5.16 spits out its own error page. Excerpt follows: HTTP Status 500 - ... description The server encountered an internal error () that prevented it from fulfilling this request. exception

looking for TOMCAT monitor

2006-05-27 Thread Xuekun Hu
Hi, I'm a newbie of TOMCAT. Is there a easy use and easy install TOMCAT monitor tool available? I just want to monitor some basic performance counters, like average reponse time, busy threads ... Thanks in advance. Thx, Xuekun

increase of JVM´s memory???

2006-05-27 Thread Iosev Perez Rivero
Hot to increment the JVM´s memory??? I need increase of JVM´s memory because I need that tomcat use more memory for work. Please I need help. thanks Iósev Pérez Rivero Estudiantes de 4to Año Universidad de las Ciencias Informáticas

Re: looking for TOMCAT monitor

2006-05-27 Thread Jerome Jar
Seems no such *FREE* tools. I'm using Lambda Probe, http://lambdaprobe.org/ , handy tool. 2006/5/28, Xuekun Hu [EMAIL PROTECTED]: Hi, I'm a newbie of TOMCAT. Is there a easy use and easy install TOMCAT monitor tool available? I just want to monitor some basic performance counters, like average