RE: Tomcat Web App - Strange Issue - Need 2 restarts for SSO mode to work

2010-09-03 Thread AVSUNIL
Tomcat ver 5.0.19 JVM 1.5 Linux platform No exceptions in logs Single SIgn On mode works through a load balancer Normal mode URL hits the individual server directly In below mail, the jsp name was put incorrectly. It is always invoking myapp.jsp From the web.xml I infer that if listings or 404

Re: Best practice to upgrade (redeploy) .war files

2010-09-03 Thread Rainer Frey
On Monday 30 August 2010 12:55:19 Rainer Frey wrote: Hi, It's not normally my style, but is there really no feedback on this topic? Does anyone use explicit hot deployment with Tomcat Manager in production? How do you actually upgrade deployed applications? And if you use cold deployment

Re: Questions about Server Side Includes (SSI) implementation

2010-09-03 Thread Mark Thomas
On 01/09/2010 22:14, Christopher Schultz wrote: Was this done for performance reasons? Not to my knowledge. I have to imagine that a parallel SSI processor configuration could avoid these potentially large buffers without degrading performance: a win-win. +1 Complications arise, of course,

Re: Host Manager.

2010-09-03 Thread Mark Thomas
On 02/09/2010 23:14, Christopher Schultz wrote: Jeffrey, On 9/2/2010 5:40 PM, Jeffrey Janner wrote: I'd be happy if it just wrote out a new file based on the settings at the time I said save -- damn the comments. At least then, it's a pretty straight-forward bit of save code. But, if

Re: Best practice to upgrade (redeploy) .war files

2010-09-03 Thread Ognjen Blagojevic
Hi, I just use Tomcat Manager webapp: undeploy and deploy without restarting Tomcat. It brings no downtime to other webapps/hosts on the same Tomcat, and downtime of the webapp itself is few seconds per deploy. This is acceptable for me, since the server load is really low. If a webapp

Re: Best practice to upgrade (redeploy) .war files

2010-09-03 Thread Domenico Briganti
Il giorno ven, 03/09/2010 alle 08.53 +0200, Rainer Frey ha scritto: How do you actually upgrade deployed applications? There is a recent thread on this topic, see http://old.nabble.com/Best-practices-for-deployment-on-cluster-environment-td29532493.html If you need service continuity, you

Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread Michele Mase'
On Sun, Jul 25, 2010 at 9:06 PM, Michele Mase' michele.m...@gmail.comwrote: Hi folks! I've a strange problem, please help me to find a solution (not telling me to make a script in order restart tomcat in case of the exception) Under linux environment, RedHat EL5.5 Jdk 1.5.0_22 Tomcat6.0.26

URL Rewrite

2010-09-03 Thread michel
I have been using the tuckey urlrewrite with some results, in that if I want to have an incoming URL coming in as gallery/pic20 gets changed to gallery.jsp?pic=20 But the tool bar URL gets displayed as gallery.jsp?pic=20 and I want to display gallery/pic20 I tried the 'outbound-rule',

Re: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread André Warnier
Hi. From what I can see below (and what you explain yourself), this problem has nothing to do with Tomcat. It is the (your) webapp which uses an SSL connection to some other server, and which receives this exception. Tomcat does not even know that this is happening. Tomcat in this case is

Re: URL Rewrite

2010-09-03 Thread Pid
On 03/09/2010 11:02, michel wrote: I have been using the tuckey urlrewrite with some results, in that if I want to have an incoming URL coming in as gallery/pic20 gets changed to gallery.jsp?pic=20 But the tool bar URL gets displayed as gallery.jsp?pic=20 and I want to display

Re: URL Rewrite

2010-09-03 Thread Ognjen Blagojevic
On 3.9.2010 12:02, michel wrote: I have been using the tuckey urlrewrite with some results, in that if I want to have an incoming URL coming in as gallery/pic20 gets changed to gallery.jsp?pic=20 But the tool bar URL gets displayed as gallery.jsp?pic=20 and I want to display gallery/pic20

Re: Tomcat Web App - Strange Issue - Need 2 restarts for SSO mode to work

