473,657 Members | 2,592 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

session stateserver question

Hi all,

I have been asked to build a common login for a cluster of web apps, is it
possible to use stateserver to handle/manage session state across more than
one web application?

Cheers, Lerp
Nov 18 '05 #1
4 1354
No. Session State is limited to the app it belongs to.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
I get paid good money to
solve puzzles for a living

"Lerp" <ad***@officien ce.ca> wrote in message
news:Om******** ******@TK2MSFTN GP15.phx.gbl...
Hi all,

I have been asked to build a common login for a cluster of web apps, is it
possible to use stateserver to handle/manage session state across more than one web application?

Cheers, Lerp

Nov 18 '05 #2
Ok, sorry for confusion.

I guess what I meant was this: if I had two seperate applications that were
configured to use a third server as the stateserver for session management
for the two apps. Could I access a session variable that was created in one
application in the other application?

Cheers, Lerp


"Lerp" <ad***@officien ce.ca> wrote in message
news:Om******** ******@TK2MSFTN GP15.phx.gbl...
Hi all,

I have been asked to build a common login for a cluster of web apps, is it
possible to use stateserver to handle/manage session state across more than one web application?

Cheers, Lerp

Nov 18 '05 #3
not using implementation as it stands.

if you are required to pass or share data consider using common flat file /
database / webservices or even remoting options.

--

Regards,

Hermit Dave
(http://hdave.blogspot.com)
"Lerp" <ad***@officien ce.ca> wrote in message
news:OE******** *****@TK2MSFTNG P11.phx.gbl...
Ok, sorry for confusion.

I guess what I meant was this: if I had two seperate applications that were configured to use a third server as the stateserver for session management
for the two apps. Could I access a session variable that was created in one application in the other application?

Cheers, Lerp


"Lerp" <ad***@officien ce.ca> wrote in message
news:Om******** ******@TK2MSFTN GP15.phx.gbl...
Hi all,

I have been asked to build a common login for a cluster of web apps, is it possible to use stateserver to handle/manage session state across more

than
one web application?

Cheers, Lerp


Nov 18 '05 #4
ok, cool thx guys :)
"Hermit Dave" <he************ @CAPS.AND.DOTS. hotmail.com> wrote in message
news:Oe******** ******@TK2MSFTN GP15.phx.gbl...
not using implementation as it stands.

if you are required to pass or share data consider using common flat file / database / webservices or even remoting options.

--

Regards,

Hermit Dave
(http://hdave.blogspot.com)
"Lerp" <ad***@officien ce.ca> wrote in message
news:OE******** *****@TK2MSFTNG P11.phx.gbl...
Ok, sorry for confusion.

I guess what I meant was this: if I had two seperate applications that were
configured to use a third server as the stateserver for session management
for the two apps. Could I access a session variable that was created in

one
application in the other application?

Cheers, Lerp


"Lerp" <ad***@officien ce.ca> wrote in message
news:Om******** ******@TK2MSFTN GP15.phx.gbl...
Hi all,

I have been asked to build a common login for a cluster of web apps,

is it possible to use stateserver to handle/manage session state across more

than
one web application?

Cheers, Lerp



Nov 18 '05 #5

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

Similar topics

3
6021
by: Nhi Lam | last post by:
Hi, I understand that there are 3 modes in which I can configure the SessionStateModule. What I need is an out of process Session State store with fail over support. The "SQL Server Mode" seems to be it, but I heard there is quite a bit of degradation in performance for using this mode. My next option is the "State Server Mode". However, this mode does not give me the fail over support. Is there anything that I can do the enhance the...
14
2069
by: Michael Carr | last post by:
I have an intermittent problem that occurs on a very small number of browsers that access my website. The strange thing is this: my site works perfectly for 99.9% of browsers. The behavior described below occurs for 0.1% of users, and so far I've only seen it on IE 6.0. My ASP.NET website is set up like this: 1. Logon page - Collect username / password and verify against the DB. If OK, store the UserID in Session and redirect to Main...
8
8405
by: karahan celikel | last post by:
I realized that when SqlServer mode is used for session management Session_End event is not fired in global.asax. What can I do if I want to do something when a user's session end? Thanks
5
367
by: RA | last post by:
Hi If I use session variables does this depends on cookies being sent to the client browser? If yes then what happens if the user disable cookies? Thanks
2
2171
by: John A Grandy | last post by:
for high traffic public websites , what are the proven options for session-state storage & management ? is an out-of-process state-server generally preferred over a sql-server ? what are the relevant criteria ? is the primary criteria max expected total storage size (for all active sessions) versus max ram available on the state-server machine ? if ADO.NET objects (such as small DataTables) must be stored in session-state , is any...
4
9311
by: fm | last post by:
We are using State Server to host our session objects. We have several applications running under IIS that will be using the State Server. How can one of those applications clear its Session state? If it was in process, we could just stop and start the web app. We can not just stop and start the State Server service because it would wipe out state for all applications.
10
3500
by: tshad | last post by:
I have been using the default session state (InProc) and have found that I have been loosing my information after a period of time (normally 20 minutes). Is there anyway to find out how much more time I have on a session? If I do a refresh, does reset the session clock? Do you have have to go to another page to reset the session timeout or will a postback also do it? This is important as we have a few pages that a user
1
1285
by: jamezw | last post by:
I have a web app that uses StateServer to track session. It is cookieless (e.g. session ID in the URL.) We have run into a problem that is like such: we have a page that has multiple frames on it. All the frames point to relative pages except one which points to a specific IP, but it is an IP that runs the same web application. The frame src looks something like this: src="http://{theip}/(sessionid)/Page.aspx". In essence, this should be...
3
1595
by: Rob Nicholson | last post by:
I'm currently using InProc session which are working fine. In the app, I've got a master object called MyApp which has a fair number of properties, child classes etc. I find it easier to do this: Dim MyApp As New Beer.App Session("App") = MyApp And then do all programming against MyApp, e.g. MyApp.Property1 = SomeValue. Means that I can work against pure objects and not the session deep in the business layers.
0
8425
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8845
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8743
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8522
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7355
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5647
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4173
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1973
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1736
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.