Re: AJAX calls not working with mod_proxy

2009-05-24 Thread Martin Makundi
Hi! This works fine for us: ProxyPass / http://www.mydomain.com:8080/ ProxyPassReverse / http://www.mydomain.com:8080/ RewriteEngine On RewriteCond %{SERVER_NAME} !^www\.mydomain\.com RewriteRule /(.*) http://www.mydomain.com/$1 [redirect=301L] **

AJAX calls not working with mod_proxy

2009-05-23 Thread Michael Plöd
Hi, I am currently struggling with a very strange behaviour between Wicket (1.3.4) and my mod_proxy configuration. The usual calls to BookmarkablePageLinks work perfectly. The same goes out to resource loading and so on. However, as soon as I want to work with AjaxFallbackLinks and so on I always

Re: AJAX calls not working with mod_proxy

2009-05-23 Thread James Carman
I've never been able to set up a proxied connection to /. I've always had to do a forward to my webapp's URL. On Sat, May 23, 2009 at 7:09 PM, Michael Plöd michael.pl...@gmail.com wrote: Hi, I am currently struggling with a very strange behaviour between Wicket (1.3.4) and my mod_proxy