If I'm developing an application that must accomodate
multiple security levels though secure login and my ASP.NET
web appplication is spanned across three web-servers (using
round-robbin load balancing) what would be the best approach
to maintain login-in state for the users?
Answer Posted / m venkata murali krishna
The simplest form of this question is , which mode of
session state you need to choose to persist the state
across mulitple webservers?
Answer is: StateServer, SQL Server, may be you can go for
custom also.
Explanation about modes:
ASP.NET session state supports several different storage
options for session data. Each option is identified by a
value in the SessionStateMode enumeration.
InProc mode: which stores session state in memory on the
Web server. This is the default.
StateServer mode: which stores session state in a separate
process called the ASP.NET state service. This ensures that
session state is preserved if the Web application is
restarted and also makes session state available to
multiple Web servers in a Web farm.
SQLServer mode: stores session state in a SQL Server
database. This ensures that session state is preserved if
the Web application is restarted and also makes session
state available to multiple Web servers in a Web farm.
Custom mode: which enables you to specify a custom storage
provider.
Off mode: which disables session state.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain what does the term "green architecture" mean? : Dot net architecture
What is different about namespace declaration when comparing that to package declaration in java?
What is the mesi? : Dot net architecture
Explain the number or character entered through keyboard gets converted to equivalent ascii code & it get stored on ram in the binary form. What is the exact procedure. : Dot net architecture
Explain about validation?
How can implement drag and drop using atlas?
What is private constructor? And it's use?
Explain the race around condition? How can it be overcome? : Dot net architecture
What is the difference between absolute expiration and sliding-time expiration?
how to change the title of my window?
difference between data reader and dataset
HttpHendler and HttpModules
Can you Explain
Difference between type constructor and instance constructor?
Explain different pipelining hazards and how are they eliminated? : .NET Architecture