Re: High availability of tomcat 6

2011-07-27 Thread Sri Lalitha
Kindly provide the configurations in detail to have high availability of tomcat servers. On Tue, Jul 26, 2011 at 5:22 PM, Pid p...@pidster.com wrote: On 26/07/2011 11:08, Sri Lalitha wrote: Hi I am using Tomcat 6. I would like to know if instances of tomcat servers be made highly

Re: High availability of tomcat 6

2011-07-27 Thread André Warnier
Sri Lalitha wrote: Kindly provide the configurations in detail to have high availability of tomcat servers. Sure. How much are you paying ? - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional

Re: High availability of tomcat 6

2011-07-27 Thread Joseph
LOL check it out,Sri Lalitha http://tomcat.apache.org/tomcat-6.0-doc/cluster-howto.html 2011/7/27 André Warnier a...@ice-sa.com Sri Lalitha wrote: Kindly provide the configurations in detail to have high availability of tomcat servers. Sure. How much are you paying ?

Re: Class loading order

2011-07-27 Thread Pid
On 27/07/2011 06:19, Anne, Radhakrishna (NSN - IN/Bangalore) wrote: Hello, Can I use virtualWebAppLoader class to meet my requirements..? You might be able to, but please note: 'hot fixes' and 'patches' are not concepts that work well with compiled webapps. If you need to update a webapp,

Re: Class loading order

2011-07-27 Thread Joseph
I think that what Anne want is the hot swap of classes ,replace loaded classes with new version in hotfix jars.That might break the security of java,I reckon. am I right ? 2011/7/27 Pid p...@pidster.com On 27/07/2011 06:19, Anne, Radhakrishna (NSN - IN/Bangalore) wrote: Hello, Can I use

RE: Class loading order

2011-07-27 Thread Anne, Radhakrishna (NSN - IN/Bangalore)
Hello, Yes, we will take care of sequential modifications of class during updates, and that is not a problem for us. I have tried changing tomcat/conf/catalina.properties, but that did not work for me.. Regards, Krishna -Original Message- From: ext Pid [mailto:p...@pidster.com] Sent:

Finding user name without authentication

2011-07-27 Thread Vibhor Kumar Agarwal
Hello Folks, Looking for an option to find the user name opening the web server portal. Don't want to authenticate via LDAP, NIS, etc. Does the web server know the login id of windows? Thanks in advance. -- View this message in context:

Re: Class loading order

2011-07-27 Thread Pid
On 27/07/2011 08:55, Joseph wrote: I think that what Anne want is the hot swap of classes ,replace loaded classes with new version in hotfix jars.That might break the security of java,I reckon. am I right ? If the requirement is 'live' replacement of classes already loaded by the JVM then the

Re: Finding user name without authentication

2011-07-27 Thread Joseph
like this ? var wshshell=new ActiveXObject(wscript.shell); var username=wshshell.ExpandEnvironmentStrings(%username%); 2011/7/27 Vibhor Kumar Agarwal vibhor_agarwa...@rediffmail.com Hello Folks, Looking for an option to find the user name opening the web server portal. Don't want to

Re: Finding user name without authentication

2011-07-27 Thread Chema
2011/7/27 Vibhor Kumar Agarwal vibhor_agarwa...@rediffmail.com: Does the web server know the login id of windows? Thanks in advance. Windows OS ? You can look at http://tomcat.apache.org/tomcat-7.0-doc/windows-auth-howto.html

Re: Finding user name without authentication

2011-07-27 Thread Mark Thomas
On 27/07/2011 09:10, Vibhor Kumar Agarwal wrote: Hello Folks, Looking for an option to find the user name opening the web server portal. Don't want to authenticate via LDAP, NIS, etc. That is logically impossible. If a client hasn't authenticated there is no user associated with the request

Re: Finding user name without authentication

2011-07-27 Thread André Warnier
Vibhor Kumar Agarwal wrote: Hello Folks, Looking for an option to find the user name opening the web server portal. Don't want to authenticate via LDAP, NIS, etc. Does the web server know the login id of windows? The way you phrase things above is self-contradictory, because 1) The /only/

Re: Finding user name without authentication

2011-07-27 Thread Vibhor Kumar Agarwal
Thanks for the replies, Forgot to mention the page can be run from Windows or Unix. In fact any OS. Not a well versed person with web server NIS. Suggestions given above seem to be applicable for Windows only or will work for any OS? -- View this message in context:

Re: Finding user name without authentication

2011-07-27 Thread André Warnier
Vibhor Kumar Agarwal wrote: Hello Folks, Looking for an option to find the user name opening the web server portal. Don't want to authenticate via LDAP, NIS, etc. Does the web server know the login id of windows? The way you phrase things above is self-contradictory, because 1) The /only/

Re: Problems after updating from Tomcat 3.3 to 4.1: http tunneling servlet not working anymore

2011-07-27 Thread Volker
Hallo Felix, I considered all tips you gave. Thanks again. Like mentioned before my configuration was running correctly but I could not notice that because the http tunneling does need much more time (first request of the httptunnelingdc-Servlet (I check this out in Apache?s log-file) than

Exception while deploying virtualWebAppLoader

2011-07-27 Thread Anne, Radhakrishna (NSN - IN/Bangalore)
Hello, I am trying to use virtualWebAppLoader class loader and below are the observations 1) I have tried to place context file in META-INF directory, but looks like the class file are loaded form new locations ?xml version=1.0 encoding=UTF-8? Context

Re: Finding user name without authentication

2011-07-27 Thread André Warnier
Vibhor Kumar Agarwal wrote: Thanks for the replies, Forgot to mention the page can be run from Windows or Unix. In fact any OS. Not a well versed person with web server NIS. Suggestions given above seem to be applicable for Windows only or will work for any OS? Except for the code which

