Upgrade from mod_jk to mod_proxy_ajp

2007-11-09 Thread Gmail User
I am having a problem with file uploads after upgrading from httpd-2.0.5x to httpd-2.2.6 and from mod_jk to mod_proxy_ajp. The Tomcat version is 5.15--for what it is worth--but that is one thing that has NOT changed. I am getting this error: "Processing of multipart/form-data request faile

Re: Tomcat and Redirects

2007-11-09 Thread Bill Barker
"Dwebb" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi All, > > I have a question about how Tomcat handles redirects. We have a vendor > who wrote an application for us and they tell us that they always use > the same method of issuing redirects in their code. > > What we have

Re: jsp done processing!

2007-11-09 Thread Bill Barker
"renen" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi Folks, > > I want to tell the browser / Tomcat that I'm done processing my JSP page > (ie, the little spinning icon in Firefox should stop spinning!). > > However, I still want to log a couple of things (duration, browser in

Tomcat 6 contractor...

2007-11-09 Thread Mike Cronin
We're looking to contract a specialist to assist us in our move to Tomcat 6.0. Please feel free to email me directly at [EMAIL PROTECTED] Thank you for your interest. Best regards, Mike Cronin Fax.com "The New Way To Fax!" www.fax.com Confidential: T

Re: Security-Manager problem

2007-11-09 Thread Mark Thomas
Leucht, Axel wrote: > Hi, > > I'm having a weird problem with my webApp under Tomact with a SecurityManager > (SM). > > When no SM is enabled, my app runs fine. When I do start tomcat with a > security manager I encounter one AccessControlException left which is: > java.security.AccessControlE

RE: Tomcat and Redirects

