i´m using 3
jsp pages to retrieve personal info of registered members:
checklogin.jsp, this file is verifying, whether someone is registered,
select.jsp, this file contains the select query and
GSON.jsp, this file contains gson object with results from the previously mentioned select query. The login and password is sent from android application...My problem is that the output shows everywhere null.
This part of code (
checklogin.jsp) records data from login form. (the username is stored to session)
This part of code is selecting info of this logged member and stores this info to sessions(
select.jsp)
This part is displaying the info(
gson.jsp):
This gson.jsp is showing
null everywhere. I dont know where is the problem, because when i tried to login from jsp form(not from android), the
gson.jsp shows me the info of logged person.
Can you help me?
Thanks.