RedisSessionStateStore problem with multiple sites

I use Microsoft RedisSessionStateStore to handle session storage for two applications hosted on the same domain. Note I blocked the parent web.config from child inheritance.

I get an error message when I try to download a child application (MVC) after the parent application (Website Project) has booted. The error I get is that RedisSessionStateStore is trying to get the assembly from the parent application and trying to serialize it. Not quite sure why he wants it that way. The assembly name in the exception is also a bit complicated name, and it would also be hard to find, since my parent application is a website project (Not Webforms). Any help is appreciated.

+6
source share

Source: https://habr.com/ru/post/984538/


All Articles