Re: [ADVANCED-DOTNET] Automating Windows Service Installation

2003-09-09 Thread Ravi Pazhani
you may add a postinstaller to your setup application. this can be a .NET application which runs installutil.exe or it shells a bat file which in turn runs installuti.exe. The later one more flexible bcos the bat file can be revised any time without having to recompile which is the case if it was a

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

2003-06-16 Thread Ravi Pazhani
riginal Message- From: Moderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf 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 injec

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

2003-06-13 Thread Ravi Pazhani
ion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf 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.

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

2003-06-13 Thread Ravi Pazhani
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 want to provide to the application. All the services that are embedded inyour context are available to all the classes of your asp .net app. This appr

[ADVANCED-DOTNET] .NET Remoting & COM InterOp

2003-04-02 Thread Ravi Pazhani
We have a requirement to access remoted objects from a COM client (asp application). We would like to use remoting framework over web services for various reasons. We did a sample implementation by using soapsuds to create the client side proxy class and annotated this class with interop attribute