N
Nick Zdunic
I have a remotable object running in my host application.
The host starts up and creates the object. Within a method to start the
remote object doing its thing it creates an object.
This object reference is passed into another object create within the same
method.
A sample of remote object goes something like this:
Public Sub Start()
_microListener = New TcpClient
_microHub = MicroControllerHub.GetInstance()
_microHub.SetTcpClient(TcpClient)
End Sub
The microListener is passed into the _microHub (which is a Singleton)
The microListener object seems to be alive in the calling object but for
some reason the reference is lost
In the _microHub object.
Any remoting experts out there who can help?
The host starts up and creates the object. Within a method to start the
remote object doing its thing it creates an object.
This object reference is passed into another object create within the same
method.
A sample of remote object goes something like this:
Public Sub Start()
_microListener = New TcpClient
_microHub = MicroControllerHub.GetInstance()
_microHub.SetTcpClient(TcpClient)
End Sub
The microListener is passed into the _microHub (which is a Singleton)
The microListener object seems to be alive in the calling object but for
some reason the reference is lost
In the _microHub object.
Any remoting experts out there who can help?