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
First of all, I’d look in the event logs on both the client and the server to see if there are errors related to this.
Second, is it the same user identity with the remote client and with the local client? Same logged in user with the same domain account?
What about firewall setup? Are you sure that Remoting is allowed in?
Finally, just to make sure: are you aware that Remoting is now deprecated in favor of WCF?