afaik wicket should not mess with http vs https, it works on whatever the request is. so it might be that your loadbalancer forwards the request over http instead of https so to wiket it seems like you are accessing over http?


-igor


On 11/5/06, Joshua Lim <[EMAIL PROTECTED]> wrote:
Hi wicket users,

I need some help on running an wicket application behind a SSL load balancer.

The wicket application is running on a weblogic server,  and accessing the application works fine on its own.(i.e . accessing via IP+port number)
and testing it with apache + mod_ssl + mod_jk + tomcat works too.

However, once a cluster of apache web server and an  SSL loadbalancer is put in front of it, the application cannot be reached.
basically the logs suggests :

1/ request is sent to the SSL loadbalancer  is routed correctly the app server (i.e. we call https://someserver.comp.com/myWicketApp... )
2/ the (myWicketApp) application redirects to my login page (http://someserver.comp.com/loginPage ... )

It basically cannot find the app server. because, myWicketApp, redirects to the login page via "http" and not "https". 

I read http://www.wicket-wiki.org.uk/wiki/index.php/Switch_to_SSL_mode but I want to whole application behind the SSL so I don't think I need to implement that, and SSL is being handled by the SSL loadbalancer, so everything shold just work relatively right?

I did try to  impement newRequestCycleProcessor() in myWicketApp application and basically just change it the protocol to "https" but that gave me an "Already redirecting to .... " error - I am using a modified SimplePageAuthorizationStrategy.

Anyone with experience with a this kind of set up?

Thanks
Josh


-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to