Re: [DOTNET] passing interface in remoting

2002-05-20 Thread Ingo Rammer
Hi Patrick, > for remoting with c#, i get a object reference(objRef) from > the server, and pass an argument as interface in the objRef > method, but it get serialization error. There are some issues when passing Interface-based object references via Remoting boundaries between multiple servers.

[DOTNET] passing interface in remoting

2002-05-20 Thread Patrick Tang
Hi, for remoting with c#, i get a object reference(objRef) from the server, and pass an argument as interface in the objRef method, but it get serialization error. the code is like below in client side, objRef.method1(IParameter parameter); where IParameter is an interface, is that i cannot pa