hello,

i am trying to create a way to inject arguments into my WCFService.

when trying the following :

    Kernel.Register(Component.For<IAtomFeed>()
                                        .ImplementedBy<DefaultAtomService>()
                                        .Named("atomFeed")
                                        .Parameters(
 
Parameter.ForKey("configurationpath").Eq("localhost")
                                        )
                                        .LifeStyle
                                        .Transient
                );
i get an error on AssertNotWaitingForDepency();

is there a way to register a service and specify a Parameter.
or maybe specify a Property value

-- 
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.

Reply via email to