Re: [ADVANCED-DOTNET] Debugging Deadlock

2004-03-17 Thread Matt Davey
Wouldn't ntsdexts.dll and !locks help ? Later - Original Message - From: "Griffiths, Ian" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, March 17, 2004 3:57 PM Subject: Re: [ADVANCED-DOTNET] Debugging Deadlock Since monitors can be reacquired reentrantly, it won't be any o

Re: [ADVANCED-DOTNET] oracle db provider

2004-03-17 Thread Joel Kunze
I'll second this. I have seen this behaivor twice. It is possible but not highly likely you could just copy the oci.dll file onto the system, but I would also recommend a reinstall of oracle client. -Original Message- From: Moderated discussion of advanced .NET topics. [mailto:[EMAIL PROT

Re: [ADVANCED-DOTNET] Debugging Deadlock

2004-03-17 Thread Griffiths, Ian
Matt Davey wrote: > Wouldn't ntsdexts.dll and !locks help ? That shows you Win32 critical sections, not .NET Monitors. However, I can't believe I forgot about Son of Strike - the solution Rick Byers points out. D'Oh! -- Ian Griffiths - DevelopMentor http://www.interact-sw.co.uk/iangblog/ ===

Re: [ADVANCED-DOTNET] Debugging Deadlock

2004-03-17 Thread Rick Byers
The approach that I have found to be most useful is to use the SyncBlk command in SOS. If you're not familiar with it, SOS is a native debugger extension that comes with the .NET SDK that provides access to CLR data structures. I has a bit of a learning curve, but it is totally invaluable when de

Re: [ADVANCED-DOTNET] oracle db provider

2004-03-17 Thread Ivan Towlson
Is this a Web application/service? We have seen a similar problem in Web services and it may be a permissions problem. Does the ASPNET account have access to the Oracle home directory? -- Ivan Towlson White Carbon -Original Message- From: Moderated discussion of advanced .NET topics. [

Re: [ADVANCED-DOTNET] DataGrid Hscroll Bar locks up

2004-03-17 Thread Zecharya, Bar (FIRM)
I had the reverse problem - the scroll bar appeared even though all the columns fit well inside the grid! The problem disappeared when the user resized a column. Unfortunately, I only found a workaround - forcefully hiding the scrollbar in the grid's Visible_Changed event handler: datagrid

Re: [ADVANCED-DOTNET] Cannot connect to local IIS

2004-03-17 Thread Jon Flanders
What IP addresses is IIS configured to listen on? -Original Message- From: Moderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Dana Thomas Gehm Sent: Tuesday, March 16, 2004 2:47 PM To: [EMAIL PROTECTED] Subject: [ADVANCED-DOTNET] Cannot connect to local II

Re: [ADVANCED-DOTNET] Debugging Deadlock

2004-03-17 Thread Griffiths, Ian
Since monitors can be reacquired reentrantly, it won't be any of the threads that are blocked on the Monitor.Enter call. So it must be one of the other threads. If there are no other threads, then that's a little strange. Are you running on v1.0 or v1.1 of the .NET framework? On v1.0 there was a

Re: [ADVANCED-DOTNET] oracle db provider

2004-03-17 Thread Knebels, Francis
It looks like you Oracle install is corrupted/incomplete. I've been using the System.Data.OracleClient namespace for about 2 years now without much problem. I would try reinstalling the oracle software. FYI. When you are creating your connection programmatically, it uses the System.Data.OracleC

Re: [ADVANCED-DOTNET] Client getting Disconnected error when using web service

2004-03-17 Thread Jarle Skogheim
Have you tried implementing 'executionTimeout' in your web.config? Insert the following line inside your section of the web.config: Regards, Jarle Skogheim On Mon, 15 Mar 2004 21:35:39 -0500, Robert Slaney <[EMAIL PROTECTED]> wrote: >One client is receiving an exception "The underlying con

[ADVANCED-DOTNET] Cannot connect to local IIS

2004-03-17 Thread Dana Thomas Gehm
I'm just getting started in ASP.NET. In the process thereof, I have XP PRO running on a notebook computer. When I try to view "http://localhost/localstart.asp"; or even any .htm file in "c:\Inetpub\wwwroot" I get a "Cannot find server or DNS Error" message in IE. Here's what I've checked so far:

[ADVANCED-DOTNET] oracle db provider

2004-03-17 Thread Jim
I receive the following exception when trying to open a connection to an Oracle database. Exception Details: System.DllNotFoundException: Unable to load DLL (oci.dll). Source Error: Line 133:'Dim myCommand As New OracleCommand(mySql, myConnection) Line 134:'myConnection.Open() L

[ADVANCED-DOTNET] MSI Custom actions

2004-03-17 Thread Walid Soumer
Hi! I created a Setup Project, and I need to run a custom installer at the end of the installation. I added the DLL containing my Installer in to the Application Folder and deploy it in the GAC. But the custom action appears to be run before the assembly gets installed in the GAC. Any help would be

Re: [ADVANCED-DOTNET] Client getting Disconnected error when using web service

2004-03-17 Thread Martijn de Haas
http500 means Internal Server error. Appearantly on the server that runs the web service, an exception has occured in the Web Service code. Check the event log in the Web Service server: there might be an explanation of the internal error. If not, change web.config of the webservice en turn off the

[ADVANCED-DOTNET] DataGrid Hscroll Bar locks up

2004-03-17 Thread Vince Pacella
Windows 2000 and XP Pro. Dot Net 1.1 When I reassign the data binding on a winform data-grid, I get instances where the HSCROLL Bar disables itself, and there are clearly columns to the right that need to be scrolled to. If the user resizes the form, the scroll bar fixes itself. I ran SPY++ du

Re: [ADVANCED-DOTNET] ASPNET local account access to a share on another machine

2004-03-17 Thread Martijn de Haas
Yes it is possible. You have to make sure that both .NET framework and Windows OS allowes you to write the filed. For Windows OS authorization, you can either: * Run ASPNET user under NETWORKSERVICE account when using Windows 2003 * Impersonate a network user (in MSDN library, method WindowsIdenti

[ADVANCED-DOTNET] Debugging Deadlock

2004-03-17 Thread Chris Mullins
I've got a large system built in .NET that has a rarely occurring deadlock during shutdown. The deadlock is around a System.Threading.Monitor. My problem is that on the rare occasion that I can get the deadlock to occur, and the debugger to stop everything, all that I can see are a dozen

Re: [ADVANCED-DOTNET] Client getting Disconnected error when using web service

2004-03-17 Thread james
If there is no difference in the data request your troubled client is making, then I would capture the entire client request to a log file and check for malformed XML or header information. I have seen this happen when the web service provider timed out during the data collection stage before sen

[ADVANCED-DOTNET] Security risk of tampering policy files

2004-03-17 Thread Richard Grimes
When you sign an assembly the assembly is protected from tampering through the strong name signature (a signed hash of the assembly). If the assembly has external resource files those are protected too because the hash of the external resource is stored in the manifest of the assembly and the manif

Re: [ADVANCED-DOTNET] ASPNET local account access to a share on another machine

2004-03-17 Thread Damon Squires
No, this is a local system account. You can change the aspnet worked process user to a network account but this is not recommended. You'd be better off using an impersonation context to do this. -Original Message- From: Moderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED