IIS
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsSystem AdministrationIIS

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old January 27th, 2006, 08:44 AM
glorioso glorioso is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2006
Posts: 2 glorioso User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 28 m 45 sec
Reputation Power: 0
Application popup: w3wp.exe - Application Error

Hello

I have a VB.net application using web services running on a 2003 windows server. I have been getting the following message in the event viewer.
" Application popup: w3wp.exe - Application Error : The instruction at "0x73585d55" referenced memory at "0x00000018". The memory could not be "read"."

Any idea on what is causing this problem?
This is related to the IIS worker process.

Thank you

Reply With Quote
  #2  
Old January 27th, 2006, 05:31 PM
Doug G Doug G is offline
Grumpier Old Moderator
Dev Shed God 19th Plane (14000 - 14499 posts)
 
Join Date: Jun 2003
Posts: 14,233 Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level) 
Time spent in forums: 1 Month 4 Weeks 14 h 11 m 5 sec
Reputation Power: 4445
My best guess is you have some code probelm in your net application, or in any custom com controls you may be using. On previous versions of windows the error message is, I believe, caused by hard-to-see code errors. I have a sample VB6 project that can generate a similar windows error and crash the vb ide, for example, and it's caused by a problem in my code.
__________________
======
Doug G
======
It is a truism of American politics that no man who can win an election deserves to. --Trevanian, from the novel Shibumi

Reply With Quote
  #3  
Old January 27th, 2006, 07:20 PM
glorioso glorioso is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2006
Posts: 2 glorioso User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 28 m 45 sec
Reputation Power: 0
Doug,

Do you know is there is any tool out there that would help me find the problem in the code? or do you any other way of finding what the problem is?

thank you

Reply With Quote
  #4  
Old May 9th, 2006, 02:26 AM
etcefala etcefala is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2006
Location: Milan - Italy
Posts: 1 etcefala User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 37 m 52 sec
Reputation Power: 0
Same problem

Quote:
Originally Posted by glorioso
Hi Doug,

I've exactly the same problem glorioso has. Only the error memory address is different. Can't find any clue.

The problem raised after installing a site running on .Net Framework 2.0. I have to run it inside a different application pool.

thank you


Ettore


Reply With Quote
  #5  
Old April 2nd, 2007, 09:18 PM
Adzstar88 Adzstar88 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 1 Adzstar88 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 17 m 56 sec
Reputation Power: 0
W3WP.exe error

