The port being passed was null. The code in HttpsRequestCycleProcessor that
sets the port is:
                Integer port = null;
                if (protocol == Protocol.HTTP) {
                        if (processor.getConfig().getHttpPort() != 80) {
                                port = processor.getConfig().getHttpPort();
                        }
                }
                else if (protocol == Protocol.HTTPS) {
                        if (processor.getConfig().getHttpsPort() != 443) {
                                port = processor.getConfig().getHttpsPort();
                        }
                }
Why is the port only set if its not 80 or 443. If its 80 or 443 then its
null. I guess if its the default ports then they do not need to be set?

I amended the code so that a port is set, but still no difference i.e. I
still get a 404.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Configure-http-and-https-with-apache-and-jboss-tp3633546p3635246.html
Sent from the Users forum mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org

Reply via email to