Re: [ADVANCED-DOTNET] Denied Error

2004-06-07 Thread Puneet Jain
It is not a server side error. This error is in Internet Explorer. Now, any clues??? Puneet - Original Message - From: J. Merrill [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 04, 2004 8:44 PM Subject: Re: [ADVANCED-DOTNET] Denied Error If you don't know the answer

Re: [ADVANCED-DOTNET] Denied Error

2004-06-07 Thread Thomas Tomiczek
Can it rech the asp.net .js file? Or dies it get an error doing so (especially an access denied error?) Thomas Tomiczek THONA Software Consulting Ltd. (Microsoft MVP C#/.NET) (CTO PowerNodes Ltd.) -Original Message- From: Unmoderated discussion of advanced .NET topics.

Re: [ADVANCED-DOTNET] Denied Error

2004-06-07 Thread Puneet Jain
No. It does not reach. (only when I use fully Qualified Domain name) Puneet - Original Message - From: Thomas Tomiczek [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 07, 2004 12:03 PM Subject: Re: [ADVANCED-DOTNET] Denied Error Can it rech the asp.net .js file? Or dies it

Re: [ADVANCED-DOTNET] Denied Error

2004-06-07 Thread Thomas Tomiczek
Well, this is your error then, isn't it? Thomas Tomiczek THONA Software Consulting Ltd. (Microsoft MVP C#/.NET) (CTO PowerNodes Ltd.) -Original Message- From: Unmoderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Puneet Jain Sent: Montag, 7. Juni

Re: [ADVANCED-DOTNET] GAC Assembly Uninstall

2004-06-07 Thread dave wanta
Hi Merill, I run into this with my customers when they are upgrading between evaluation versions and purchased versions of my software. although this uses my software as an example, it will provide some suggestions to resolve the issue. http://www.aspnetemail.com/kbfaq.aspx?#question15 Let me

[ADVANCED-DOTNET] SoapHttpClientProtocol doing strange things with 3rd party web services

2004-06-07 Thread Nick
Hi Guys, I'm really stuck on this problem and I am hoping somone has a quick fix, only because I'll have to write my own hack if required. So, what I'm doing is simply calling the google web service. I've been stuck on this problem for a while. I receive a Specified Cast Exception. When I

[ADVANCED-DOTNET] ThreadPool.QueueUserWorkItem Memory Problems

2004-06-07 Thread Paul Johansen
I have implemented a multithreaded solution where I am calling ThreadPool.QueueUserWorkItem and I am passing both the WaitCallback class (using a method called PostData) as well as the state object (a custom class consisting of four strings and a bool). When I do this, I am leaking memory like

Re: [ADVANCED-DOTNET] ThreadPool.QueueUserWorkItem Memory Problems

2004-06-07 Thread Sam Ang
How about setting your state object to null at the end of your PostData? sam --- Paul Johansen [EMAIL PROTECTED] wrote: I have implemented a multithreaded solution where I am calling ThreadPool.QueueUserWorkItem and I am passing both the WaitCallback class (using a method called PostData) as

Re: [ADVANCED-DOTNET] ThreadPool.QueueUserWorkItem Memory Problems

2004-06-07 Thread Paul Johansen
Sorry, mistyped that one... A WaitCallback delegate. Yes, I am instantiating a new one for each call. ThreadPool.QueueUserWorkItem(new WaitCallback(PostData), holder) -Original Message- From: Unmoderated discussion of advanced .NET topics. [mailto:[EMAIL PROTECTED] On Behalf Of Sam Ang

Re: [ADVANCED-DOTNET] ThreadPool.QueueUserWorkItem Memory Problems

2004-06-07 Thread Arlie Davis
Use the CLR memory profiler. It does a good job of showing you what's chewing up memory. That is, if it is instances of managed classes. If you're leaking unmanaged memory, it's more difficult to diagnose. -- arlie -Original Message- From: Unmoderated discussion of advanced .NET