vote up 0 vote down star

Hello,

I am using Castle.Windsor as an IOC.

So I am trying to resolve a service type in the constructor of an HTTPHandler. I keep receiving this error. My configuration has the following entries for service type: IDocumentDirectory

<component id="restricted.content.directory" service="org.healthwise.foundations.services.content.IDocumentDirectory, org.healthwise.foundations.services" type="org.healthwise.foundations.services.content.RestrictedLocalizationDocumentDirectory, org.healthwise.foundations.services">
    <parameters>
      <contentDirectory>${content.directory}</contentDirectory>
      <localizations>
        <array>
          <item>en-us</item>
          <item>es-us</item>
        </array>
      </localizations>
    </parameters>
  </component>

  <component id="content.directory" service="org.healthwise.foundations.services.content.IDocumentDirectory, org.healthwise.foundations.services" type="org.healthwise.foundations.services.web.client.WebServiceDocumentDirectory, org.healthwise.foundations.services.web.client">
    <parameters>
      <webServiceURL>#{contentDirectoryWebsiteUrl}</webServiceURL>
    </parameters>
  </component>

In my new handler the constructor looks like this:

 public HeartBeatHttpHandler(IDocumentDirectory contentDirectory)
    {
        _contentDirectory = contentDirectory;
    }

I have never recieved this error using Castle.Windsor. Can someone explain?

Thanks!

flag

80% accept rate
What does the implementation of IDocumentDirectory provide? – Daniel A. White Nov 3 at 14:04
is HeartBeatHttpHandler instance retrieved with windsor too ? if so, could you show the windsor component configuration for HeartBeatHttpHandler – manitra Nov 3 at 14:45
What are the real value of "Namespace.type" in your error message ? – manitra Nov 3 at 14:55

1 Answer

vote up 0 vote down check

You cannot inject a dependency into managed .NET HTTPHandler code. The objects that implement IHttpHandler must have a parameter-less constructor.

I used an application container instead. Which wouldn't have been my first choice.

-Nick

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.