The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
138 views

Getting Country Based on IP - Java

Im using Struts2, Google App Engine. Below is my program for getting the country based on IP of the visitor of the website. In my Struts2 action: HttpServletRequest request = ...
1
vote
2answers
129 views

Aggregation on List - Java

Im using the following technologies: Google App Engine, GAE Datastore, Struts2. Common lang java library were also used. Because of the limitation on aggregation for datastore, im using jagg for ...
1
vote
2answers
111 views

Session in Struts2 and Google App Engine

Im using Struts2 running in google app engine. User can use their google and facebook account to login to the site. When a user login, i have: session.put("email", email); When a user log-out, I ...