I have tried:
Server Web.config:
<system.runtime.remoting>
<application>
<channels>
<channel ref="http">
<serverProviders>
<formatter ref="binary" typeFilterLevel="Full" />
</serverProviders>
</channel>
</channels>
<service>
<wellknown mode="Sing...
more >>
Hi!
What actions do I have to do in order to get my objects marshaled by value?
For the moment we are using Marshal by reference, so all my object derive
from MarshalByRef.
Thanks in advance!
/Henke...
more >>
How to expose two different objects via .NET Remoting?
Hello,
I am trying to do the following:
Exposing Obj1 and Obj2 via ProcessA
Conects to obj1 from Client1 and connect Obj2 from Client2
both Objects has events.
Obj1 is implemented in ProcessA
Obj2 is implemented in DLL.
The DLL is ...
more >>