Try our conversational search powered by Generative AI!

HTTP 406 when viewing "Buy Products for Discount from Other Selection" promotion

Vote:
 

I have a Buy Products for Discount from Other Selection promotion to which I have programmatically added some variants. I know it is working because when I attach the debugger and load the promotion via IContentLoader, I can see that the ContentReferences have been properly saved to the Condition.Items property. 

However, when I load the promotion up in the CMS (Commerce > Marketing), the list of items fails to load (screenshot below). 

Checking dev tools in the browser, I see two suspicious HTTP 406s that I assume correspond to the missing catalog entry lists. 

The only clue I have to offer is that the catalog is huge... some 10k+ entries (mostly variants). 

Is this a known issue and is there a workaround? Thanks

#184248
Oct 26, 2017 2:06
Vote:
 

This is not a known issue. And 10k variants are actually in the small spectrum of catalogs, we have seen catalogs with hundreds of trousands entries, or more 

How did you programmatically set Condition.Items? What is it value if you load it by debugger? 

#184250
Edited, Oct 26, 2017 7:32
Vote:
 

Thanks Quan. I'm doing it like this...

// campaign = marketing campaign content reference
// items = a List<ConentReference> with the variations I am adding

var promotion = _contentRepository.GetDefault<BuyQuantityGetItemDiscount>(campaign);
promotion.Condition.Items = items;

// do some other things like set a description and to/from dates

var contentLink = _contentRepository.Save(promotion, EPiServer.DataAccess.SaveAction.Publish);

// the save works; then when I read the promo out of the DB like this... 

var savedPromotion = _contentRepository.Get<PromotionData>(contentLink);

// ...and savedPromotion.Condition.Items is exactly what I expect it to be (the same list of items that I set it to above)

Thanks again

#184440
Edited, Oct 26, 2017 20:51
Vote:
 

I think promotion.Condition.Items and promotion.DiscountTarget.Items might not be holding valid content references of catalog contents. What do they look like - I mean the values in the debugger?

#184442
Oct 26, 2017 21:22
Vote:
 

They look okay to me... 

Below is a screenshot after creating a new promotion, adding items to it, saving it to Episerver, and then using using IContentRepository.Get<PromotionData> to get a fresh copy of it. 

(result.Data is the promotion in question)

#184986
Nov 08, 2017 2:57
Vote:
 

Also, I misspoke earlier. Our catalog has over 100k variants (missed a zero!). 

Thanks

#184987
Nov 08, 2017 2:59
Vote:
 

What does the commerce content those ContentReferences link to look like?

Reducing those items to only one might help with the debugging.

Initial thought I get is to check the EPiServerErrors.log to see if it can shed any light on the 406.

Also running an sql profiling trace as you reload the promotion in the marketing UI to see if it actually load everything you would expect.

#184994
Nov 08, 2017 8:25
Vote:
 

Alright a quick search for 406 makes it clear it is an HTTP issue.

Check the request headers for those contentstructure/ requests.

If they don't contain:

Accept:application/javascript, application/json

it won't work, it is the application/json that is mandatory i think.

Basically your browser have to inform the server it accepts answers in json otherwise the server will just respond with 406 telling you to get a better browser that supports json. wink

#185028
Nov 08, 2017 13:39
Vote:
 

Thanks Erik. 

I am getting the same result in both Chrome and Firefox. Yes the Accept request header is correct. 

Accept: application/javascript, application/json

I'll try reducing the number of items like you suggested above. 

Side-note: It does work for Catalogs. That is, some of our promotions apply to a whole catalog, in which case the catalog is the only item in the list. For those promotions, our code does successfully add the catalog, at both the persistence and UI levels. 

Thanks

#185052
Nov 08, 2017 21:20
Vote:
 

Maybe a dumb question but you say this is for promotions you create from code, does it work if you added the entries to a promotion in the UI? Do they show up alright after you save and reopen that promotion?

#185098
Nov 09, 2017 13:11
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.