Re: [DOTNET] Consuming WSDL on *nix platforms

2002-06-12 Thread Pradeep Tapadiya
You may find the following link useful: http://www.apache.org/~rubys/ApacheClientInterop.html Regards, Pradeep http://www.tapadiya.net/pradeep - Original Message - From: "Eric W. Sink" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 12, 2002 11:31 AM Subject: Re: [DOTN

Re: [DOTNET] Handling Unhandled Exceptions

2002-06-11 Thread Pradeep Tapadiya
Paul, It seems the Forms runtime code adds a ThreadExceptionHandler to the application. Instead of using an UnhandledExceptionHandler, try using a ThreadExceptionHandler. Application.ThreadException += new ThreadExceptionEventHandler(MyExceptionHandler); Hope this helps. Pradeep http://www.

Re: [DOTNET] Desktop Language

2002-06-10 Thread Pradeep Tapadiya
NET classifies the properties of a culture into two groups - CurrentCulture and CurrentUICulture. The first one is used for sorting and formatting purposes and the second one is used for user-interface purposes. This distinction was created, for example, to support large enterprises that want thei

Re: [ADVANCED-DOTNET] threadpool and STA

2002-06-04 Thread Pradeep Tapadiya
As far as I know, the apartment model cannot be changed for the system-defined ThreadPool class. Pradeep http://www.tapadiya.net/pradeep - Original Message - From: "Zoltan Csibi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 04, 2002 4:02 AM Subject: [ADVANCED-DOTNET]

Re: [DOTNET] Remoting, I think

2002-06-04 Thread Pradeep Tapadiya
David, I guess what you are asking is what is the best way of inter-process communication between two .NET applications running on the same machine? Using .NET remoting with binary formatter over TCP is simple and efficient. Look at www.gotdonet.com for examples. Regards Pradeep http://www.tapad

Re: [DOTNET] CLR execution

2002-05-14 Thread Pradeep Tapadiya
Although the VES does not directly execute the IL code, it has plenty of other responsibilities. The VES (referred to as the Execution Engine (EE) under CLR) consists of several different components such as the assembly loader, metadata validator, the JITter and so on, each of which has a specifi

Re: [DOTNET] Different acees for set and get property accessors

2002-05-07 Thread Pradeep Tapadiya
One possibility is to define two properties, one with the get accessor and one with the set accessor. Pradeep http://www.tapadiya.net/pradeep - Original Message - From: "Rama Krishna" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 07, 2002 7:15 AM Subject: [DOTNET] Differ

Re: [ADVANCED-DOTNET] gcConcurrent config setting and CLR flavour

2002-05-03 Thread Pradeep Tapadiya
Also, gcConcurrent does not have much to do with svr or wks CLR. It just controls whether or not GC should happen on a concurrent thread Pradeep http://www.tapadiya.net/pradeep - Original Message - From: "Willy Denoyette" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 03,

Re: [DOTNET] How often does Garbage Collection run?

2002-05-01 Thread Pradeep Tapadiya
Jim, Good summary! Where did you get the size limits for each generation? I had asked for this information to Microsoft folks via .NET authors connection some time ago but could not get an answer :-(. Pradeep http://www.tapadiya.net/pradeep - Original Message - From: "Murphy, James" <[

Re: [DOTNET] Serializing to SQL Table

2002-04-24 Thread Pradeep Tapadiya
I will be travelling between Apr 24 and Apr 28. Will reply after I return. Regards, Pradeep http://www.tapadiya.net/pradeep You can read messages from the DOTNET archive, unsubscribe from DOTNET, or subscribe to other DevelopMentor lists at http://discuss.develop.com.

Re: [DOTNET] InvalidOperationException - webservice

2002-04-24 Thread Pradeep Tapadiya
I strongly suspect that the account your Web service is running under does not have permissions to write to c:\winnt\temp directory. Run your Web service under a privileged account and see if you get the same results. Or, change the permissions on the directory and give full control to ASPNET acco

Re: [DOTNET] Retrieving user properties from a WinNT provider using .Net

2002-04-24 Thread Pradeep Tapadiya
Sorry for jumping in the middle. Under ASP.NET, authentication does little to change the credentials under which a call to directory services. What you are looking for is impersonation. By default, ASP.NET uses "ASPNET" as the user account which has limited permissions. Under Web.Config, set your

Re: [DOTNET] simple question

2002-04-23 Thread Pradeep Tapadiya
Use WMI (namespace System.Management). Win32_DiskDrive has the information (I think) that you are looking for. Pradeep http://www.tapadiya.net/pradeep - Original Message - From: "Shishir Kumar Mishra" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 23, 2002 8:48 AM Subje

Re: [DOTNET] Measuring performance

2002-04-15 Thread Pradeep Tapadiya
If you don't want the whole process to run under a privileged account, you have a couple of options: 1. You can turn IIS authentication on and configure your ASP.NET application so that the client request thread (not the whole process) runs under the credentials of the client. 2. Within your met