I'm in the middle of a crisis.
How can i register a object in configuration file multiple times?
Its simple i have server1, server2 and server3 that have the object (SomeObject) and i would like to do something like this on Clients configuration file:
<client>
<wellknown type="IRemCalc.ICalc, IRemCalc"
url="http://localhost:12234/RemoteCalc1.soap" />
<wellknown type="IRemCalc.ICalc, IRemCalc"
url="http://localhost:1234/RemoteCalc1.soap"/>
</client>
But it throws me an exception saying that i cant register the same object twice, any solutions?
This is for a school work and I'm dying here.