Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
492 views

Castle WcfFacility - Service Behaviors

How do I use the Castle WcfFacility and have it use the standard Wcf config file settings? If I register like so: container.Register( AllTypes.Pick() .FromAssemblyNamed("{ServicesAssembly}") // ...
2
votes
1answer
263 views

Injecting Correct ISessionFactory Into IRepository Using Castle Windsor and NHibernate Facility

I have three SQL Server databases that a single application retrieves data from. I am using NHibernate to retrieve data from the different databases. I have things set up so that each database has ...
1
vote
1answer
41 views

Registeting interceptors after Component registration in Castle

I have a facility which needs to register an interceptor and then register this interceptor against a subset of the components already registerd in the container Castle Kernel. The facility lives in ...
1
vote
2answers
341 views

castle nh facility - 2 databases / 2 models / 2 factories

I have asked this on the castle list as i'm using the nh facility but it just dawned on me to ask it here too :) sorry for the cross posting. I'm using the nh facility to configure the following ...
1
vote
1answer
161 views

Castle Windsor, hook continer release in order to call explicit components release

I run this at the application Start Up public class ConfigurationFacility : AbstractFacility { private readonly List<string> configuredComponents = new List<string>(); protected ...
0
votes
1answer
90 views

Create a class proxy within a castle windsor facility

I'm trying to create a facility that will add some interceptor to the registered class based on the class attribute. This is my facility: public class MyFacility : AbstractFacility { protected ...
0
votes
0answers
29 views

Hotel Facilities Search

This is my page http://i.stack.imgur.com/rlw3H.png i send post to search.php. But i dont know how to query ? i have facilities columb in sql. i insert to facilities id to the columb. example: ...
0
votes
2answers
88 views

Asp MVC problem configuring application with Windsor and NHibernate

Im having issues configuring application using windsor, facilities and nhibernate. Im getting this exception: ObjectDisposedException: Session is closed Shouldnt windsor take care of ...
0
votes
1answer
86 views

Windsor Facility Error

Everytime I try to add a facility to my Windsor container instance, I see the following exception: Derived method 'Dispose' in type 'Castle.Facilities.WcfIntegration.WcfFacility' from assembly ...
0
votes
1answer
63 views

Castles WCF Facility Async Call

i am currently working on the wcf facility of castle. Very good work i must add. I have following issue. I want to call my service async and the bind the result on the ui thread to a bindingsource. ...
0
votes
1answer
129 views

Getting response from Castle Wcf facility async call

Say I have a call like so: _actService.BeginWcfCall(x => x.SaveAct(new SaveActRequest { ...
0
votes
3answers
349 views

Problem getting Nhibernate Facility + Update/Save event listeners working

I really can't get this working so i'm hoping someone here can help :) here is my castle.config: <castle> <facilities> <facility id="nhibernatefaciltity" ...