Registration example:
container.Register(Component.For<IFooService>().ImplementedBy<FooService>().AsWcfService<IFooService>(new DefaultServiceModel().Hosted()).LifestyleTransient());
.svc:
<%@ServiceHost language="C#" Debug="true" Service="Service.FooService"
Factory="Castle.Facilities.WcfIntegration.DefaultServiceHostFactory, Castle.Facilities.WcfIntegration" %>
The WCF is hosted in IIS and when I hit the endpoint using WcfStorm the ctor is not called upon every request. If I regenerate the client-side proxy the ctor is called once again. How can the service lifecycle be coupled to the client side proxy?