-
Browser and time out
I receive this error message in my event log when I run my application. When I run my app on other pc's I have no problems, what could be wrong? Has it something to do with the time out of the browser?
Code:
The system failed to register network adapter with settings:
Adapter Name : {37FD0EE7-C007-41C4-BC95-5CB21C2475A2}
Host Name : lrhpl
Adapter-specific Domain Suffix : logstor.com
DNS server list :
172.16.10.11, 172.16.10.12
Sent update to server : 172.16.10.11
IP Address(es) :
172.16.100.13
The reason it could not register was because either: (a) the DNS server does not support the DNS dynamic update protocol, or (b) the primary zone authoritative for the registering names does not currently accept dynamic updates.
aspnet_wp.exe (PID: 1132) was recycled because it was suspected to be in a deadlocked state. It did not send any responses for pending requests in the last 180 seconds.
To add or register a DNS host (A) resource record using the specific DNS name for this adapter, contact your DNS server or network systems administrator.
-
You have two issues here.
Your DNS server did not allow registration for your network adapter.
This will have to be worked out on your end.
Also, the ASP.NET runtime is hanging. The particular error you received should be remedied with the 1.1 update for .NET. You can get that update at www.asp.net
If you already installed that update, you need to reregister ASP.NET as follows:
C:\WINNT\Microsoft.NET\Framework\v1.1.4322\aspnet_regiis -i
(Type that in the RUN window)
-
Great sounds like that's what I'm missing, thanks again.
-
Well, now I've received a new message each time I run an app. What' going on?
Code:
'IUSR_LRUDLAAN03' due to the following error: The referenced account is currently locked out and may not be logged on to. The data is the error code.
For additional information specific to this message please visit the Microsoft Online Support site located at: http://www.microsoft.com/contentredirect.asp.
-
In the application log this appears:
Code:
aspnet_wp.exe could not be started. The error code for the failure is 80004005. This error can be caused when the worker process account has insufficient rights to read the .NET Framework files. Please ensure that the .NET Framework is correctly installed and that the ACLs on the installation directory allow access to the configured account.
Now I've tried to reinstall .Net Framework, hope this will help me!
-
You can unlock an account by editing its properties in the user control panel.
-
How do I unluck the application from the control panel?