Re: Problem with installing and configuring SSL support on Tomcat 5

2006-05-28 Thread Jack
Not sure exactly what the problem is you are having from the description. You can try and have a look at this link to see if you find anything useful there: http://jack.godau.googlepages.com/jbosscertificatesandopenssl Cheers Jack... On 29/05/06, Negar Taheri <[EMAIL PROTECTED]> wrote: Hello I

Problem with installing and configuring SSL support on Tomcat 5

2006-05-28 Thread Negar Taheri
Hello I have a problem with installing and configuring SSL support on Tomcat 5; I did all the things written in tomcat docs step by step in both tomcat 5.5.9and 5.5.17 on different computers, the keystore was created successfully but when I restart tomcat, seems that there where no changes and I'm

Re: Problem with JMX Agent and Tomcat 5.5.17

2006-05-28 Thread Rajeev N. Jha
is the port 8004 free ? try using 9004 instead. which JDK you are using ? karu manua wrote: Dear All, I'm trying to start JMX through Tomcat 5.5.17, but it failed to start, the message was Connection failed, I only configure the catalina.bat with: set CATALINA_OPTS="-

RE: problem in GC tuning

2006-05-28 Thread Prashant kumar
I require that much of memory to avoid GC. Is there any other way out for it ? -Original Message- From: Michael Echerer [mailto:[EMAIL PROTECTED] Sent: Friday, May 26, 2006 8:14 PM To: Tomcat Users List Subject: Re: problem in GC tuning Prashant kumar wrote: > Hi All, > > 1) Is th

Problem with JMX Agent and Tomcat 5.5.17

2006-05-28 Thread karu manua
Dear All, I'm trying to start JMX through Tomcat 5.5.17, but it failed to start, the message was Connection failed, I only configure the catalina.bat with: set CATALINA_OPTS="-Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port=8004 -Dcom.sun.managem

Re: Configuring Tomcat HTTP server to generate proper links for non-English file names in a Directory Listing

2006-05-28 Thread Martin Gainty
You will need download and configure the i18 International jars (which are optional) to enable multi-language functionality Take a look at tomcat-i18n-**.jar item at http://tomcat.apache.org/tomcat-5.5-doc/class-loader-howto.html Bon Chance, Martin -- This email message and any files transmitted

Configuring Tomcat HTTP server to generate proper links for non-English file names in a Directory Listing

2006-05-28 Thread Ramez Ghazzaoui
Hi, I am having problems with Tomcat's Directory Listing when files under that Directory contain non-English characters. I get 404 errors. I've read the Tomcat documentation, FAQ, etc, and searched the web for a solution. There is no mention of this problem anywhere. Here's the exact proble

Re: System down web.xml partially working when restart webapp via tomcat manager

2006-05-28 Thread David Wall
I may have found this was fixed in 5.5.17 since I see this line in the changelog: Correctly reset listeners when reloading a webapp (remm) I'll give that a try David David Wall wrote: We have multiple webapps running in a single Tomcat instance, and when we need to upgrade a given webap

System down web.xml partially working when restart webapp via tomcat manager

2006-05-28 Thread David Wall
We have multiple webapps running in a single Tomcat instance, and when we need to upgrade a given webapp, we install a "system down" web.xml that defines a "null operation" listener (we normally have one that bootstraps the application, connects to databases, etc.) and maps everything to a serv

Re: Fw: SSL with Tomcat and Apache..IE problems

2006-05-28 Thread Martin Gainty
Bonjour Rizwant- Assuming you have installed SSL modifying parameters of The directory directive will allow you to go where you need to go http://httpd.apache.org/docs/2.0/ssl/ssl_howto.html Pay particular attention to RewriteCond inside the intranet (any address with 192.168.1.x) which allows

Re: servlet api problem

2006-05-28 Thread Georg Sauer-Limbach
I think the problem is that you have servlet-api.jar in the lib directory of your webapp - this jar is already loaded for each webapp by Tomcat, it is in the common/lib directory. So remove this jar from the WEB-INF/lib directory of all your webapps. Georg Asaf Lahav wrote: *When starting tomc

Re: [OT] Performance of AtomicLong

2006-05-28 Thread Leon Rosenberg
Hi FIlip, I actually made a test last night: http://moskito.anotheria.net/AtomicVsSynchronized.html On suns jdk it seems to be faster, but not on jrockit. And synchronized on jrockit seems to be faster than atomic on sun on 1 processor machines. regards leon On 5/28/06, Filip Hanik - Dev List

Re: Re: Re: [help] blank index.jsp on Tomcat 5.5.9

2006-05-28 Thread Garner Shawn
I fixed the redirect problem. I had a jsp-api.jar in my war. Not sure where it came from but once I removed it the redirect works. Hopefully it was from JBoss and not MyFaces or Facelets. Now however I noticed my jsf commandLinks are all broken. Not sure if it is related. Thanks for the help.

Re: Re: Re: [help] blank index.jsp on Tomcat 5.5.9