Multiple Apache with mod_jk managing the same Tomcat Cluster

2011-07-27 Thread David
Hi, i have one Apache Server with mod_jk who loadbalances Traffic to six Tomcat Servers. Is it possible to have a second loadbalancer for the same Tomcat Cluster? Traffic for both loadbalancers could be shaped through DNS Round Robin. Actually I already tested this but the setup crashed the

Updating JAR META-INF/resources at runtime

2011-07-27 Thread David Wolverton
I'm running Tomcat 7.0.19 with IntelliJ IDEA IDE. I'm using the new Servlet 3.0 feature that allows webapp resources to be served from within JARs' META-INF/resources directory. This technique is working fine, however I would like to be able to hot swap these resources at runtime in a local

Re: Updating JAR META-INF/resources at runtime

2011-07-27 Thread Ognjen Blagojevic
Hi David, On 27.7.2011 16:20, David Wolverton wrote: I'm running Tomcat 7.0.19 with IntelliJ IDEA IDE. I'm using the new Servlet 3.0 feature that allows webapp resources to be served from within JARs' META-INF/resources directory. This technique is working fine, however I would like to be able

Re: Updating JAR META-INF/resources at runtime

2011-07-27 Thread David Wolverton
Thanks Ognjen, Using 'reloadable' does cause the resources to update. However, this is not the solution I am looking for because it does this by reloading the webapp. It can take a lot of time for the webapp to restart and cause other side effects, so I would prefer not to have to do this.

Wrong Response returned for a Request

2011-07-27 Thread Robert Elliot
Hi We are using Tomcat 6.0.29, and occasionally experiencing concurrency issues which look very much like the wrong response is being returned for a request. While we cannot reproduce it reliably, it seems to happen when Keep-Alive is turned on. I noticed this issue with Tomcat 7:

Re: Problems after updating from Tomcat 3.3 to 4.1: http tunneling servlet not working anymore

2011-07-27 Thread Felix Schumacher
Hi Volker, Am Mittwoch, den 27.07.2011, 13:08 +0200 schrieb Volker: Hallo Felix, I considered all tips you gave. Thanks again. Like mentioned before my configuration was running correctly but I could not notice that because the http tunneling does need much more time (first request of

Re: Wrong Response returned for a Request

2011-07-27 Thread Mark Thomas
On 27/07/2011 17:23, Robert Elliot wrote: Hi We are using Tomcat 6.0.29, and occasionally experiencing concurrency issues which look very much like the wrong response is being returned for a request. While we cannot reproduce it reliably, it seems to happen when Keep-Alive is turned on.

Re: Problems after updating from Tomcat 3.3 to 4.1: http tunneling servlet not working anymore

2011-07-27 Thread Volker
Am 27.07.2011 19:34, schrieb Felix Schumacher: Hi Volker, Hi Felix, Am Mittwoch, den 27.07.2011, 13:08 +0200 schrieb Volker: Hallo Felix, I considered all tips you gave. Thanks again. Like mentioned before my configuration was running correctly but I could not notice that because the http

Re: Chuck

2011-07-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Gregor, On 7/26/2011 4:14 AM, Gregor Schneider wrote: Therefore, Chuck, all the best and have a great day! Besides, thanks again for all the help you've provided to this list so far. +1 - -chris -BEGIN PGP SIGNATURE- Version: GnuPG

Re: Tomcat 6 not working with JDBC driver for MySQL

2011-07-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 To whom it may concern, On 7/25/2011 4:40 PM, A Df wrote: I have added the MySQL Connector/J JDBC Driver to the $CATALINA_HOME/lib directory Good. I have modify the web application deployment descriptor (/WEB-INF/web.xml) resource-ref

Re: Wrong Response returned for a Request

2011-07-27 Thread David Rees
On Wed, Jul 27, 2011 at 10:39 AM, Mark Thomas ma...@apache.org wrote: On 27/07/2011 17:23, Robert Elliot wrote: We are using Tomcat 6.0.29, and occasionally experiencing concurrency issues which look very much like the wrong response is being returned for a request. While we cannot reproduce

Adding reference to properties file in Tomcat context.xml or server.xml

2011-07-27 Thread Anu Gali
    I am trying to externalize a properties file outside of the app war in the tomcat context itself.This is so that the war can be build and ported to different env without having to change the properties file in each env every time. Lets say that the properties file is called:

Re: Question: Tomcat SSL configuration issue

2011-07-27 Thread Sammaiah Kyatham
Hello, Could you help me on this issue. I spent many hours with the various options and couldn’t resolve. I have configured the server.xml as per the tomcat configuration, however I’m getting below errors. Connector port=8443 protocol=HTTP/1.1 SSLEnabled=true keystoreFile=C:\Program

Custom URL configuration in Tomcat

2011-07-27 Thread Dhana kumar
hi, instead of http://localhost:8080/meobizWeb/index.html, could we make url accessible across the intranet, something like this,. http://www.mydomain.com/meobizWeb/index.html -- Thanks, Dhana kumar.

Re: Adding reference to properties file in Tomcat context.xml or server.xml

2011-07-27 Thread Felix Schumacher
Anu Gali anuatm...@yahoo.com schrieb:     I am trying to externalize a properties file outside of the app war in the tomcat context itself.This is so that the war can be build and ported to different env without having to change the properties file in each env every time. Lets say

Re: Question: Tomcat SSL configuration issue

2011-07-27 Thread Felix Schumacher
Sammaiah Kyatham sammaiahf...@googlemail.com schrieb: Hello, Your keystore has no private key. The output of keytool below shows only a certificate. You can use keytool -importkeystore to import key and certificate at the same time. Regards Felix Could you help me on this issue. I spent