> My problem is not specific to wicket but I'm hoping that someone in the
> community has fought this battle before and is willing to lend a helping
> hand. I am using the HttpsRequestCycleProcessor and I only have the
> @RequireHttps annotation on one page, the registration page. I have apache
> httpd and tomcat talking to each other with a virtual host using proxypass
> and proxypassreverse on port 80 and all that is working fine. The problem
> becomes when I try to configure everything for SSL. I'm unsure whether I
> need SSL to be configured in tomcat and apache httpd or just one of them and
> not the other. I have generated a self signed certificate and key file for
> apache httpd and tried it with just that. When that did not work I pointed
> tomcat to the same files. Still nothing.

It sounds like you have your SSL for apache incorrectly configured. First start 
by getting SSL configured and working correctly for your apache. Create a test 
page and make sure you can see it over HTTPS. Then verify that you've added 
your tomcat connector to your HTTPS server e.g.
<VirtualHost _default_:443>#   General setup for the virtual hostDocumentRoot 
/usr/local/www/webapps/ROOTServerName www.example.com:443ErrorLog 
"/usr/apache/apache-2.2.11/logs/error_log"TransferLog 
"/usr/apache/apache-2.2.11/logs/access_log"JkMount  /app/* worker1JkMount 
/asyncService/* worker1JkMount /*.jsp worker1
#   SSL Engine Switch:#   Enable/Disable SSL for this virtual host.SSLEngine 
on.......</VirtualHost>
If you want to use proxy pass instead of mod_jk, that shouldn't be an issue.
Russ                                      
_________________________________________________________________
The New Busy think 9 to 5 is a cute idea. Combine multiple calendars with 
Hotmail. 
http://www.windowslive.com/campaign/thenewbusy?tile=multicalendar&ocid=PID28326::T:WLMTAGL:ON:WL:en-US:WM_HMP:042010_5

Reply via email to