[appengine-java] persisting Vectors and ArrayList

2009-10-29 Thread Jos Snellings
Hi, I have the impression that AppEngine GDO is having trouble with persisting Vector and ArrayList members, although according to the documentation these classes enjoy persistence capability. When they are resurrected from the repository ... they seem to have become onedimensional: only the fir

[appengine-java] Re: Own Login system

2009-09-10 Thread Jos Snellings
how do > I control the referrals a user obtains to my website? > > Last but not least, there's a simple way to know which links a logged > user clicks on? > > Thanks. > > Tiago > > > On Sep 10, 10:26 am, Jos Snellings > wrote: >> What do you mean by

[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

[appengine-java] Re: Reg-What Java Frameworks supports With Google Java App Engine

2009-09-02 Thread Jos Snellings
http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine On Wed, Sep 2, 2009 at 9:06 AM, kanth wrote: > > Hi, > > I am new to Google Java App Engine.Is Google Java App Engine supports > Java Frame works like Struts1.x Struts2,JSF,etc? > > OR > > just one can develop by

[appengine-java] Re: There is a problem about arraylist and integer.parse().

2009-08-26 Thread Jos Snellings
Hi, The problem is that the ".toString()" method won't work as you expected. The proper way to build a string with your acquired input is: String fromCmdLine = new String(buffer). That makes sure your typed in ints will be coming in correctly. Best, Jos On Thu, Aug 27, 2009 at 5:21 AM, CJ wro

[appengine-java] Re: Restricting access to a page, http basic authentication or whatever is available

2009-08-26 Thread Jos Snellings
Hi Johannes, You can use Google's own authentication mechanism for that. From within any context, whether servlet or jsp: UserService userService = UserServiceFactory.getUserService(); User user = userService.getCurrentUser(); If the User is unknown you can send the user to a login page. This