Welcome to MobyThreads.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in
All support for the MobyThreads Threaded phpBB MOD can now be found on welsolutions at this forum

C++ Runtime Error on Server Console with W2K

 
   Web Hosting and Web Master Forums (Home) -> IIS RSS
Next:  .cct files not working on IE/ Mac OS combination ..  
Author Message
mu0yc3

External


Since: Sep 02, 2004
Posts: 6



(Msg. 1) Posted: Thu Sep 02, 2004 6:44 pm
Post subject: C++ Runtime Error on Server Console with W2K
Archived from groups: microsoft>public>inetserver>iis (more info?)

Server running Windows 2000 (latest service pack), IIS and OWA.

Constantly displayed on the server console is a dialogue box regarding a C++
runtime error in inetinfo.exe.

"This application has requested the Runtime to terminate it in an unusual
way"

If the OK button is clicked, then the dialogue box will re-appear within a
few seconds, if not sooner.

Any idea as to what may be causing this? I believe that the server is up to
date regarding security patches.

 >> Stay informed about: C++ Runtime Error on Server Console with W2K 
Back to top
Login to vote
johnjordan

External


Since: Sep 02, 2004
Posts: 3



(Msg. 2) Posted: Thu Sep 02, 2004 6:44 pm
Post subject: RE: C++ Runtime Error on Server Console with W2K [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

If you are running .NET framework v1.0 on this box, there is a known issue
dealing with how the Microsoft C++ compiler handle the AppDomainUnload event.
When the AppDomain is reloaded, the unmanaged code still holds on to a
reference to the previous AppDomain, and when calls are made into the
unmanaged code, it fails since the AppDomain it is referencing is out of date.

Here's the article:

<a style='text-decoration: underline;' href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q309694" target="_blank">http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q309694</a>

As for a workaround - do you know if this comes from code that you (your
organization) created or from some COTS (commercial off the shell)
application?

If it is from some COTS application, call the vendor and request a fix. As
for your code, see the Microsoft article. Basically, it is fixing a dll that
initializes from when the AppDomain reloads. This happens if that
application that using the .NET v1 framework initializes something that hits
that dll, thus causing AppDomain reloads.

You may want to clear your temporary ASP.NET folder by doing the following:

1. Goto a command prompt on your server and type iisreset /stop to stop all
IIS services.
2. Goto the temp ASP.NET folders
(C:\WINNT\Microsoft.NET\Framework\v1.0.xxxx\Temporary ASP.NET Files). Delete
all content in that folder.
3. In the command prompt, type iisreset /start to start back IIS services.

Let me know if this helps.

John Jordan



"Jethro Q Walrustitty" wrote:

 > Server running Windows 2000 (latest service pack), IIS and OWA.
 >
 > Constantly displayed on the server console is a dialogue box regarding a C++
 > runtime error in inetinfo.exe.
 >
 > "This application has requested the Runtime to terminate it in an unusual
 > way"
 >
 > If the OK button is clicked, then the dialogue box will re-appear within a
 > few seconds, if not sooner.
 >
 > Any idea as to what may be causing this? I believe that the server is up to
 > date regarding security patches.
 >
 >
 ><!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: C++ Runtime Error on Server Console with W2K 
Back to top
Login to vote
mu0yc3

External


Since: Sep 02, 2004
Posts: 6



(Msg. 3) Posted: Thu Sep 02, 2004 9:29 pm
Post subject: Re: C++ Runtime Error on Server Console with W2K [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

There is indeed a .NET installation, but I'm not sure as to why it is there.
One of the admins may have installed it recently.

"John Jordan" <JohnJordan.DeleteThis@discussions.microsoft.com> wrote in message
news:A6B4988A-242B-4E0D-9820-70BE3C15B5EC@microsoft.com...
 > If you are running .NET framework v1.0 on this box, there is a known issue
 > dealing with how the Microsoft C++ compiler handle the AppDomainUnload
 > event.
 > When the AppDomain is reloaded, the unmanaged code still holds on to a
 > reference to the previous AppDomain, and when calls are made into the
 > unmanaged code, it fails since the AppDomain it is referencing is out of
 > date.
 >
 > Here's the article:
 >
<font color=purple> > <a style='text-decoration: underline;' href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q309694</font" target="_blank">http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q309694</font</a>>
 >
 > As for a workaround - do you know if this comes from code that you (your
 > organization) created or from some COTS (commercial off the shell)
 > application?
 >
 > If it is from some COTS application, call the vendor and request a fix.
 > As
 > for your code, see the Microsoft article. Basically, it is fixing a dll
 > that
 > initializes from when the AppDomain reloads. This happens if that
 > application that using the .NET v1 framework initializes something that
 > hits
 > that dll, thus causing AppDomain reloads.
 >
 > You may want to clear your temporary ASP.NET folder by doing the
 > following:
 >
 > 1. Goto a command prompt on your server and type iisreset /stop to stop
 > all
 > IIS services.
 > 2. Goto the temp ASP.NET folders
 > (C:\WINNT\Microsoft.NET\Framework\v1.0.xxxx\Temporary ASP.NET Files).
 > Delete
 > all content in that folder.
 > 3. In the command prompt, type iisreset /start to start back IIS services.
 >
 > Let me know if this helps.
 >
 > John Jordan
 >
 >
 >
 > "Jethro Q Walrustitty" wrote:
 >
  >> Server running Windows 2000 (latest service pack), IIS and OWA.
  >>
  >> Constantly displayed on the server console is a dialogue box regarding a
  >> C++
  >> runtime error in inetinfo.exe.
  >>
  >> "This application has requested the Runtime to terminate it in an unusual
  >> way"
  >>
  >> If the OK button is clicked, then the dialogue box will re-appear within
  >> a
  >> few seconds, if not sooner.
  >>
  >> Any idea as to what may be causing this? I believe that the server is up
  >> to
  >> date regarding security patches.
  >>
  >>
  >><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: C++ Runtime Error on Server Console with W2K 
Back to top
Login to vote
user1772

External


Since: Jun 10, 2004
Posts: 1807



(Msg. 4) Posted: Thu Sep 02, 2004 11:10 pm
Post subject: Re: C++ Runtime Error on Server Console with W2K [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Thu, 2 Sep 2004 15:44:09 +0100, "Jethro Q Walrustitty"
<mu0yc3 RemoveThis @hotmail.com> wrote:

 >Server running Windows 2000 (latest service pack), IIS and OWA.
 >
 >Constantly displayed on the server console is a dialogue box regarding a C++
 >runtime error in inetinfo.exe.
 >
 >"This application has requested the Runtime to terminate it in an unusual
 >way"
 >
 >If the OK button is clicked, then the dialogue box will re-appear within a
 >few seconds, if not sooner.
 >
 >Any idea as to what may be causing this? I believe that the server is up to
 >date regarding security patches.

Check your event logs and see what shows.

Jeff<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: C++ Runtime Error on Server Console with W2K 
Back to top
Login to vote
mu0yc3

External


Since: Sep 02, 2004
Posts: 6



(Msg. 5) Posted: Fri Sep 03, 2004 1:07 pm
Post subject: Re: C++ Runtime Error on Server Console with W2K [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I've discussed this matter with a collegue.

Although this organisation is in the software development industry, it's
unlikely that there's anything in-house written running on this server.

Therefore the only software likely to use .NET that's running is the backup
software (Veritas), the anti-virus software or the spam filter. Nothing else
really runs on this machine, bar some monitoring tools.

One other problem, though, is that this error introduces some instability on
the server. Whilst attemtpting to get IISState to track IIS yesterday
evening, somehow Exchange stopped relaying mail. Restarting Exchange stopped
IIS, then restarting IIS stopped exchange. A reboot was needed to get
everything running again.

"Jethro Q Walrustitty" <mu0yc3 RemoveThis @hotmail.com> wrote in message
news:ch7l9n$jv8$1@newsreaderg1.core.theplanet.net...
 > There is indeed a .NET installation, but I'm not sure as to why it is
 > there. One of the admins may have installed it recently.
 >
 > "John Jordan" <JohnJordan RemoveThis @discussions.microsoft.com> wrote in message
 > news:A6B4988A-242B-4E0D-9820-70BE3C15B5EC@microsoft.com...
  >> If you are running .NET framework v1.0 on this box, there is a known
  >> issue
  >> dealing with how the Microsoft C++ compiler handle the AppDomainUnload
  >> event.
  >> When the AppDomain is reloaded, the unmanaged code still holds on to a
  >> reference to the previous AppDomain, and when calls are made into the
  >> unmanaged code, it fails since the AppDomain it is referencing is out of
  >> date.
  >>
  >> Here's the article:
  >>
<font color=green>  >> <a style='text-decoration: underline;' href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q309694</font" target="_blank">http://support.microsoft.com/default.aspx?scid=kb;EN-US;Q309694</font</a>>
  >>
  >> As for a workaround - do you know if this comes from code that you (your
  >> organization) created or from some COTS (commercial off the shell)
  >> application?
  >>
  >> If it is from some COTS application, call the vendor and request a fix.
  >> As
  >> for your code, see the Microsoft article. Basically, it is fixing a dll
  >> that
  >> initializes from when the AppDomain reloads. This happens if that
  >> application that using the .NET v1 framework initializes something that
  >> hits
  >> that dll, thus causing AppDomain reloads.
  >>
  >> You may want to clear your temporary ASP.NET folder by doing the
  >> following:
  >>
  >> 1. Goto a command prompt on your server and type iisreset /stop to stop
  >> all
  >> IIS services.
  >> 2. Goto the temp ASP.NET folders
  >> (C:\WINNT\Microsoft.NET\Framework\v1.0.xxxx\Temporary ASP.NET Files).
  >> Delete
  >> all content in that folder.
  >> 3. In the command prompt, type iisreset /start to start back IIS
  >> services.
  >>
  >> Let me know if this helps.
  >>
  >> John Jordan<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: C++ Runtime Error on Server Console with W2K 
Back to top
Login to vote
mu0yc3

External


Since: Sep 02, 2004
Posts: 6



(Msg. 6) Posted: Mon Sep 06, 2004 2:21 pm
Post subject: Re: C++ Runtime Error on Server Console with W2K [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I've not had chance to clear the ASP.NET folder yet, as I can only make
changes to the server outside of office hours. I might be able to get it
going tonight.

"John Jordan" <JohnJordan.DeleteThis@discussions.microsoft.com> wrote in message
news:A6B4988A-242B-4E0D-9820-70BE3C15B5EC@microsoft.com...


 > You may want to clear your temporary ASP.NET folder by doing the
 > following:
 >
 > 1. Goto a command prompt on your server and type iisreset /stop to stop
 > all
 > IIS services.
 > 2. Goto the temp ASP.NET folders
 > (C:\WINNT\Microsoft.NET\Framework\v1.0.xxxx\Temporary ASP.NET Files).
 > Delete
 > all content in that folder.
 > 3. In the command prompt, type iisreset /start to start back IIS services.
 >
 > Let me know if this helps.
 >
 > John Jordan
 >
 >
 >
 > "Jethro Q Walrustitty" wrote:
 >
  >> Server running Windows 2000 (latest service pack), IIS and OWA.
  >>
  >> Constantly displayed on the server console is a dialogue box regarding a
  >> C++
  >> runtime error in inetinfo.exe.
  >>
  >> "This application has requested the Runtime to terminate it in an unusual
  >> way"
  >>
  >> If the OK button is clicked, then the dialogue box will re-appear within
  >> a
  >> few seconds, if not sooner.
  >>
  >> Any idea as to what may be causing this? I believe that the server is up
  >> to
  >> date regarding security patches.
  >>
  >>
  >><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: C++ Runtime Error on Server Console with W2K 
Back to top
Login to vote
mu0yc3

External


Since: Sep 02, 2004
Posts: 6



(Msg. 7) Posted: Mon Sep 06, 2004 9:05 pm
Post subject: Re: C++ Runtime Error on Server Console with W2K [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Just got the chance to do that now; unfortunately there was nothing in that
folder.

"Jethro Q Walrustitty" <mu0yc3 RemoveThis @hotmail.com> wrote in message
news:chhdmg$b9e$1@newsreaderg1.core.theplanet.net...
 > I've not had chance to clear the ASP.NET folder yet, as I can only make
 > changes to the server outside of office hours. I might be able to get it
 > going tonight.
 >
 > "John Jordan" <JohnJordan RemoveThis @discussions.microsoft.com> wrote in message
 > news:A6B4988A-242B-4E0D-9820-70BE3C15B5EC@microsoft.com...
 >
 >
  >> You may want to clear your temporary ASP.NET folder by doing the
  >> following:
  >>
  >> 1. Goto a command prompt on your server and type iisreset /stop to stop
  >> all
  >> IIS services.
  >> 2. Goto the temp ASP.NET folders
  >> (C:\WINNT\Microsoft.NET\Framework\v1.0.xxxx\Temporary ASP.NET Files).
  >> Delete
  >> all content in that folder.
  >> 3. In the command prompt, type iisreset /start to start back IIS
  >> services.
  >>
  >> Let me know if this helps.
  >>
  >> John Jordan
  >>
  >>
  >>
  >> "Jethro Q Walrustitty" wrote:
  >>
   >>> Server running Windows 2000 (latest service pack), IIS and OWA.
   >>>
   >>> Constantly displayed on the server console is a dialogue box regarding a
   >>> C++
   >>> runtime error in inetinfo.exe.
   >>>
   >>> "This application has requested the Runtime to terminate it in an
   >>> unusual
   >>> way"
   >>>
   >>> If the OK button is clicked, then the dialogue box will re-appear within
   >>> a
   >>> few seconds, if not sooner.
   >>>
   >>> Any idea as to what may be causing this? I believe that the server is up
   >>> to
   >>> date regarding security patches.
   >>>
   >>>
   >>>
 >
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: C++ Runtime Error on Server Console with W2K 
Back to top
Login to vote
mu0yc3

External


Since: Sep 02, 2004
Posts: 6



(Msg. 8) Posted: Wed Sep 22, 2004 4:04 pm
Post subject: Re: C++ Runtime Error on Server Console with W2K [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"John Jordan" <JohnJordan.RemoveThis@discussions.microsoft.com> wrote in message
news:A6B4988A-242B-4E0D-9820-70BE3C15B5EC@microsoft.com...
 > If you are running .NET framework v1.0 on this box, there is a known issue
 > dealing with how the Microsoft C++ compiler handle the AppDomainUnload
 > event.
 > When the AppDomain is reloaded, the unmanaged code still holds on to a
 > reference to the previous AppDomain, and when calls are made into the
 > unmanaged code, it fails since the AppDomain it is referencing is out of
 > date.

The problem has been fixed. We were running the Brightmail spam filter
software on this server. It was upgraded this weekend from version 6.0.0 to
6.0.1 and that has resolved the problem. Brightmail is now a Symantec
product whereas the previous version wasn't. Oddly there's nothing in the
changelog regarding this issue.<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: C++ Runtime Error on Server Console with W2K 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
FrontPage Runtime Component Error - Hi I'm currently getting an error message saying I need FrontPage Server Extension in order to have the form function properly. This is on an ASP page(s) that worked perfectly up to yesterday. Normally when I get this error message I recalculate the....

microsoft visual c++ runtime error - when i try and open my kodak picture programe i get an error message, saying i have a microsoft visual c++ runtime libiary message. if any body can help that will be great. many thanks tony

newbie!! runtime error - object expected - I have created a simple intranet page in dreamwever and it contains pop up menus (using Java scripts ?) when running the page (ie6, iis5) on the web server all is OK, but on any machine on the w2k network I get the error. runtime error: line xxx 'menu'....

SMTP virtual server has disappeared in IIS console - Hi, I have 2 Windows 2000 Servers [SP3] and all subsequent MS Windows updates applies (except for SP4). When I go into the management console for IIS, I used to see the Virtual Server. I know I did because I modified it a long time ago. More recently...

asp vs. asp.net, how different they are on runtime environ.. - Help please! I am having trouble to use serverxmlhttp & winhttp from ASP.net, although in the same web application my asp code works fine. I just can't figure out why. asp(using jscript): var httpRequest = Server.CreateObject("MSXML2.ServerX...
   Web Hosting and Web Master Forums (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]