Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having trouble adding a value to my ImageService constructor.
My IUserRepository works, but when I try to put "absoluteImagePath" into the constructor (Bootstrapper) I get the following error:

StructureMap.StructureMapException:  
StructureMap Exception Code:  205  
Missing requested Instance property  
"absoluteImagePath" for InstanceKey  
"8a15766b-879b-4edb-b060-c868f35aef39

ImageService:

public ImageService(IUserRepository userRepository, string absoluteImagePath)
{
    _userRepository = userRepository;
    _absoluteImagePath = absoluteImagePath;
}

Bootstrapper:

For<IImageService>()
    .Use<ImageService>()
    .Ctor<string>("absoluteImagePath")
    .EqualToAppSetting("AbsoluteImagePath");
share|improve this question
This should work provided that all classes that depend on ImageService request it as the interface IImageService. Make sure that no references to the concrete ImageService class are in any constructor. – PHeiberg Apr 19 '11 at 8:11
Yeah, you will have to share more details to get an answer, the code you have shown should work. Does ImageService have other constructors? Is it possible there is another place you are passing a parameter called absoluteImagePath? – Robin Clowers Apr 20 '11 at 0:41
I tried the code you provided here and that works like it intend to do, so there is something in your registration that you have not posted here. If I remove the constuctor part of the registration I get the same error that you get. – Bassetassen Aug 13 '11 at 23:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.