In my case, the server will notify the client to fetch his data when the data is ready. This notification is implemented via an event which the client has to subscribe.
When tested in the same computer, the client get notified without any problems. However, when client is moved to the other computer, it cannot get the notifications any more.
I checked the network connection and the availability of remoting service, and found the client can access the remoting object marshalled on the server end, event subscription was fine without any exceptions.
But what confused me is that actually the server's event == null, means client's method never registered here.
Does anybody know the cause? Thanks BR