Re: T5 application behaviour behind an apache web server

2008-08-06 Thread Peter Stavrinides
Hi Grigoris, This is a standard configuration issue which has little to do with Tapestry, you use a reverse proxy, but also need to have a sticky session and also set the route/JVMRoute parameter. In Tomcat you set it on the connector in server.xml (should be similar for JBoss). This is neede

Re: T5 application behaviour behind an apache web server

2008-08-04 Thread Grigoris Ioannou
Finally this solved the problem: I used both of your suggestions: I replaced ROOT.war with my application and I set "tapestry.suppress-redirect-from-action-requests" to true This seems to solve the problem. Thanks, Grigoris On Fri, Aug 1, 2008 at 4:18 PM, Jonathan Barker <[EMAIL PROTECTED] > wr

RE: T5 application behaviour behind an apache web server

2008-08-01 Thread Jonathan Barker
I've used a different technique for the apache->jboss connection, but faced the same problem. Unless someone else has a better solution, you can replace the ROOT.war in the JBoss tomcat service with your application. Jonathan > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: T5 application behaviour behind an apache web server

2008-08-01 Thread Carl Crowder
I've had a similar problem. It's because when Jetty redirects you, it uses "request.getServerName()" and the request context to create a complete URL. So if you go to your app at "http://localhost/page";, and that sends a redirect, Jetty will redirect you to "http://localhost/whatever";. The prob