Hello, I have the following project: server, client, remote object. client does something, then pass the proxy of remote object to the server. All the things work property until server and client are in different domains. Now, when I try to pass result to server I have an exception
"An unhandled exception of type 'System.Runtime.Remoting.RemotingException' occurred in mscorlib.dll
Additional information: This remoting proxy has no channel sink which means either the server has no registered server channels that are listening, or this application has no suitable client channel to talk to the server. "
some sources on Internet says that I need to create some additional channel but I don't know where and how should I do that because I have the channel registration on server and client yet. Info: server - domain 2 client - domain 1 remote object - domain 1
Thank you