Click here to Skip to main content
15,893,381 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have a code which i should store the fileupload.PostedFile to session, but when i try to recall it, got a Error,

here the code :
C#
if (fuFiles.HasFile)
                        {
                            string v_strFileExtension = System.IO.Path.GetExtension(fuFiles.FileName);
                            string strFileNameSavedAs = v_strChartId + v_strFileExtension;


                            fuFiles.PostedFile.SaveAs(Server.MapPath("~/" + m_strChartShareImageBaseUrl + strFileNameSavedAs));


                            objData = new tbtchartsharing();
                            objData.idchart = Convert.ToInt32(v_strChartId);
                            objData.iduser = m_strIdGods;

                            //disini juga.
                            objData.cdstock = temp;
                            objData.usercomment = txtShout.Text;//txtShout.Text;
                            objData.dateupload = DateTime.Now;
                            objData.status = "V"; //Viewed, and share

                            objData.filename = strFileNameSavedAs;


                            objBLChartSharing.InsertChartSharing(objData);

                            objGodsFeed.chartsharingcd = objData.idchart;

                            Session["Image"] = fuFiles.FileName;
                        }


and here the error.
Server Error in '/TgUi' Application.

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 'System.Web.HttpPostedFile' in Assembly 'System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' is not marked as serializable.]
   System.Runtime.Serialization.FormatterServices.InternalGetSerializableMembers(RuntimeType type) +10554876
   System.Runtime.Serialization.FormatterServices.GetSerializableMembers(Type type, StreamingContext context) +305
   System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitMemberInfo() +187
   System.Runtime.Serialization.Formatters.Binary.WriteObjectInfo.InitSerialize(Object obj, ISurrogateSelector surrogateSelector, StreamingContext context, SerObjectInfoInit serObjectInfoInit, IFormatterConverter converter, ObjectWriter objectWriter) +243
   System.Runtime.Serialization.Formatters.Binary.ObjectWriter.Serialize(Object graph, Header[] inHeaders, __BinaryWriter serWriter, Boolean fCheck) +1115
   System.Runtime.Serialization.Formatters.Binary.BinaryFormatter.Serialize(Stream serializationStream, Object graph, Header[] headers, Boolean fCheck) +231
   System.Web.Util.AltSerialization.WriteValueToStream(Object value, BinaryWriter writer) +2049

[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) +1712989
   System.Web.SessionState.SessionStateItemCollection.WriteValueToStreamWithAssert(Object value, BinaryWriter writer) +49
   System.Web.SessionState.SessionStateItemCollection.Serialize(BinaryWriter writer) +745
   System.Web.SessionState.SessionStateUtility.Serialize(SessionStateStoreData item, Stream stream) +258
   System.Web.SessionState.SessionStateUtility.SerializeStoreData(SessionStateStoreData item, Int32 initialStreamSize, Byte[]& buf, Int32& length) +80
   System.Web.SessionState.OutOfProcSessionStateStore.SetAndReleaseItemExclusive(HttpContext context, String id, SessionStateStoreData item, Object lockId, Boolean newItem) +3009519
   System.Web.SessionState.SessionStateModule.OnReleaseState(Object source, EventArgs eventArgs) +775
   System.Web.SessionState.SessionStateModule.OnEndRequest(Object source, EventArgs eventArgs) +152
   System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +80
   System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +171


thanks.
Posted
Comments
SRK90 8-Aug-14 6:16am    
Can you please refer the below link and let me know ?

http://forums.asp.net/t/1478889.aspx?AsyncFileUpload+and+sessionState+mode+StateServer+errors
Andrew Budiman 8-Aug-14 6:25am    
i've tried to look at it, but i don't understand, can you please give maybe a simple example ?
SRK90 8-Aug-14 8:30am    
As far i googled it. Am not able to find the solution for this. Why dont you find an alternate for this ?
Andrew Budiman 8-Aug-14 11:17am    
oke, i've tried another solution, and i don't use this solution.
thanks for the discussion :D

1 solution

In my opinion, don't put the File in Session. Just put it somewhere in a folder temporarily.
In case you don't want that later, then simply delete that from that location.
 
Share this answer
 
Comments
Andrew Budiman 8-Aug-14 9:52am    
but the facebookconnect.postfile is accepting httppostefFile, how can i place it somewhere in temporarily ?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900