Ask a Question related to ASP.NET General, Design and Development.
-
Jonathan Amend #1
Using SQL Server for session states
I tried configuring my web application to use SQL Server for session states
and I installed the SQL script provided by .NET to set up the databases and
whatever goes with it but now my web application returns the following
error:
Unable to serialize the session state. Please note that non-serializable
objects or MarshalByRef objects are not permitted when session state mode is
'StateServer' or 'SQLServer'.
Jonathan Amend Guest
-
Managing states of the client at server
Hi all, Can anybody suggest me how do i maintain the state of a client calling my webservice method.e.g. consider a webservice that lets the user... -
about server session
hi all , any one can tell me how session will work in flex and what is the basic syntaxes. i want to set session, get session, update and... -
Slow creation of new WS + session states
I have a two-folded question : 1) Do I need to create a new Webservice each time I want to make a call to a method from a different form? (it's... -
Adding states to a POE::Session at runtime
I've been pouring over the pods for a few hours now. It's possible I missed it (I'm rather tired), but I can't find any information on adding... -
Server.Execute and Server.Transfer not detecting session state
I am setting a session variable, then doing a server.transfer in global.aspx and the page I am going to is saying that session state is not enable... -
bruce barker #2
Re: Using SQL Server for session states
the message is pretty clear. as the object must be serialized to a binary
field in sqlserver, it must be a serializable object. only inproc sessions
support non-serialiable objects.
-- bruce (sqlwork)
"Jonathan Amend" <cephas_is@hotmail.com> wrote in message
news:3f18578a$1_4@aeinews....states> I tried configuring my web application to use SQL Server for sessionand> and I installed the SQL script provided by .NET to set up the databasesis> whatever goes with it but now my web application returns the following
> error:
>
> Unable to serialize the session state. Please note that non-serializable
> objects or MarshalByRef objects are not permitted when session state mode> 'StateServer' or 'SQLServer'.
>
>
bruce barker Guest



Reply With Quote

