You are on page 1of 1

Cuestiones de despliegue en web hostings:

1. Error:
Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that <machineKey> configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster.

Solucin: Usar un machine key genrico http://www.orcsweb.com/articles/aspnetmachinekey.aspx

2. Error:
Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode. Exception Details: System.Web.HttpException: Unable to serialize the session state. In 'StateServer' and 'SQLServer' mode, ASP.NET will serialize the session state objects, and as a result non-serializable objects or MarshalByRef objects are not permitted. The same restriction applies if similar serialization is done by the custom session state store in 'Custom' mode.

Solucion: http://stackoverflow.com/questions/5889240/unable-to-serialize-the-session-state http://www.eggheadcafe.com/community/aspnet/17/10190583/unable-to-serialize-the-sessionstate.aspx 3. Error Thread was being aborted Solucin: Ubicar en el bloque finally cualquier mtodo de Objeto Response o Server que generen un cambio de pgina en el servidor.

You might also like