Hi Miguel,
Sorry if it's a bit late but I can give you some piece of code. Not rocket
science but maybe you won't lose time on this part.
What we do:
- reusable login panel + loginHelper
- used in D2W and non D2W apps
- of course no session until the user is authenticated
- handle SSL in deploym
The big problem with having your login page being session full is that it will
time out.
User lands on the page, goes and watches Agents of Shield…
Returns, attempts to login, is presented with a session timout etc.
D
On Nov 6, 2013, at 5:26 PM, Miguel Torres wrote:
> Thanks Chuck and Amedeo
why don't you create a new D2W app and look at how this is accomplished. the
landing main page is a simple html page that fires the direct action and logs
the user in.
use it as the 'template' for what you want.
Ted
On Nov 6, 2013, at 5:26 PM, Miguel Torres wrote:
> Thanks Chuck and Amedeo
Thanks Chuck and Amedeo for the response.
We are about to liberate an application that would be open to the mass market.
All application we have developed so far are enterprise oriented and are used
on intranets.
We want that the main page of our site be a landing page that allows the user
to
Very briefly, you need to:
* make the form submit to a direct action
* get the form values manually from the request
* Return the real first page if authentication succeeds
* Return the login page if not. You will need to initialize with an error
message if authentication failed
Session is really little. Why do u want avoid ?
Sent from my iPhone
> On 06/nov/2013, at 22:57, Miguel Torres wrote:
>
> Hi list,
>
> I am sure that I already have read about this some where but I can't find it.
>
> We want to separate the login page from our application, I mean we want to
>