I am registering a client like so:
var container = new WindsorContainer()
.AddFacility<WcfFacility>()
.Register(
Component.For<IFooService>()
.AsWcfClient(
DefaultClientModel.On(
WcfEndpoint.ForContract<IFooService>().FromConfiguration("IFooService")
)
)
);
Is there a way to avoid using the .FromConfiguration("") and make it
pick up my config without the magic string, the config is like:
<client>
<endpoint name="IFooService" address="..." binding="..."
bindingConfiguration="..." contract="IFooService"
behaviorConfiguration="..."/>
</client>
Thanks
--
You received this message because you are subscribed to the Google Groups
"Castle Project Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/castle-project-users?hl=en.