Re: [ADVANCED-DOTNET] Process Isolation in ASP.NET : sample imple mentation

2003-06-17 Thread JC Oberholzer
discussion of advanced .NET topics." |><[EMAIL PROTECTED]> |>To: [EMAIL PROTECTED] |>Subject: Re: [ADVANCED-DOTNET] Process Isolation in ASP.NET |>Date: Fri, 13 Jun 2003 13:59:02 -0400 |> |>Ravi- |> This sounds interesting, could you give an example

Re: [ADVANCED-DOTNET] Process Isolation in ASP.NET : sample implementation

2003-06-17 Thread Edmund Maher
PROTECTED] On Behalf Of Ravi Pazhani Sent: Monday, June 16, 2003 9:07 AM To: [EMAIL PROTECTED] Subject: Re: [ADVANCED-DOTNET] Process Isolation in ASP.NET : sample implementation quick & dirty one! create a directory customcontextclient under \inetpub\wwwroot extract the files. set u

Re: [ADVANCED-DOTNET] Process Isolation in ASP.NET : sample implementation

2003-06-16 Thread Ravi Pazhani
yCustomContext". in that case "MyCustomContextModule" becomes the primary module and should appear as first item in web config section. HTH Ravi From: Edmund Maher <[EMAIL PROTECTED]> Reply-To: "Moderated discussion of advanced .NET topics." <[EMAIL PROTECTED]> To: [EMAIL PROTECTED

Re: [ADVANCED-DOTNET] Process Isolation in ASP.NET

2003-06-13 Thread Ravi Pazhani
I'll develop some sample code and post it over the weekend. if that is ok. tks & rgds ravi From: Edmund Maher <[EMAIL PROTECTED]> Reply-To: "Moderated discussion of advanced .NET topics." <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: [ADVANCED-DOTNET] Pr

Re: [ADVANCED-DOTNET] Process Isolation in ASP.NET

2003-06-13 Thread Edmund Maher
ehalf Of Ravi Pazhani Sent: Friday, June 13, 2003 12:55 PM To: [EMAIL PROTECTED] Subject: Re: [ADVANCED-DOTNET] Process Isolation in ASP.NET One common approach is to create custom HttpModule and inject a custom context to the application. This custom context can host all the services you wa

Re: [ADVANCED-DOTNET] Process Isolation in ASP.NET

2003-06-13 Thread Ravi Pazhani
approach not only provides enough isoloation from the application code but also easily configurable. HTH Ravi From: JC Oberholzer <[EMAIL PROTECTED]> Reply-To: "Moderated discussion of advanced .NET topics." <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: [ADVANCED-DOTNET

[ADVANCED-DOTNET] Process Isolation in ASP.NET

2003-06-13 Thread JC Oberholzer
I need some help on the following: My class library (dll) uses a variable declared as public in order to share central information to all classes in the application (such as connectionstring etc). This works fine with WinForm apps using the class library, as one instance of the public variable exi