SNI (Server Name Indication) supports in Tomcat (7.0.27)

2012-04-30 Thread Reka Thirunavukkarasu
Hi I'm having virtual hosts as named based virtual host in tomcat and deploying webapps inside that virtual host. I want to provide secured connection to access particular virtual hosts (not all) based on user requirement. I went through the mailing list to get the idea. But mostly, it was

Re: SNI (Server Name Indication) supports in Tomcat (7.0.27)

2012-04-30 Thread Mark Thomas
On 30/04/2012 09:58, Reka Thirunavukkarasu wrote: Can you please provide any material to got through to support SNI? http://tomcat.markmail.org/thread/q6d5czzlgih3r2ys Mark - To unsubscribe, e-mail:

Re: Does Tomcat Maven plugin support WAR overlays ?

2012-04-30 Thread Jeff MAURY
Salut Olivier, I wanted to make sure I understand the goal properly. Is the rationale for using src/main/webapp as the default docbase for Tomcat to propagate modifications of files on the fly (JSP,...) without the need to restart Tomcat ? At least, I think we should make it clear in the

RE: mvn tomcat:deploy fails with HTTP response 401

2012-04-30 Thread Martin Gainty
redirecting to maven users ..as this is a maven issue Thanks, Martin __ Verzicht und Vertraulichkeitanmerkung/Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfaenger sein, so bitten wir

Re: mvn tomcat:deploy fails with HTTP response 401

2012-04-30 Thread Olivier Lamy
Hi, That's not an issue. See documentation here: http://maven.apache.org/guides/introduction/introduction-to-plugin-prefix-mapping.html 2012/4/30 Martin Gainty mgai...@hotmail.com: redirecting to maven users ..as this is a maven issue Thanks, Martin

mod_jk recovery when tomcat killed

2012-04-30 Thread Agnieszka Allstar
Hello, I'm using httpd 2.2.22 with mod_jk 1.2.32 and 2 load balanced tomcat workers (TC 6.0.35). I have a question about recovery in case when active worker becomes abruptly inactive. Here's my test scenario: 1. Web service client sends SOAP request to apache server. This client sends requests

Re: SNI (Server Name Indication) supports in Tomcat (7.0.27)

2012-04-30 Thread Reka Thirunavukkarasu
Thanks. I could see all the clarifications there. Reka On Mon, Apr 30, 2012 at 2:34 PM, Mark Thomas ma...@apache.org wrote: On 30/04/2012 09:58, Reka Thirunavukkarasu wrote: Can you please provide any material to got through to support SNI? http://tomcat.markmail.org/thread/q6d5czzlgih3r2ys

RE: multiple mod_jk server mappings and JSESSIONID

