Hi guys,
I have my GWT application and I need to implement a process to verify
the email address when someone creates a new account.
I've the URL (
www.XXXXXX.com) which give me the whole application
every time I hit it.
In my process I'll send an email after the successful creation of the
account, this email will have a link inside like that (
www.XXXXXX.com?
method=verify&username=FFF), by hitting this URL the server will give
me the application again like the first time, then on the onModule()
of my entryPoint class, I'll take the parameters of this URL, and in
that case, I'll make and asyncronohus call to the server to verify the
email and wait for the callback to show a panel to the user saying
that the email has been verify. Before getting that callback I can
show something saying that the email has being verified while I'm
waiting for the callback.
Is it the right way to go?
Thanks in advance.