I think last time this came up it ended out being some issue with jetty?

2009/11/11 Rangel Preis <rangel...@gmail.com>

> I extends HttpsRequestCycleProcessor and SwitchProtocolRequestTarget
> to make my custom HttpsRequestCycleProcessor....
> In the method getUrl from SwitchProtocolRequestTarget i just remove the
> port:
>
>         if (port != null) {
>          result.append(":");
>          result.append(port);
>         }
>
> But don't work, the url are correct but the page don't load i think i
> miss something in apache.
>
> Anyone make something like this?
>
> Thanks.
>
> 2009/11/10 Rangel Preis <rangel...@gmail.com>:
> > The unique solution that i found is extends HttpsRequestCycleProcessor
> > to change only the protocol.
> >
> > Any other ideia? Thanks All.
> >
> > 2009/11/10 Rangel Preis <rangel...@gmail.com>:
> >> The situation here is:
> >>
> >> https                          http
> >> --------->   Apache   -------> Jetty
> >>
> >>
> >> Using wicket in my WicketApplication I put
> >>
> >>  private static final HttpsConfig HTTPS_CONFIG = new
> >> HttpsConfig(HTTP_PORT, HTTPS_PORT);
> >>
> >>    @Override
> >>    protected IRequestCycleProcessor newRequestCycleProcessor() {
> >>        return new HttpsRequestCycleProcessor(HTTPS_CONFIG);
> >>    }
> >>
> >> And in my LoginPage.java i have @RequireHttps
> >>
> >> When i try to run the system with this config i get a error because
> >> Wicket assumes the HTTPS control and try to change the URL (port and
> >> replace http to https)
> >>
> >> How i say to wicket to just change the protocol to HTTPS? And don't
> >> change the port?
> >>
> >> Thanks
> >>
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

Reply via email to