Home > Archive > ASP > October 2006 > Session State question
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Session State question
|
|
|
| I have a problem where the session state will not be enabled on the server.
We are using Framework 1.1, a non-Sql Server database, and will be moving the
application to a web farm in the future. Is there any way to keep the session
state on a relational database that is not Sql Server? If so, how?
Any help will be greatly appreciated.
Rob
| |
| Jon Paal 2006-10-30, 6:57 pm |
| go to : microsoft.public.dotnet.framework.aspnet
"Rob" <Rob@discussions.microsoft.com> wrote in message news:7E1C8E4F-78CC-4043-8891-E312FD1E487B@microsoft.com...
>I have a problem where the session state will not be enabled on the server.
> We are using Framework 1.1, a non-Sql Server database, and will be moving the
> application to a web farm in the future. Is there any way to keep the session
> state on a relational database that is not Sql Server? If so, how?
>
> Any help will be greatly appreciated.
> Rob
| |
|
| Hi Rob,
do you have to use a database?
Maybe a state server can do the same job.
mode="StateServer"
stateConnectionString="tcpip=server:port" (e.g. tcpip=127.0.0.1:42424)
The port has to be 42424
The service "aspnet_state" must run on the state server.
You can find the service in :
%SystemRoot%\Microsoft. NET\Framework\VersionNumber\aspnet_state
.exe
Hope that helps.
Regards,
Uli
--
Wer nicht fragt, stirbt dumm.
If you don't ask, you'll die as a dumba**.
"Rob" wrote:
> I have a problem where the session state will not be enabled on the server.
> We are using Framework 1.1, a non-Sql Server database, and will be moving the
> application to a web farm in the future. Is there any way to keep the session
> state on a relational database that is not Sql Server? If so, how?
>
> Any help will be greatly appreciated.
> Rob
|
|
|
|
|