Hello!
We are trying to use Stimulsoft.Report, Version=2007.3.21.0 for our ASP.NET 2.0 application.
The session is running in 'SQLServer' mode and we are getting the following exception:
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.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
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.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[SerializationException: Type 'Stimulsoft.Report.StiReport' in Assembly 'Stimulsoft.Report, Version=2007.3.21.0, Culture=neutral, PublicKeyToken=ebe6666cba19647a' is not marked as serializable.]
System.Runtime.Serialization.FormatterServices.InternalGetSerializableMembers(RuntimeType type) +2271925
System.Runtime.Serialization.FormatterServices.GetSerializableMembers(Type type, StreamingContext context) +245
System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitMemberInfo() +88
System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitSerialize(Object obj, ISurrogateSelector surrogateSelector, StreamingContext context, SerObjectInfoInit serObjectInfoInit, IFormatterConverter converter, ObjectWriter objectWriter) +305
System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.Serialize(Object obj, ISurrogateSelector surrogateSelector, StreamingContext context, SerObjectInfoInit serObjectInfoInit, IFormatterConverter converter, ObjectWriter objectWriter) +50
System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Serialize(Object graph, Header[] inHeaders, __BinaryWriter serWriter, Boolean fCheck) +438
System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(Stream serializationStream, Object graph, Header[] headers, Boolean fCheck) +131
System.Web.Util.AltSerialization.WriteValueToStream(Object value, BinaryWriter writer) +1513
[HttpException (0x80004005): 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.]
System.Web.Util.AltSerialization.WriteValueToStream(Object value, BinaryWriter writer) +1602
System.Web.SessionState.SessionStateItemCollection.WriteValueToStreamWithAssert(Object value, BinaryWriter writer) +34
System.Web.SessionState.SessionStateItemCollection.Serialize(BinaryWriter writer) +627
System.Web.SessionState.SessionStateUtility.Serialize(SessionStateStoreData item, Stream stream) +257
System.Web.SessionState.SessionStateUtility.SerializeStoreData(SessionStateStoreData item, Int32 initialStreamSize, Byte[]& buf, Int32& length) +60
System.Web.SessionState.SqlSessionStateStore.SetAndReleaseItemExclusive(HttpContext context, String id, SessionStateStoreData item, Object lockId, Boolean newItem) +114
System.Web.SessionState.SessionStateModule.OnReleaseState(Object source, EventArgs eventArgs) +355
System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +92
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +64
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.832; ASP.NET Version:2.0.50727.832
Why does it try to save 'Stimulsoft.Report.StiReport' in session?
Any workaround?
Thanks, Alex
Stimulsoft.Report problem in ASP.NET 2.0 SQLServer session
Stimulsoft.Report problem in ASP.NET 2.0 SQLServer session
Please show me your web page (which contain StiWebViewer) and code which you are use for report rendering. For also please set property CacheMode of StiWebViewer to Page.
Thank you.
Thank you.
Stimulsoft.Report problem in ASP.NET 2.0 SQLServer session
Thank you, setting CacheMode="Page" resolved the issue!
stReportViewer.Visible = true;
StiReport report = new StiReport(); //stReport.GetReport();
report.Load(path + "APP_DATA\\" + reportFile);
//Clear the list of databases
report.Dictionary.Databases.Clear();
//Add the database and specify its name and the connection string
report.Dictionary.Databases.Add(new Stimulsoft.Report.Dictionary.StiSqlDatabase("Connection", connection));
report.Compile();
report.DataSources["dsDeductiblesDifferences"].Parameters["@dealerID"].ParameterValue = this.DealerUser.DealerID;
stReportViewer.Report = report;
stReportViewer.Visible = true;
StiReport report = new StiReport(); //stReport.GetReport();
report.Load(path + "APP_DATA\\" + reportFile);
//Clear the list of databases
report.Dictionary.Databases.Clear();
//Add the database and specify its name and the connection string
report.Dictionary.Databases.Add(new Stimulsoft.Report.Dictionary.StiSqlDatabase("Connection", connection));
report.Compile();
report.DataSources["dsDeductiblesDifferences"].Parameters["@dealerID"].ParameterValue = this.DealerUser.DealerID;
stReportViewer.Report = report;
Stimulsoft.Report problem in ASP.NET 2.0 SQLServer session
Hello,
Problem solved in build from 13 Nov.
Thank you.
Problem solved in build from 13 Nov.
Thank you.