[appengine-java] Re: Own Login system

2009-09-10 Thread TiagoP
Thanks for the help Jos. I will see what I can do with that :) About the affiliate system, do you have any tips for me? BR On Sep 10, 2:21 pm, Jos Snellings wrote: > Hi Tiago, > > A very simple means is to create your own persistent 'user' object. > GAE will let you save users, retrieve users

[appengine-java] Re: Own Login system

2009-09-10 Thread Jos Snellings
Hi Tiago, A very simple means is to create your own persistent 'user' object. GAE will let you save users, retrieve users, and you can validate users. Now, here it is important to assess the security and confidentiality requirements of your web application: you may not want usernames and password

[appengine-java] Re: Own Login system

2009-09-10 Thread TiagoP
Thanks for the reply. I'm very new to google app engine. Answering your question, what I want is a simple login/register system where the user inserts e-mail and password to register and logins. The question is: Is as easy as just save the e-mail/password and then query the login to see if it ma

[appengine-java] Re: Own Login system

2009-09-10 Thread leszek
Why not create simple "CRUD" for keeping log-id and password and simple dialog to get login id and password and check against persisted class being managed by this "CRUD". It could be a good starting point. --~--~-~--~~~---~--~~ You received this message because you

[appengine-java] Re: Own Login system

2009-09-10 Thread Jos Snellings
What do you mean by "own login system"? Do you have an authentication system outside of the Google cloud? You are by no means obliged to use Google's "User" mechanism. Could you be a little bit more specific about the user authentication mechanism that you have in mind? Kind regards, Jos Snelling

[appengine-java] Re: Own Login system

2009-09-10 Thread TiagoP
Nobody can help us? BR On Sep 9, 9:55 pm, Filipe AlvesFerreira wrote: > Hi I'm interest in the same subject.Thank you. > Regards/FilipeAlvesFerreira#4(1942) > > 2009/9/9 TiagoP > > > > > Hi, > > > I would like to create a very simple app with: my own login system, > > affiliate system and I wa

[appengine-java] Re: Own Login system

2009-09-09 Thread Filipe AlvesFerreira
Hi I'm interest in the same subject.Thank you. Regards/FilipeAlvesFerreira#4(1942) 2009/9/9 TiagoP > > Hi, > > I would like to create a very simple app with: my own login system, > affiliate system and I want to be able to control the number of links > each user opens on my website. > > Is it po