I need to know if it is possible to have a .Net Remoting service that uses only the MarshalByValue scheme (just create an object on the server machine and pass it to the client using serialization).
If it is possible, how do I need to configure the application?
The reason I’m asking is that I need a very simple test application that does that (again, if it is possible), and all the examples I find seem to work with MarshalByRef objects.
Thanks!
You need to have at least one MarshalByRef object to exchange the serialized MarshalByValue objects with the client.