SV: Request Https page

2010-05-19 Thread Wilhelmsen Tor Iver
> https://localhost:8080/test

Typically, a container will have a HTTPS-enabled connector on a different port; 
in Glassfish by default it is 8181, on Tomcat it is by default disabled but 
seems to have the value 8443 in a default server.xml (443 being the "assigned" 
port that you need root/admin privileges to open).

So if you enable it on Tomcat it would be

https://localhost:8443/test

- Tor Iver

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



Re: Request Https page

2010-05-18 Thread Igor Vaynberg
https://localhost:8080/test

-igor

On Mon, May 17, 2010 at 10:54 PM, v...@wav@gmail.com  wrote:
>
> Hello,
>
> I have implemented the HttpsRequestCycleProcessor in the application class
> and added @RequiredHttps in the Login Page.
>
> But i haven't used https in any of the application before. Could anyone tell
> how to access the page from the browser. If  it is a http page, we simply
> call like http://localhost:8080/test. But how to call the application for
> https request.
>
>
> --
> View this message in context: 
> http://apache-wicket.1842946.n4.nabble.com/Request-Https-page-tp2197896p2220768.html
> Sent from the Wicket - User 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
>
>

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



Re: Request Https page

2010-05-17 Thread v...@wav@gmail.com

Hello,

I have implemented the HttpsRequestCycleProcessor in the application class
and added @RequiredHttps in the Login Page.

But i haven't used https in any of the application before. Could anyone tell
how to access the page from the browser. If  it is a http page, we simply
call like http://localhost:8080/test. But how to call the application for
https request.


-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Request-Https-page-tp2197896p2220768.html
Sent from the Wicket - User 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



Re: Request Https page

2010-05-13 Thread Igor Vaynberg
see HttpsRequestCycleProcessor

-igor

On Thu, May 13, 2010 at 10:22 AM, sakthi vel  wrote:
> Hello,
>
> Can anyone tell how to request a page using https (Login page).
>

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



Request Https page

2010-05-13 Thread sakthi vel
Hello,

Can anyone tell how to request a page using https (Login page).