Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a DD4T View I am trying to pick the value of Path of the keyword inside the Category.

foreach(var category in @Model.Categories)
{
    if (category.Title.Contains("Taxonomy"))
    {
        str = category.Keywords[0].Path;            

        break;
    }
}

but getting null in @Model.Categories.

Error: Object reference not set to instance of the object.

Although data exist in XML.

Please suggest.

share|improve this question
Can you specify which XML you are seeing the data in? – Chris Summers Jun 19 '12 at 14:35
Have you considered asking on the DD4T google code repository: code.google.com/p/dynamic-delivery-4-tridion/issues/list ? – Nuno Linhares Jun 19 '12 at 15:55
Thanks everyone for the quick response. Quirijn suggestion is working. – Meenakshi Jun 20 '12 at 6:41

5 Answers

up vote 7 down vote accepted

I discovered this is an issue in DD4T. The work-around is quite simple: if you use the implementation of Component (or Page) as your model, rather than the interface, it works.

So start your view with:

@model DD4T.ContentModel.Component

Rather than

@model DD4T.ContentModel.IComponent

And try again.

share|improve this answer
Hi Quirijn, If you give us some more information on this, we can look in to code to fix this. – vikas kumar Jun 20 '12 at 5:35
Thanks Quirijn. It is working now. – Meenakshi Jun 20 '12 at 6:40
@Vikas: I created an issue on the DD4T google code site: code.google.com/p/dynamic-delivery-4-tridion/issues/…. If you could see your way to fix it, that would be awesome. – Quirijn Jun 20 '12 at 7:57
@user1466538: could you accept this answer please? – Quirijn Jun 20 '12 at 7:58

I have logged this as an issue in the DD4T Google Code site here.

It seems this is caused by contravariance not being supported by List and IList, meaning that lines like:

IList<ICategory> IComponent.Categories
{
    get { return Categories as IList<ICategory>; }
}

in the ContentModel class will never work. The suggestion from digging around is to change this to IEnumerable which does support contravariance.

share|improve this answer
Thanks Neil, that sounds like it might be it, indeed. Great word, contravariance, I'm going to be using it in casual conversation :) – Quirijn Jun 21 '12 at 13:36
Vote me up Quirijn! – Neil Jun 21 '12 at 16:46

Its working after implementing Quirijn suggestion like Component c = (Component)Model; c.Categories[0]...

Thanks, Vikas Kumar

share|improve this answer

Have you published your categories to your target?

share|improve this answer

Yes, verify first if you published the Categories to the Broker Database. The way Page or Component XML is deserialized into an IPage or IComponent object is pretty straight forward.

Also indicate which version of DD4T you're using. I remember there was an issue with deserialization in earlier releases.

share|improve this answer

Your Answer

 
discard

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

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