Remoting thread access to server app

alawson

New member
Joined
Apr 16, 2006
Messages
1
Programming Experience
10+
I'm trying to build an application using remoting where the client needs to get access to data in the memory of the server application. When you invoke remoting, on the server the remoting class is in its own thread. While this is great if I want to run SQL calls and the like, how do I get access to the server application memory?
 
I don't think u can directly access memory of server by client. Although you can use "Contexts" to share the data betweent server and client. Otherwise you can also use class level variables and object to get data from server.
 
Back
Top