Remoting Settings Schema
Hello, does anybody know how to expose multiple objects in a Remoting Schema File?
This is an example of a Schema File exposing one object:
<configuration>
<system.runtime.remoting>
<application>
<service>
<wellknown mode="SingleCall" type="MyObjects.Customer, MyObjects"
objectUri="Customer"/>
</service>
<channels>
<channel ref="tcp" port="1234"/>
</channels>
</application>
</system.runtime.remoting>
</configuration>
Now, I haven't actually tried putting more child elements of the channels and service nodes but, I suspect this wont work. If somebody knows please let me know. Thanks
|