views:

18

answers:

1

I have a web application that communicates with multiple .net remoting endpoints.

I'd like to use the Castle RemotingFacility to resolve my remote dependencies, but it looks like you can only configure one endpoint uri for the facility.

Is this scenario possible with the existing RemotingFacility? If so, how?

Thanks.

A: 

Is that really the case? I think that this post implies otherwise...

Krzysztof Koźmic
The RemotingFacility's remoteKernelUri can only be set to a single value. In the post you mentioned, that value is set to tcp://localhost:2133/kernel.rem. So, any remote type resolving goes through the remote registry located at localhost:2133. For my case, I need to be able to point to more than one remote registry. After reading through the remoting Facility and Inspector code, I don't think my case will work without some changes, but I'm game for any other suggestions.
Randy Klingelheber
OK, you're right. I misread your question. Can you bring this as suggestion to Castle-users group? We also accept patches :)
Krzysztof Koźmic