Re: [Wicket-user] Wicket Application behind a proxy

2006-02-18 Thread Johan Compagner
i am currently fixing this so that you can decide what the context path must beapplication.getApplicationSettings().setContextPath()will set it to use the root (what you use from the outside) johanOn 2/17/06, Al Maw [EMAIL PROTECTED] wrote: Timo Stamm wrote: I have a proxy server:http://proxy.com/

Re: [Wicket-user] Wicket Application behind a proxy

2006-02-04 Thread Martijn Dashorst
Also, don't forget you can change the redirect pattern so Wicket doesn't do redirects anymore. This would mean that you can't do redirect after post but that may be something you can live with. Martijn On 2/3/06, Timo Stamm [EMAIL PROTECTED] wrote: Mark Derricutt schrieb: On 2/4/06, Timo

[Wicket-user] Wicket Application behind a proxy

2006-02-03 Thread Timo Stamm
Hi. I have to use a proxy (apache with mod_proxy) in front of my wicket application. This means that all redirects (and requests) must point to the proxy server, not the wicket application. So my question is: Where can I modify the construction of redirect URLs in wicket? Timo

Re: [Wicket-user] Wicket Application behind a proxy

2006-02-03 Thread Flemming
I also use mod_proxy with wicket, but I have not encountered any need to modify the urls. What is causing you to do it? /Flemming Timo Stamm wrote: Hi. I have to use a proxy (apache with mod_proxy) in front of my wicket application. This means that all redirects (and requests) must

Re: [Wicket-user] Wicket Application behind a proxy

2006-02-03 Thread Timo Stamm
Hi Flemming. Thanks for asking, I guess my question was too unspecific. Flemming schrieb: I also use mod_proxy with wicket, but I have not encountered any need to modify the urls. What is causing you to do it? It is a requirement of some important legacy apps and can't be circumvented.

Re: [Wicket-user] Wicket Application behind a proxy

2006-02-03 Thread Mark Derricutt
On 2/4/06, Timo Stamm [EMAIL PROTECTED] wrote: The request forwarding works flawlessly, but the redirect locationscreated by wicket point to the app server. This is what I expect, but Ineed these redirects to point to the proxy server. >From memory mod_proxy has TWO options, the forward proxy, and

Re: [Wicket-user] Wicket Application behind a proxy

2006-02-03 Thread Timo Stamm
Mark Derricutt schrieb: On 2/4/06, Timo Stamm [EMAIL PROTECTED] wrote: The request forwarding works flawlessly, but the redirect locations created by wicket point to the app server. This is what I expect, but I need these redirects to point to the proxy server. From memory mod_proxy has