Why would .NET suddenly try to serialize my object in my ASP.NET application?

后端 未结 3 600
面向向阳花
面向向阳花 2021-01-20 17:40

I run an Azure web role in Full IIS mode. Requests are authorized with custom basic authentication.

I have MyAssembly.CustomIdentity class that inherits

3条回答
  •  囚心锁ツ
    2021-01-20 18:19

    Be cautious with this answer, as I am not absolutely sure it is the good one.

    First, I assume you haven't set up something like sql session management, and the only thing you changed is the user under which IIS is running.

    You observe two phenomenon:

    1. Serialization of an object which shouldn't be serialized
    2. Loading of your assembly by an AppDomain which hasn't already loaded it.

    As your appdomain has already loaded the assembly, it seems safe to assume that the exception is thrown by another AppDomain. If it is thrown by another Appdomain, it's probably because this AppDomain is attempting to deserialize your custom object. (It has been serialized before the other exception demonstrates that.)

    OK. Now even if IIS is running under a local user, Role environnement isn't. This service is installed with the Azure OS, you can't choose the user it runs under (you could probably in fact, but I wouldn't)

    What I think is that in order to get informations from RoleEnvironnement, the Azure runtime is able to use two code paths:

    1. One if the IIS service and Runtime are running under the same user, which doesn't require appdomain switching.
    2. another if the IIS service and runtime doesn't share the user they are running under. In this case, the runtime requires it, as the two user doesn't have the same rights.

    To conclude, I certainly don't know why the Azure runtime would like to move your user between different AppDomain, but it is probably doing exactly that.

提交回复
热议问题