2010-09-03 Thread Pid
On 03/09/2010 07:31, AVSUNIL wrote: Tomcat ver 5.0.19 Which was released 2004-08-28, over 6 years ago. The most recent v5.0.29 was released 2005-02-19 - because 5.0.x is no longer supported. Upgrading to the latest 5.5 shouldn't be too much of a trauma - you're already on Java 5. I'm not

Re: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread Michele Mase'
Both windoz and linux use the same java :( On Fri, Sep 3, 2010 at 12:01 PM, André Warnier a...@ice-sa.com wrote: Hi. From what I can see below (and what you explain yourself), this problem has nothing to do with Tomcat. It is the (your) webapp which uses an SSL connection to some other

Re: [email] Dynamic attachments in mailer taglib 2 using JavaBean

2010-09-03 Thread Pid
On 03/09/2010 04:49, Ferindo Middleton wrote: I've written a javabean that connects to a database, downloads a file, and one of the getter methods returns the complete file path to the file. The problem I have is: when the JSP runs and gets to the part where it gets the file path to pass to

Re: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread André Warnier
Michele Mase' wrote: Both windoz and linux use the same java :( Well no, they are NOT the same, even if they have the same version. The Windows java JVM is a Windows executable program (java.exe). The Linux java JVM is a Linux executable program. Each is compiled from presumably much the

Re: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread André Warnier
Michele, I just want to clarify my previous answers : I am not saying that the problem that you encounter is *necessarily* a bug in one or the other JVM. You have not shown the code of your webapp, so we cannot tell you that the problem is there either. One thing we can tell you, is that the

RE: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread Caldarale, Charles R
From: André Warnier [mailto:a...@ice-sa.com] Subject: Re: Anyone? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux Both windoz and linux use the same java :( That is a myth. Besides the points André brings up, even the .class files of the JRE

Re: [email] Dynamic attachments in mailer taglib 2 using JavaBean

2010-09-03 Thread Ferindo Middleton
That's what I can't understand. Should my call to the bean be a valid non-static code to get that value? I am new to java javabeans. The statement you wrote is exactly my statement in the JSP: yourbeanname.getTempFilePath() Is the same as:

Re: [email] Dynamic attachments in mailer taglib 2 using JavaBean

2010-09-03 Thread Wesley Acheson
No Ferindo. What he's saying is you are calling the class not an instance of the class. You can only call a class if the method is stactic. http://download.oracle.com/javase/tutorial/java/javaOO/classvars.html On Fri, Sep 3, 2010 at 3:32 PM, Ferindo Middleton ferindo.middle...@gmail.com

Re: [email] Dynamic attachments in mailer taglib 2 using JavaBean

2010-09-03 Thread Pid
On 03/09/2010 14:36, Wesley Acheson wrote: No Ferindo. What he's saying is you are calling the class not an instance of the class. You can only call a class if the method is stactic. http://download.oracle.com/javase/tutorial/java/javaOO/classvars.html jsp:useBean id=getFilePath

Unexpected errors after opening port 80

2010-09-03 Thread Faro Stephen (NHS Connecting for Health)
I am running a Tomcat server on Windows Server 2003 RC2 over HTTPS (443). The server has been running smoothly for many months with 100s of thousands of daily transactions. Yesterday my networks team modified the firewall rules to permit traffic on port 80, it could be a coincidence but after

Re: Unexpected errors after opening port 80

2010-09-03 Thread Pid
On 03/09/2010 15:33, Faro Stephen (NHS Connecting for Health) wrote: I am running a Tomcat server on Windows Server 2003 RC2 over HTTPS (443). The server has been running smoothly for many months with 100s of thousands of daily transactions. Excellent. Yesterday my networks team modified

Re: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread Michele Mase'
For Andrè If you read in a better way my mail, you find the attachment *wsloader.txt *that is the code of the bad webapp :D For Chuck Is Java really cross-platform? For all: I forgot to tell you that we are using the Strong Cryptography Library Java Cryptography Extension (JCE) Unlimited Strength

RE: Unexpected errors after opening port 80

2010-09-03 Thread Caldarale, Charles R
From: Pid [mailto:p...@pidster.com] Subject: Re: Unexpected errors after opening port 80 How does this have any bearing on a firewall port being opening and some database errors? It's possible that opening port 80 has enabled a much larger set of attacks to get through the firewall now,

RE: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread Caldarale, Charles R
From: Michele Mase' [mailto:michele.m...@gmail.com] Subject: Re: Anyone? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux For Chuck Is Java really cross-platform? Definitely - once the JRE is ported to the platform of interest. But down in

Re: Unexpected errors after opening port 80

2010-09-03 Thread Pid
On 03/09/2010 16:01, Caldarale, Charles R wrote: From: Pid [mailto:p...@pidster.com] Subject: Re: Unexpected errors after opening port 80 How does this have any bearing on a firewall port being opening and some database errors? It's possible that opening port 80 has enabled a much

Re: Anyone????? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux

2010-09-03 Thread André Warnier
Caldarale, Charles R wrote: From: Michele Mase' [mailto:michele.m...@gmail.com] Subject: Re: Anyone? intermittent javax.net.ssl.SSLException: Invalid padding tomcat6.x axis 1.4 jdk 1.5 linux For Chuck Is Java really cross-platform? Definitely - once the JRE is ported to the platform of

RE: Host Manager.

2010-09-03 Thread Jeffrey Janner
-Original Message- From: Pid [mailto:p...@pidster.com] Sent: Thursday, September 02, 2010 7:57 PM To: Tomcat Users List Subject: Re: Host Manager. On 02/09/2010 21:06, Caldarale, Charles R wrote: From: Wesley Acheson [mailto:wesley.ache...@gmail.com] Subject: Host Manager.

multiple Context elements in conf/context.xml file

2010-09-03 Thread Tom H
my existing conf/context.xml file has already a Context element; Context WatchedResourceWEB-INF/web.xml/WatchedResource /Context I would like to add another to allow access to the /manager/status location to my monitoring, however adding a new Context element like so; conf/context.xml

Re: multiple Context elements in conf/context.xml file

2010-09-03 Thread Pid
On 03/09/2010 18:47, Tom H wrote: my existing conf/context.xml file has already a Context element; Context WatchedResourceWEB-INF/web.xml/WatchedResource /Context I would like to add another to allow access to the /manager/status location to my monitoring, however adding a new

Tomcat 6.0.20 ssl

2010-09-03 Thread Johnson, Rob E
Hi, I've purchased an apache certificate (x509) from VeriSign and imported the certificate okay and changed the server.xml file: Connector port=443 minSpareThreads=5 maxSpareThreads=75 enableLookups=true disableUploadTimeout=true acceptCount=100 maxThreads=200

RE: Tomcat 6.0.20 ssl

2010-09-03 Thread Caldarale, Charles R
From: Johnson, Rob E [mailto:rob.john...@boemre.gov] Subject: Tomcat 6.0.20 ssl Connector port=443 minSpareThreads=5 maxSpareThreads=75 enableLookups=true disableUploadTimeout=true acceptCount=100 maxThreads=200 scheme=https secure=true SSLEnabled=true keystoreFile=C:\Program

RE: Tomcat 6.0.20 ssl

2010-09-03 Thread Johnson, Rob E
thanks Rob Johnson MBA/IT IT Specialist BOEMRE 303-231-3963 303-589-9278 (Cell) -Original Message- From: Caldarale, Charles R [mailto:chuck.caldar...@unisys.com] Sent: Friday, September 03, 2010 2:22 PM To: Tomcat Users List Subject: RE: Tomcat 6.0.20 ssl From: Johnson, Rob E

Re: URL Rewrite

2010-09-03 Thread michel
- Original Message - From: Ognjen Blagojevic ognjen.d.blagoje...@gmail.com To: Tomcat Users List users@tomcat.apache.org Sent: Friday, September 03, 2010 6:42 AM Subject: Re: URL Rewrite On 3.9.2010 12:02, michel wrote: I have been using the tuckey urlrewrite with some results, in

Re: URL Rewrite

2010-09-03 Thread michel
- Original Message - From: Pid p...@pidster.com To: Tomcat Users List users@tomcat.apache.org Sent: Friday, September 03, 2010 6:29 AM Subject: Re: URL Rewrite On 03/09/2010 11:02, michel wrote: I have been using the tuckey urlrewrite with some results, in that if I want to have an