Newbie question on remoting

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

Is it possible for a remote application to access local application's global variables?

How can this be done?

Regards
 
Short answer is no, not at all.

Long answer is still no. They are two completely separate applications
that could be running on different machines. Therefore there is no
sharing of code other than the interface code that MUST be the same on
both sides. However, that does not mean that the variable data is
shared, just the code to define them.

If you need to pass the data from one to the other, you will need to
define a method to pass the data.

HTH

David
 
Back
Top