2012-04-30 Thread Esmond Pitt
I am not sure that mod_jk mappings follow the principle of longest match wins. They follow a logic of their own whereby wildcard matches outrank non-wildcard matches, so for example: JkMount /* JkUnmount / doesn't operate to unmount the Tomcat root, not because it is shorter but because it

Re: Running Swing app under Tomcat 6 on Linux

2012-04-30 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 DG, On 4/28/12 4:11 PM, dgchristen...@comcast.net wrote: I have a small debugging/monitoring app written in Java/Swing that I'd like to run inside Tomcat to help with debugging. You are asking for all kinds of pain, here. The app is started by

Re: mod_jk recovery when tomcat killed

2012-04-30 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kate, On 4/30/12 7:06 AM, Agnieszka Allstar wrote: Here's my test scenario: 1. Web service client sends SOAP request to apache server. This client sends requests in 2 flavors, either it is a generic SOAP call (A case) or a soap request with some

Re: Does Tomcat Maven plugin support WAR overlays ?

2012-04-30 Thread Olivier Lamy
2012/4/30 Jeff MAURY jeffma...@jeffmaury.com: Salut Olivier, I wanted to make sure I understand the goal properly. Is the rationale for using src/main/webapp as the default docbase for Tomcat to propagate modifications of files on the fly (JSP,...) without the need to restart Tomcat ? Yup

Re: multiple mod_jk server mappings and JSESSIONID

2012-04-30 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Esmond, On 4/30/12 8:06 AM, Esmond Pitt wrote: I am not sure that mod_jk mappings follow the principle of longest match wins. They follow a logic of their own whereby wildcard matches outrank non-wildcard matches, so for example: JkMount

Re: multiple mod_jk server mappings and JSESSIONID

2012-04-30 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mike, On 4/28/12 10:52 AM, Mike Wilson wrote: uriworkermap.properties /* = serverA /path2/* = serverB /path3/* = serverB /path3/xyz/* = serverA Like André, I'm curious about this, too. I would have expected some of these things to interfere

Re: Does Tomcat Maven plugin support WAR overlays ?

2012-04-30 Thread Jeff MAURY
I don't link the idea of having Maven adding some stuff except under target. This will cause many many problems with people and SCM. I don't get your second solution: how do you merge you temporary stuff and src/main/webapp with a symlink ? Jeff On Mon, Apr 30, 2012 at 4:52 PM, Olivier Lamy

Re: Does Tomcat Maven plugin support WAR overlays ?

2012-04-30 Thread Olivier Lamy
2012/4/30 Jeff MAURY jeffma...@jeffmaury.com: I don't link the idea of having Maven adding some stuff except under target. This will cause many many problems with people and SCM. I don't get your second solution: how do you merge you temporary stuff and src/main/webapp with a symlink ?

Re: SNI (Server Name Indication) supports in Tomcat (7.0.27)

2012-04-30 Thread Mark Eggers
- Original Message - From: Reka Thirunavukkarasu rthirunavukkaras...@gmail.com To: Tomcat Users List users@tomcat.apache.org Cc: Sent: Monday, April 30, 2012 4:19 AM Subject: Re: SNI (Server Name Indication) supports in Tomcat (7.0.27) T hanks. I could see all the clarifications

Re: Running Swing app under Tomcat 6 on Linux

2012-04-30 Thread dgchristensen
- Original Message - From: Christopher Schultz ch...@christopherschultz.net To: Tomcat Users List users@tomcat.apache.org Sent: Monday, April 30, 2012 10:40:17 AM Subject: Re: Running Swing app under Tomcat 6 on Linux -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 DG, On

Re: mod_jk recovery when tomcat killed

2012-04-30 Thread Agnieszka Allstar
2012/4/30 Christopher Schultz ch...@christopherschultz.net -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kate, On 4/30/12 7:06 AM, Agnieszka Allstar wrote: Here's my test scenario: 1. Web service client sends SOAP request to apache server. This client sends requests in 2 flavors, either

Exception in thread http-bio-8080-exec-3 Exception in thread ContainerBackgroundProcessor[StandardEngine[Catalina]]

2012-04-30 Thread Smith, Mitchell
Hi, I am currently upgrading to use Java 7 and tomcat7. However when I try to execute a login in my WebApp I get the following error. Exception in thread http-bio-8080-exec-3 Exception in thread ContainerBackgroundProcessor[StandardEngine[Catalina]] I am using: Java jdk7 (update4) Tomcat

RE: Exception in thread http-bio-8080-exec-3 Exception in thread ContainerBackgroundProcessor[StandardEngine[Catalina]]

2012-04-30 Thread Caldarale, Charles R
From: Smith, Mitchell [mailto:mitchell.sm...@cwc.com] Subject: Exception in thread http-bio-8080-exec-3 Exception in thread ContainerBackgroundProcessor[StandardEngine[Catalina]] when I try to execute a login in my WebApp I get the following error. Exception in thread http-bio-8080-exec-3

Multiple Contexts - one classloader

2012-04-30 Thread Shanti Suresh
All, Is there a way to specify with Tomcat 7, one webapp-base with multiple contexts? If I create several XML files under tomcat-home/conf/Catalina/localhost/ and point the docbase to outside-appbase WAR path I get multiple classloaders. I would like one application instance to serve the

RE: Multiple Contexts - one classloader

2012-04-30 Thread Caldarale, Charles R
From: Shanti Suresh [mailto:sha...@umich.edu] Subject: Multiple Contexts - one classloader I would like one application instance to serve the different contexts. Please read the servlet spec; one application == one context. You can play games with forwarding if you want, or simply install

tomcat deps on ant which deps on junit ... BUILD FAILED

2012-04-30 Thread Albretch Mueller
~ While trying to install tomcat-7.0.27 it tells me install ant, which tells me to install junit and then you get: ~ Has anyone dealt with those issues? ~ lbrtchx ~ $ git clone https://github.com/KentBeck/junit.git

RE: tomcat deps on ant which deps on junit ... BUILD FAILED

2012-04-30 Thread Caldarale, Charles R
From: Albretch Mueller [mailto:lbrt...@gmail.com] Subject: tomcat deps on ant which deps on junit ... BUILD FAILED While trying to install tomcat-7.0.27 it tells me install ant Exactly what Tomcat distribution (and from where) are you trying to install? Since Tomcat is pure Java, just

Signing and Encrypting messages using Apache tribes

2012-04-30 Thread Madhav Bhargava
Hi All, We use apache tribes for inter node communication via multicast. For securing inter node communication two things are required: 1. Establishing the identity of a node as valid who is sending the message 2. Encrypting selective messages which are sensitive in nature. This topic was

Re: tomcat deps on ant which deps on junit ... BUILD FAILED

2012-04-30 Thread Albretch Mueller
Exactly what Tomcat distribution (and from where) are you trying to install? ~ Well, I got the source code from: ~ http://apache.claz.org/tomcat/tomcat-7/v7.0.27/src/apache-tomcat-7.0.27-src.tar.gz ~ and followed the build instructions ~ lbrtchx

Re: tomcat deps on ant which deps on junit ... BUILD FAILED

2012-04-30 Thread Albretch Mueller
~ I really don't know how to make sence of this, but ant does not appear to like symbolic links ... ~ lbrtchx ~ $ ls -l /usr/bin/ant lrwxrwxrwx 1 root root 20 Sep 13 2011 /usr/bin/ant - ../share/ant/bin/ant $ ls -lH /usr/bin/ant -rwxr-xr-x 1 root root 9903 May 19 2011 /usr/bin/ant $ ls -l

Re: tomcat deps on ant which deps on junit ... BUILD FAILED

2012-04-30 Thread Mark Eggers
- Original Message - From: Albretch Mueller lbrt...@gmail.com To: Tomcat Users List users@tomcat.apache.org Cc: Sent: Monday, April 30, 2012 4:07 PM Subject: Re: tomcat deps on ant which deps on junit ... BUILD FAILED Exactly what Tomcat distribution (and from where) are you

Re: tomcat deps on ant which deps on junit ... BUILD FAILED

2012-04-30 Thread Albretch Mueller
For the record, I should have specified I am using: ~ $ uname -a Linux Microknoppix 3.0.4 #12 SMP PREEMPT Thu Sep 8 05:27:05 CEST 2011 i686 GNU/Linux ~ lbrtchx - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For

Re: tomcat deps on ant which deps on junit ... BUILD FAILED

2012-04-30 Thread Mark Eggers
- Original Message - From: Albretch Mueller lbrt...@gmail.com To: Tomcat Users List users@tomcat.apache.org Cc: Sent: Monday, April 30, 2012 6:53 PM Subject: Re: tomcat deps on ant which deps on junit ... BUILD FAILED ~ I really don't know how to make sence of this, but ant does

Re: tomcat deps on ant which deps on junit ... BUILD FAILED

2012-04-30 Thread Albretch Mueller
Now, I think this error relates to java ~ $ export _DT=`date +%Y%m%d%H%M%S`knoppix@Microknoppix:/media/sdb1/prjx $ ant -verbose -debug -f build.xml apache-tomcat-7.0.27$_DT.inst.log 21 $ cat apache-tomcat-7.0.27$_DT.inst.log Apache Ant(TM) version 1.8.2 compiled on May 19 2011 Buildfile:

Re: tomcat deps on ant which deps on junit ... BUILD FAILED

2012-04-30 Thread Mark Eggers
Comment inline - search for = Comment - Original Message - From: Albretch Mueller lbrt...@gmail.com To: Tomcat Users List users@tomcat.apache.org Cc: Sent: Monday, April 30, 2012 8:13 PM Subject: Re: tomcat deps on ant which deps on junit ... BUILD FAILED Now, I