Java6 JAX-WS and Tomcat interoperability

2013-08-21 Thread Michael Südkamp
Hello, My problem is not directly related to Tomcat but to any web container... A while ago we developed a webservice interface to our Java web-app. At that time we needed Java 5 compatibility, that's why we used the JAX-WS RI 2.2.5 package. Now we increased the system requirement for our

Re: Java6 JAX-WS and Tomcat interoperability

2013-08-21 Thread Daniel Mikusa
On Aug 21, 2013, at 6:18 AM, Michael Südkamp michael.suedk...@docware.de wrote: Hello, My problem is not directly related to Tomcat but to any web container... A while ago we developed a webservice interface to our Java web-app. At that time we needed Java 5 compatibility, that's why

Re: JspTagException- Stream closed

2013-08-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Tinu, On 8/20/13 9:59 PM, Babu, Tinu wrote: Here is the piece of codes which is throwing the error. select name=list1 size=15 multiple jbo:RowsetIterate datasource=userRole option value=jbo:ShowValue datasource=userRole dataitem=RoleName /

[tomcat 7.0.42] jersey 2.0 rest - multipart/form-data, SSL client authentication, 401 error

2013-08-21 Thread Marek Jagielski
Hi, The problem I reached is quite specific. I've searched Internet for any hint but without success. So I would like to ask you for any pointers. I have two tomcat servers A and B: A - tomcat 7.0.41 (local machine Linux Mint 15) B - tomcat 7.0.42 (Ubuntu 12.04.2 on AWS EC2)

Having trouble with common.loader

2013-08-21 Thread D C
Tomcat 7.0.40 CentOS 6.3 Java 1.7.0_21 I am trying to move all libraries out of my webapps directory, and into a common place. I have my libs that were bundled with tomcat in /tomcat/lib (the default), and my extra libs i want to keep in /web/lib. I've updated /tomcat/conf/catalina.properties

Testing session persistence with a php script

2013-08-21 Thread vicki
I am trying to figure out if I can run my sessionpersistence script that I run with Apache to see if sessions persist between two tomcat sites on two separate servers. The load balancer has session persistence enabled but Iam unsure how to test it. My thought was that I would just add the

Re: Having trouble with common.loader

2013-08-21 Thread David kerber
Basically you're trying to defeat the way the system is designed to work. Don't do that... On 8/21/2013 3:58 PM, D C wrote: Tomcat 7.0.40 CentOS 6.3 Java 1.7.0_21 I am trying to move all libraries out of my webapps directory, and into a common place. I have my libs that were bundled with

codeBase for antiResourceLocking / antiJARLocking

2013-08-21 Thread Raymond Auge
Hello All, I found an unanswered email from 2007 with the same question I'm about to ask http://mail-archives.apache.org/mod_mbox/tomcat-users/200711.mbox/%3C20738052.1370841195554493504.JavaMail.servlet%40kundenserver%3E Is there any option for dealing with permissions of web apps using

Re: codeBase for antiResourceLocking / antiJARLocking

2013-08-21 Thread Mark Thomas
On 21/08/2013 21:14, Raymond Auge wrote: Hello All, I found an unanswered email from 2007 with the same question I'm about to ask http://mail-archives.apache.org/mod_mbox/tomcat-users/200711.mbox/%3C20738052.1370841195554493504.JavaMail.servlet%40kundenserver%3E Is there any option for

Re: Having trouble with common.loader

2013-08-21 Thread Daniel Mikusa
On Aug 21, 2013, at 4:09 PM, David kerber dcker...@verizon.net wrote: Basically you're trying to defeat the way the system is designed to work. Don't do that… +1 Don't do what you've described unless you have a very good reason. It will cause you many headaches. Keep all of your JAR files

Re: Having trouble with common.loader

2013-08-21 Thread Mark Eggers
On 8/21/2013 12:58 PM, D C wrote: Tomcat 7.0.40 CentOS 6.3 Java 1.7.0_21 I am trying to move all libraries out of my webapps directory, and into a common place. I have my libs that were bundled with tomcat in /tomcat/lib (the default), and my extra libs i want to keep in /web/lib. I've

Re: codeBase for antiResourceLocking / antiJARLocking

2013-08-21 Thread Raymond Auge
Right! .. I'll try to sort out why we've needed that to date. Thx On Wed, Aug 21, 2013 at 4:19 PM, Mark Thomas ma...@apache.org wrote: On 21/08/2013 21:14, Raymond Auge wrote: Hello All, I found an unanswered email from 2007 with the same question I'm about to ask

Re: Having trouble with common.loader

2013-08-21 Thread David kerber
On 8/21/2013 4:27 PM, Daniel Mikusa wrote: On Aug 21, 2013, at 4:09 PM, David kerber dcker...@verizon.net wrote: Basically you're trying to defeat the way the system is designed to work. Don't do that… +1 Don't do what you've described unless you have a very good reason. It will cause

Re: Testing session persistence with a php script

2013-08-21 Thread Daniel Mikusa
On Aug 21, 2013, at 3:59 PM, vi...@thepenguin.org wrote: I am trying to figure out if I can run my sessionpersistence script that I run with Apache to see if sessions persist between two tomcat sites on two separate servers. The load balancer has session persistence enabled but Iam unsure

Re: Testing session persistence with a php script

2013-08-21 Thread Mark Eggers
On 8/21/2013 12:59 PM, vi...@thepenguin.org wrote: I am trying to figure out if I can run my sessionpersistence script that I run with Apache to see if sessions persist between two tomcat sites on two separate servers. The load balancer has session persistence enabled but Iam unsure how to test

Re: Having trouble with common.loader

2013-08-21 Thread D C
So here is what I'm trying to achieve. 1. The tomcat install remains clean. I want to be able to change the tomcat installation without messing with the app. 2. We want our applications to be decoupled from the libraries which it needs. ( i understand the pains you are referring to.. this was

Re: Having trouble with common.loader

2013-08-21 Thread Daniel Mikusa
On Aug 21, 2013, at 4:33 PM, David kerber dcker...@verizon.net wrote: On 8/21/2013 4:27 PM, Daniel Mikusa wrote: On Aug 21, 2013, at 4:09 PM, David kerber dcker...@verizon.net wrote: Basically you're trying to defeat the way the system is designed to work. Don't do that… +1 Don't do

Re: Having trouble with common.loader

2013-08-21 Thread Daniel Mikusa
On Aug 21, 2013, at 4:48 PM, D C dc12...@gmail.com wrote: So here is what I'm trying to achieve. 1. The tomcat install remains clean. I want to be able to change the tomcat installation without messing with the app. 2. We want our applications to be decoupled from the libraries which it

Re: Having trouble with common.loader

2013-08-21 Thread D C
I added verbose, it does not appear to attempt to load anything from /web/lib/ ​ for permissions i verified that i could read the files as the tomcat user.​ ​ Thanks, Dan On Wed, Aug 21, 2013 at 5:01 PM, Daniel Mikusa dmik...@gopivotal.comwrote: On Aug 21, 2013, at 4:48 PM, D C