Re: Configure http and https with apache and jboss

2011-07-06 Thread Igor Vaynberg
to create > your own root application." Renaming it ROOT removes the myapp in the url > within wicket. > > I hope this helps any one else trying to setup in a similar way. As I first > thought, it wasnt anything in wicket. Thank you all for your help. > > -- &

Re: Configure http and https with apache and jboss

2011-07-06 Thread vp143
g it ROOT removes the myapp in the url within wicket. I hope this helps any one else trying to setup in a similar way. As I first thought, it wasnt anything in wicket. Thank you all for your help. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Configure-http-a

Re: Configure http and https with apache and jboss

2011-07-01 Thread Jeremy Levy
you reply to this email, your message will be added to the discussion > below: > > > http://apache-wicket.1842946.n4.nabble.com/Configure-http-and-https-with-apache-and-jboss-tp3633546p3638211.html > > To unsubscribe from Configure http and https with apache and jboss, click >

Re: Configure http and https with apache and jboss

2011-07-01 Thread vp143
gt; > > If you reply to this email, your message will be added to the discussion > below: > http://apache-wicket.1842946.n4.nabble.com/Configure-http-and-https-with-apache-and-jboss-tp3633546p3638211.html > To unsubscribe from Configure http and https with apache and jboss, cli

Re: Configure http and https with apache and jboss

2011-07-01 Thread Martin Grigorov
ed the protocol is > https but request.getScheme() returns http. Why would this be? > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Configure-http-and-https-with-apache-and-jboss-tp3633546p3638188.html > Sent from the Users forum mailing li

Re: Configure http and https with apache and jboss

2011-07-01 Thread vp143
/Configure-http-and-https-with-apache-and-jboss-tp3633546p3638188.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

Re: Configure http and https with apache and jboss

2011-06-30 Thread vp143
request.getRequestURI()) -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Configure-http-and-https-with-apache-and-jboss-tp3633546p3635405.html Sent from the Users forum mailing list archive at Nabble.com. - To

Re: Configure http and https with apache and jboss

2011-06-30 Thread Martin Grigorov
; > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Configure-http-and-https-with-apache-and-jboss-tp3633546p3635299.html > Sent from the Users forum mailing list archive at Nabble.com. > > -

Re: Configure http and https with apache and jboss

2011-06-30 Thread vp143
/SwitchProtocolRequestTarget classes? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Configure-http-and-https-with-apache-and-jboss-tp3633546p3635299.html Sent from the Users forum mailing list archive at Nabble.com. - To

Re: Configure http and https with apache and jboss

2011-06-30 Thread Martin Grigorov
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/Con

Re: Configure http and https with apache and jboss

2011-06-30 Thread vp143
: 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

Re: Configure http and https with apache and jboss

2011-06-30 Thread Martin Grigorov
gt; View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Configure-http-and-https-with-apache-and-jboss-tp3633546p3635048.html > Sent from the Users forum mailing list archive at Nabble.com. > > -

Re: Configure http and https with apache and jboss

2011-06-30 Thread vp143
context: http://apache-wicket.1842946.n4.nabble.com/Configure-http-and-https-with-apache-and-jboss-tp3633546p3635048.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: Configure http and https with apache and jboss

2011-06-29 Thread Martin Grigorov
On Wed, Jun 29, 2011 at 8:58 PM, Vishal Popat wrote: > I am trying to configure my web app to use http and https. I am using the > following code in my Application class: > protected IRequestCycleProcessor newRequestCycleProcessor() { >        HttpsConfig config = new HttpsConfig(80, 443); >    

Re: Configure http and https with apache and jboss

2011-06-29 Thread vp143
t; may lie elsewhere. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Configure-http-and-https-with-apache-and-jboss-tp3633546p3634045.html Sent from the Users forum mailing list archive at Nabble.com. --

Re: Configure http and https with apache and jboss

2011-06-29 Thread nino martinez wael
If I had this problem to solve, I'd start off first by showing a html file in apache over https, and next step adding in wicket without https, and then joining them afterwards.. Asking both apache httpd forum and this one (as you've already done) If having problems.. As a last step, i'd write a ni

Configure http and https with apache and jboss

2011-06-29 Thread Vishal Popat
I am trying to configure my web app to use http and https. I am using the following code in my Application class: protected IRequestCycleProcessor newRequestCycleProcessor() { HttpsConfig config = new HttpsConfig(80, 443); return new MyHttpsRequestCycleProcessor(config); }