In my server-client model I’m using java for client side and for server side scripting using php5.
For communication I’m using simple http protocol.
In server I have some $SESSION variables(in php). I want access these variables in my java client.
How can it be posssible?
Thanks in advance.
AFAIK session variables is a server-side variables, that can be accessed by session id. You must refactor you application (to make java-client free of server side information) or send them (variables) from server to client manually.