----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: aamirOnline Message 2 in Discussion Hi If SessionState's mode attribute is set to Inproc, session is managed by aspnet_wp.exe (asp.net's worker process). If its set to StateServer then its managed by aspnet_state.exe which runs in out-of-process mode. Out-of-process session management is slower than in-process session management but is tolerant of IIS and aspnet_wp.exe restarts and scale for multiprocessor, multi-machine configurations. For a local intranet, the default in-process session management might be suitable. However, if you need some resiliency or can't afford to lose session information, you may want to configure one of the out-of-process session servers. To configure the aspnet_state.exe session server, you need to change the Web.config file's mode setting to StateServer and update the stateConnectionString for remote session management. You also need to ensure that the aspnet_state.exe service is running on the server that will be managing session information. To start aspnet_state service just type net start aspnet_state.exe. at command line. I hope you have understood the hole architechture about how the asp.net manages the sessions at server. regards M Aamir Maniar System Analyst (CWS), Freelance OOPD Consultant [EMAIL PROTECTED] ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/bdotnet/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
