Ok, but the main page is still in HTTPS.

Let me try to explain the flow:

1. User enter with username and password
2. User submit the form to an HTTPS address
3. A LoginAction try to authenticate the user with the data transmitted
(username and password) with HTTPS protocol
4. LoginAction forward the user to the main page. <-- Here I want the user
being forward to an HTTP address. There is no action defined after
LoginAtion. LoginAction must be secure so the username and password are
trasmitted in a secure way. But after that, no more HTTPS is necessary.

Is there way in step 4 to forward the user to a non secure page?

Thanks,
JP

-----Original Message-----
From: Robert Taylor [mailto:[EMAIL PROTECTED]
Sent: quarta-feira, 17 de março de 2004 15:29
To: Struts Users Mailing List
Subject: RE: SSLEXT


Okay. Then you should be able to place the following in your struts-config
action mapping for the main page.

<set-property property="secure"
                 value="false"/>

robert

> -----Original Message-----
> From: Joao Batistella [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, March 17, 2004 10:17 AM
> To: 'Struts Users Mailing List'
> Subject: RE: SSLEXT
>
>
> I can't. Because my main page is not a page at all. It's a Tiles
definition.
>
> Where can I find the documentation about SSLEXT? I mean the description of
> the tags?
>
> Thanks,
> JP
>
> -----Original Message-----
> From: Robert Taylor [mailto:[EMAIL PROTECTED]
> Sent: quarta-feira, 17 de março de 2004 15:09
> To: Struts Users Mailing List
> Subject: RE: SSLEXT
>
>
> Use the <sslext:pageScheme secure="false"/> on the main page.
> This should switch it back to HTTP.
>
> robert
>
> > -----Original Message-----
> > From: Joao Batistella [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, March 17, 2004 9:58 AM
> > To: 'Struts Users Mailing List'
> > Subject: SSLEXT
> >
> >
> > Hello.
> >
> > I'm now using the SSLEXT for struts (following some advices frm the
list).
> >
> > Now I have my login action protected by HTTPS, but I want the user,
after
> > login, being forward to the main page of the application using HTTP
> > protocol. Is this possible? Or I can only change the protocol in
> diferrente
> > requests?
> >
> > Thanks,
> > JP
> >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to