2006-05-28 Thread Garner Shawn
I thought I read it in one of them it had to be a jsp or html, maybe I'm wrong. Sorry I meant in the previous post that neither the redirect nor forward worked. >> org.apache.jsp.index_jsp org.apache.jsp.index_jsp This is the tomcat 5.5 way to use precompile jsp pages from what I c

Re: servlet api problem

2006-05-28 Thread Michael Echerer
Remove the servlet-api.jar from your web apps. This jar is provided by Tomcat already. You might need it to build your app, but don't deploy it. Cheers, Michael Asaf Lahav wrote: > *When starting tomcat, I get the following log:*** > > 28/05/2006 21:03:39 org.apache.catalina.loader.WebappClassLo

Re: Problem starting Tomcat in Netbeans

2006-05-28 Thread michael
On Mon, May 29, 2006 at 12:31:12AM +0800, Justin See wrote: > I've tried to search for it but couldn't find an answer. > Please try to help me. > I've created an application and deployed and run successfully in the > first PC. I copied everything over, installed everything as the > first PC.

Re: [OT] Performance of AtomicLong

2006-05-28 Thread Filip Hanik - Dev Lists
yes, compared to using synchronized, this is a huge improvement Leon Rosenberg wrote: 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 f

servlet api problem

2006-05-28 Thread Asaf Lahav
When starting tomcat, I get the following log: 28/05/2006 21:03:39 org.apache.catalina.loader.WebappClassLoader validateJarFile INFO: validateJarFile(C:\Tomcat\webapps\muse\WEB-INF\lib\servlet-api.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/S

RE: Run class in the start up of Tomcat

2006-05-28 Thread Asaf Lahav
Wouldn't it be better to develop a ServletContextListener servlet? Anyhow, I did give it a try and I attempt to develop a ServletContextListener servlet. This is the code I'm using (took it from tomcat servlet samples): /** * */ package starters; import javax.servlet.ServletContex

Problem starting Tomcat in Netbeans

2006-05-28 Thread Justin See
Dear all, I've tried to search for it but couldn't find an answer. Please try to help me. I've created an application and deployed and run successfully in the first PC. I copied everything over, installed everything as the first PC. 1) I've the mysql-connector-java-3.1.12-bin.jar in the common

Tomcat and Apache Connector Problem

2006-05-28 Thread Donald Beck
I have installed the following on a Windows Server: Apache 2.0.58 Tomcat 5.0.28 SDK 1.4.2.11 mod_jk_1.2.6_2.0.50.dll (renamed mod_jk.dll and placed it in APACHE_HOME/modules) I am trying to configure Tomcat to server up JSP pages, and have made the following modifications to the following files:

Re: Fw: SSL with Tomcat and Apache..IE problems

2006-05-28 Thread Rizwan Merchant
Thanks. Could you please tell me or direct me to some resource that indicates how to have Apache handle SSL? Would there be separate SSL definitions for each virtual host? or just one for all virtual hosts? Appreciate all the help I am getting here... Martin Gainty wrote: Follow up on Bill's

Re: Re: [help] blank index.jsp on Tomcat 5.5.9

2006-05-28 Thread Hassan Schroeder
On 5/27/06, Garner Shawn <[EMAIL PROTECTED]> wrote: I seen it in the servlet spec but maybe it was spec 2.3 and not 2.4. It said it it has to be a . where is .jsp or .html. I don't see any such thing in either the 2.3 or 2.4 specs, and just added an arbitrary name -- "home.doodah" :-)

Fw: SSL with Tomcat and Apache..IE problems

2006-05-28 Thread Martin Gainty
Follow up on Bill's advice to use jsvc as Tomcat launcher and then front-ending with Apache to handle the SSL If you are using jsvc I would setup the CLASSPATH following advice by David Erickson at http://marc.theaimsgroup.com/?l=tomcat-user&m=108578233003073&w=2 he discovers that tools/commons-

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

2006-05-28 Thread Jerome Jar
maybe you can try antiJARLocking and antiResourceLocking, though they only *SOMETIMES* worked for me :S 2006/5/27, Mike Klein <[EMAIL PROTECTED]>: I have a webapp with some "problem" libraries (FreeTTS...speechSynth) that aren't freeing up when I call "deallocate" methods on synthesizer. As a r

Re: Native connector startup problem

2006-05-28 Thread Martin Gainty
Josh- You're definitely going to need the Docs Did you download http://apr.apache.org/docs/ and follow the build instructions The reason why I asked if you followed Yoav Shapira's instructions was addressed in the posting about HPUX Using some semblance of scientific discovery you can then ferre

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

2006-05-28 Thread Martin Gainty
To extend Leon's thought a bit within cygwin you could ps -ef | grep ProcessName note the pid's and perform leon's suggestion Unfortunately windows binaries (exe/dll) live in a separate environment If you desire fine grained control I would recommend MKS available at http://www.mkssoftware.com/ev

Re: increase of JVM´s memory???

2006-05-28 Thread Guido Schoepp
Iosev Perez Rivero wrote: > Hot to increment the JVM´s memory??? > I need increase of JVM´s memory because I need that tomcat use more memory for work. You can use the -Xms/-Xmx command line parameters of the java interpreter: -Xms : initial heap size -Xmx : maximum heap size e.g. "java -