2007-11-09 Thread Caldarale, Charles R
> From: Tony Fountain [mailto:[EMAIL PROTECTED] > Subject: RE: Tomcat and Redirects > > Just to clarify, you can run Java programs compiled in 1.4, > but the JVM installed on the machine running the app should > be 1.5 or greater. That's not true either. All you need to run Tomcat 5.5 on a 1.4

RE: Tomcat and Redirects

2007-11-09 Thread Tony Fountain
Just to clarify, you can run Java programs compiled in 1.4, but the JVM installed on the machine running the app should be 1.5 or greater. I'm doing that now with a commercial app we purchased (Apache Tomcat 5.5.23, JVM 1.5.0_12-b04 but the application itself is compiled under Java 1.4 and runs ju

Re: Tomcat and Redirects

2007-11-09 Thread Michael
Dwebb wrote: We are running Tomcat 5.5.11, Java 1.4.2_04-b05 on Linux 2.6.9-34.ELsmp Hi Danny, you shouldn't run tomcat 5.5.x with JAva 1.4. It's designed to work with Java 5 and up. bye -- OOXML - Say NO To Microsoft Office broken standard http://www.noooxml.org ---

Re: speed up the server

2007-11-09 Thread mgainty
+1 also..to monitor memory usage run %JAVA_HOME%/bin/JConsole (and watch the individual memory categories..) M-- - Original Message - Wrom: CXLYRWTQTIPWIGYOKSTTZRCLBDXRQBGJSNBO To: "Tomcat Users List" Sent: Friday, November 09, 2007 12:45 PM Subject: Re: speed up the server > Just I n

Re: Tomcat and Redirects

2007-11-09 Thread Martin Gainty
the quick answer is to handle the response-code in web.xml e.g. 302 /axis2-web/Error/error302.jsp M-- - Original Message - From: "Dwebb" <[EMAIL PROTECTED]> To: Sent: Friday, November 09, 2007 11:35 AM Subject: Tomcat and Redirects > Hi All, > > I have a questio

Re: jsp done processing!

2007-11-09 Thread Lucas Galfaso
Hi, Never do a response.getWriter().close(); A good design would not ask you to close something that you did not open, and this is one of those cases. The full response is sent when your page "releases the thread" that is working on this request. This is, if you want to do some processing and

Re: speed up the server

2007-11-09 Thread Tony Anecito
Just I need more info about where it was deployed before it was deployed. You can not run a web app without the container so the question might be the differences in the previous environment and the the one you "deployed" into. Same questions as below but for "both" environments. The one where it w

Tomcat and Redirects

2007-11-09 Thread Dwebb
Hi All, I have a question about how Tomcat handles redirects. We have a vendor who wrote an application for us and they tell us that they always use the same method of issuing redirects in their code. What we have seen is on certain requests from a WAP handset the application will issue a redi

Security-Manager problem

2007-11-09 Thread Leucht, Axel
Hi, I'm having a weird problem with my webApp under Tomact with a SecurityManager (SM). When no SM is enabled, my app runs fine. When I do start tomcat with a security manager I encounter one AccessControlException left which is: java.security.AccessControlException: access denied (java.io.Fil

jsp done processing!

2007-11-09 Thread renen
Hi Folks, I want to tell the browser / Tomcat that I'm done processing my JSP page (ie, the little spinning icon in Firefox should stop spinning!). However, I still want to log a couple of things (duration, browser info etc). But, the users' browser doesn't need to be tied up while this happens.

Re: speed up the server

2007-11-09 Thread David kerber
The first place I'd look is the database... tbt wrote: Hi, The OS is windows XP tomcat version 6 java version 1.5 database mysql memory: 3GB processor: 2.3GHz it was working very fast before being deployed. About 30 people login simultaneously to this application. Once this happens the applica

Re: RE: How to configure ssl vhosts in server.xml?

2007-11-09 Thread Mike Schmelzer
As I've wrote I already did it like Apache says. It works somehow but it collides with the virtual hosts in the mod_jk.conf. Mike Original-Nachricht > Datum: Fri, 9 Nov 2007 09:51:29 + > Von: Nuno Manuel Martins <[EMAIL PROTECTED]> > An: Tomcat Users List > Betreff: RE: Ho

RE: How to configure ssl vhosts in server.xml?

2007-11-09 Thread Nuno Manuel Martins
Hi, Try to do as Apache says and define it like this: NameVirtualHost *:443 ServerName devsecure.bla.com [...] ServerName tstsecure.bla.com [...] Hope it helps. Regards, Nuno -Original M

Re: speed up the server

2007-11-09 Thread Pid
Peter Crowther wrote: >> From: tbt [mailto:[EMAIL PROTECTED] >> it was working very fast before being deployed. About 30 people login >> simultaneously to this application. Once this happens the >> application is very slow. > > How many concurrent users do you test with, before you deploy? 30? O

RE: speed up the server

2007-11-09 Thread Peter Crowther
> From: tbt [mailto:[EMAIL PROTECTED] > it was working very fast before being deployed. About 30 people login > simultaneously to this application. Once this happens the > application is very slow. How many concurrent users do you test with, before you deploy? 30? Or one developer checking the

How to configure ssl vhosts in server.xml?

2007-11-09 Thread Mike Schmelzer
Hi! I have a Apache Tomcat configuration with vhosts in Tomcats server.xml. Those vhost entries will be generated in the mod_jk.conf during Tomcat start. So far so good, it works pretty good. Now I have to configure ssl. At my first try I did that in the ssl_vhost.conf of the Apache:

Re: j_security_check redirect after login

2007-11-09 Thread Pid
Nicholas Sushkin wrote: > On Thursday 08 November 2007, you wrote: > >> The question I had was what happens when you directly request the login >> form and successfully login. > > Tomcat will give you an error page saying something along the lines "the > login page was accessed directly". It wo

Re: virtual host for subdomains

2007-11-09 Thread Pid
Kwok Ng wrote: > Hi folks, > > I notice some BLOG websites assign the subdomains to the registered users, > like > > user1.mydomain.com > user2.mydomain.com > > If I use the tomcat to do this, do I use the virtual host > configuration? If so, do I use the same docBase to point to one war > fil