If you are using Network Service to run your sight you might get this error " Application pop-up: w3wp.exe - Application Error : The instruction at "0x73585d55" referenced memory at "0x00000018". The memory could not be "read"."
or an error similar to it. This is caused when the .NET\Framework\<version #>\webengine.dll crashes. This is do to the fact that The Network Service does not have special permissions to .net registry settings. Please do the following steps to fix the problem:
Navagate to
1.HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ASP.NET_2.0.50727\Names (or whatever version of .NEt framework you have.
2.Start Regedit and navigate to that key.
Right-click "Names" and select Permissions on the context menu.
Click Add and enter NETWORK SERVICE, click "Check Names" and click "Ok".
With NETWORK SERVICE highlighed in the "Groups or User Names" list click "Advanced"
On the "Advanced Security Settings for Names" dialogue highlight NETWORK SERVICE and click "Edit"
In the "Permission entry for Names" dialogue check the "Name" box is showing "NETWORK SERVICE" and put check marks against "Query Value", "Set Value", "Create Subkey", "Enumerate Subkeys", "Notify" and "Read Control".
Click Ok on all the dialogues and close regedit.

Ensure your application pools are reconfigured to run as NETWORK SERVICE (or at least all the ones you want to be) and restart them

On subsequent restarts the w3wp.exe crash should not occur.

-Hope this works for you

Quote:
Originally Posted by glorioso
Hello

I have a VB.net application using web services running on a 2003 windows server. I have been getting the following message in the event viewer.
" Application popup: w3wp.exe - Application Error : The instruction at "0x73585d55" referenced memory at "0x00000018". The memory could not be "read"."

Any idea on what is causing this problem?
This is related to the IIS worker process.

Thank you


Comments on this post
DemonIT agrees: Thank you

Reply With Quote
  #6  
Old April 19th, 2007, 01:11 PM
bmacconnell bmacconnell is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 1 bmacconnell User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 m 52 sec
Reputation Power: 0
Quote:
Originally Posted by Adzstar88
If you are using Network Service to run your sight you might get this error " Application pop-up: w3wp.exe - Application Error : The instruction at "0x73585d55" referenced memory at "0x00000018". The memory could not be "read"."
or an error similar to it. This is caused when the .NET\Framework\<version #>\webengine.dll crashes. This is do to the fact that The Network Service does not have special permissions to .net registry settings. Please do the following steps to fix the problem:
Navagate to
1.HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ASP.NET_2.0.50727\Names (or whatever version of .NEt framework you have.
2.Start Regedit and navigate to that key.
Right-click "Names" and select Permissions on the context menu.
Click Add and enter NETWORK SERVICE, click "Check Names" and click "Ok".
With NETWORK SERVICE highlighed in the "Groups or User Names" list click "Advanced"
On the "Advanced Security Settings for Names" dialogue highlight NETWORK SERVICE and click "Edit"
In the "Permission entry for Names" dialogue check the "Name" box is showing "NETWORK SERVICE" and put check marks against "Query Value", "Set Value", "Create Subkey", "Enumerate Subkeys", "Notify" and "Read Control".
Click Ok on all the dialogues and close regedit.

Ensure your application pools are reconfigured to run as NETWORK SERVICE (or at least all the ones you want to be) and restart them

On subsequent restarts the w3wp.exe crash should not occur.

-Hope this works for you




I have the same problem has anyone tried this solution and if so what were your results?

Reply With Quote
  #7  
Old October 23rd, 2007, 09:02 AM
DemonIT DemonIT is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Oct 2007
Posts: 1 DemonIT User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 m 29 sec
Reputation Power: 0
Thumbs up It Works!!!

Thank you Adzstar88, this has been driving me NUTS!!!!

Excellent and detailed explanation also.

Thank you!

J.

Reply With Quote
  #8  
Old December 3rd, 2007, 01:26 PM
gsmiling gsmiling is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2007
Posts: 1 gsmiling User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 8 m 21 sec
Reputation Power: 0
Thanks Adzstar88

i have been struggling with the issue....Your suggestion worked perfectly.

I think I did it before but...this made me go and sure enough I didnt have the correct permissions for .NET 1.14...

thanks again.

Reply With Quote
  #9  
Old June 22nd, 2010, 04:05 AM
sandsturm sandsturm is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2010
Posts: 2 sandsturm User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 8 m 9 sec
Reputation Power: 0
I've exactly the same issue. The difference in my case: I cannot run the application pools with the NETWORK Service Account, I've there an Active Directory Account to run the application pool. So, I tried to give this Account the necessary permissons on the .Net Regkey. But this doesn't worked for me. Do I have to do something else in this case?

Thx and regards
sandsturm

Reply With Quote
  #10  
Old June 23rd, 2010, 02:11 AM
Doug G Doug G is offline
Grumpier Old Moderator
Dev Shed God 19th Plane (14000 - 14499 posts)
 
Join Date: Jun 2003
Posts: 14,233 Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level)Doug G User rank is General 52nd Grade (Above 100000 Reputation Level) 
Time spent in forums: 1 Month 4 Weeks 14 h 11 m 5 sec
Reputation Power: 4445
Quote:
Originally Posted by sandsturm
I've exactly the same issue. The difference in my case: I cannot run the application pools with the NETWORK Service Account, I've there an Active Directory Account to run the application pool. So, I tried to give this Account the necessary permissons on the .Net Regkey. But this doesn't worked for me. Do I have to do something else in this case?

Thx and regards
sandsturm
Hi and welcome to the forum. But you may not get an answer, this thread is 3 years old

I don't know myself, sorry.

Reply With Quote
Reply

Viewing: Dev Shed ForumsSystem AdministrationIIS > Application popup: w3wp.exe - Application Error

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap