473,397 Members | 2,116 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,397 software developers and data experts.

urgent: configurating web farm to share Session

I've followed Microsoft instructions to configure machine.config. I've also
gotten rid of the SessionState block from the web.config file.

What else do I need to do? Thanks.
Nov 18 '05 #1
6 1390
Did you set up either StateServer or SQLServer for your sessions and pointed
each web.config to that? The machine.config modification you are talking
about is machineKey ?

As far as I know, that's it.

Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/
"David" <sp************@spammersgohome.com> wrote in message
news:zS****************@twister.socal.rr.com...
I've followed Microsoft instructions to configure machine.config. I've also gotten rid of the SessionState block from the web.config file.

What else do I need to do? Thanks.

Nov 18 '05 #2
I gather that InProc isn't going to work since we've got multiople
aspnet_wp.exe's running around. For StateServer and SQLServer, I'd have to
make all my objects serializable, correct?

Did you set up either StateServer or SQLServer for your sessions and
pointed
each web.config to that? The machine.config modification you are talking
about is machineKey ?

As far as I know, that's it.

Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/

Nov 18 '05 #3
You are right on both counts.

This might be a little too beginner for you, but you can check out:
http://openmymind.net/DataStorage/index.html#session for some basic
information.

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"David" <sp************@spammersgohome.com> wrote in message
news:hz****************@twister.socal.rr.com...
I gather that InProc isn't going to work since we've got multiople
aspnet_wp.exe's running around. For StateServer and SQLServer, I'd have to make all my objects serializable, correct?

Did you set up either StateServer or SQLServer for your sessions and
pointed
each web.config to that? The machine.config modification you are talking about is machineKey ?

As far as I know, that's it.

Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/


Nov 18 '05 #4
All object that need to be in the Session has to be serializable. Hopefully,
its just a matter of tacking on [Serializable]..

--
Girish Bharadwaj
http://msmvps.com/gbvb
"David" <sp************@spammersgohome.com> wrote in message
news:hz****************@twister.socal.rr.com...
I gather that InProc isn't going to work since we've got multiople
aspnet_wp.exe's running around. For StateServer and SQLServer, I'd have to make all my objects serializable, correct?

Did you set up either StateServer or SQLServer for your sessions and
pointed
each web.config to that? The machine.config modification you are talking about is machineKey ?

As far as I know, that's it.

Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/


Nov 18 '05 #5
Girish:
When you are using InProc they don't need to be serialized...you might have
been implying this from the conversation of the thread.

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"Girish Bharadwaj" <gi*****@mvps.org> wrote in message
news:OC**************@TK2MSFTNGP15.phx.gbl...
All object that need to be in the Session has to be serializable. Hopefully, its just a matter of tacking on [Serializable]..

--
Girish Bharadwaj
http://msmvps.com/gbvb
"David" <sp************@spammersgohome.com> wrote in message
news:hz****************@twister.socal.rr.com...
I gather that InProc isn't going to work since we've got multiople
aspnet_wp.exe's running around. For StateServer and SQLServer, I'd have

to
make all my objects serializable, correct?

Did you set up either StateServer or SQLServer for your sessions and
pointed
each web.config to that? The machine.config modification you are talking about is machineKey ?

As far as I know, that's it.

Karl
--
MY ASP.Net tutorials
http://www.openmymind.net/



Nov 18 '05 #6
Yeah. I meant the onces in StateServer or SQLServer. :)

--
Girish Bharadwaj
http://msmvps.com/gbvb
"Karl" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net> wrote in
message news:%2****************@TK2MSFTNGP10.phx.gbl...
Girish:
When you are using InProc they don't need to be serialized...you might have been implying this from the conversation of the thread.

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/
"Girish Bharadwaj" <gi*****@mvps.org> wrote in message
news:OC**************@TK2MSFTNGP15.phx.gbl...
All object that need to be in the Session has to be serializable.

Hopefully,
its just a matter of tacking on [Serializable]..

--
Girish Bharadwaj
http://msmvps.com/gbvb
"David" <sp************@spammersgohome.com> wrote in message
news:hz****************@twister.socal.rr.com...
I gather that InProc isn't going to work since we've got multiople
aspnet_wp.exe's running around. For StateServer and SQLServer, I'd
have to
make all my objects serializable, correct?
> Did you set up either StateServer or SQLServer for your sessions and
> pointed
> each web.config to that? The machine.config modification you are

talking
> about is machineKey ?
>
> As far as I know, that's it.
>
> Karl
> --
> MY ASP.Net tutorials
> http://www.openmymind.net/



Nov 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: kalyan | last post by:
hello everybody, I'am new to SQLServer.I have records from table as follows. column1 column2 column3 column4 column5 -------- ------------------- ------- ...
1
by: brad | last post by:
Hi, Im using classic ASP (3.0) and I have a web farm with 2 webservers (webserver A and webserver B, both windows server 2003). I do not want to store any client specific information on the...
5
by: Hidden Desi | last post by:
Hi all, I am implementing a .NET web application and extensively used the session variables to store data. But today my manager told me that we will be running that application in a web farm !!!!...
3
by: Steve | last post by:
Hi What is difference between web farm and web garden? What i understand so far Web Farm Multi Server Environment Support Session share Application object not supported Caching not...
0
by: LearninGuru | last post by:
Hi Folks, I am creating a web service that will be hosted on a web farm. The web service also uses sessions to store user specific data. I have the following doubts about session timeout in a...
3
by: Martin | last post by:
I'm plannig an asp.net web farm. I expect to use a SQL database for session state management, ie. <sessionState mode="SQLServer" cookieless="false" .../> My application uses web forms...
5
by: Dominic | last post by:
My question is about how to maintain view state in mobile ASP.NET across postback / request in a web farm environment. First of all, let's assume the web-farm does NOT use stick-session feature....
1
by: =?Utf-8?B?VmlqYXkgQ2hpa3Rl?= | last post by:
Hi Experts, With Session Affinity and Web Server Farm on ISA Server 2006 accessing 2 backend IIS servers, I’m getting error “Validation of ViewState MAC failed. If this application is hosted...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.