Go Back   Velocity Reviews > Newsgroups > ASP Net
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

ASP Net - .NET Runtime 2.0 Error - ID Event 5000

 
Thread Tools Search this Thread
Old 11-30-2007, 03:39 PM   #1
Default .NET Runtime 2.0 Error - ID Event 5000


Hi !

I have a big problem with a asp.net 2.0 website. I've just upgrade it from
asp.net 1.1. In this previous version, no problem at all.

Now, i've a recursive error .NET Runtime 2.0 Error - ID Event 5000.

Here ise the description in the Application log :

EventType clr20r3, P1 w3wp.exe, P2 6.0.3790.3959, P3 45d6968e, P4 system, P5
2.0.0.0, P6 461ef191, P7 2c19, P8 36, P9 system.objectdisposedexception, P10
NIL.

Pour plus d'informations, consultez le centre Aide et support à l'adresse
http://go.microsoft.com/fwlink/events.asp.

I've placed a httpmodule in the website to receive more information about
the error, as described in the Microsoft KB :
http://support.microsoft.com/kb/911816/en-us

Here the description of the error given by this module :

Type de l'événement : Erreur
Source de l'événement : ASP.NET 2.0.50727.0
Catégorie de l'événement : Aucun
ID de l'événement : 0
Date : 30/11/2007
Heure : 15:55:08
Utilisateur : N/A
Ordinateur : T04
Description :
La description pour l'ID d'événement ( 0 ) dans la source (ASP.NET
2.0.50727.0) est introuvable. L'ordinateur local n'a peut-être pas les
informations de Registre ou les librairies requises pour afficher les
messages émanant d'un ordinateur distant. Vous pourrez peut-être utiliser
l'option /AUXSOURCE= pour récupérer cette description. Reportez-vous aux
rubriques Aide et support pour plus de détails. Les informations suivantes
font partie de l'événement :

UnhandledException logged by UnhandledExceptionModule.dll:

appId=/LM/W3SVC/2112757039/Root

type=System.ObjectDisposedException

message=Le handle sécurisé a été fermé

stack=
à System.Net.UnsafeNclNativeMethods.OSSOCK.shutdown( SafeCloseSocket
socketHandle, Int32 how)
à System.Net.Sockets.Socket.Shutdown(SocketShutdown how)
à ?.Finalize()

Does anyone know what to do to find where is the problem ? I can't find the
page or piece of code responsible for this error.

Thanks in advance for any help !

--
Bernard





Bernard Borsu
  Reply With Quote
Old 11-30-2007, 05:29 PM   #2
bruce barker (sqlwork.com)
 
Posts: n/a
Default RE: .NET Runtime 2.0 Error - ID Event 5000
deploy a debug version to get a stack trace

-- bruce (sqlwork.com)


"Bernard Borsu" wrote:

> Hi !
>
> I have a big problem with a asp.net 2.0 website. I've just upgrade it from
> asp.net 1.1. In this previous version, no problem at all.
>
> Now, i've a recursive error .NET Runtime 2.0 Error - ID Event 5000.
>
> Here ise the description in the Application log :
>
> EventType clr20r3, P1 w3wp.exe, P2 6.0.3790.3959, P3 45d6968e, P4 system, P5
> 2.0.0.0, P6 461ef191, P7 2c19, P8 36, P9 system.objectdisposedexception, P10
> NIL.
>
> Pour plus d'informations, consultez le centre Aide et support Ã* l'adresse
> http://go.microsoft.com/fwlink/events.asp.
>
> I've placed a httpmodule in the website to receive more information about
> the error, as described in the Microsoft KB :
> http://support.microsoft.com/kb/911816/en-us
>
> Here the description of the error given by this module :
>
> Type de l'événement : Erreur
> Source de l'événement : ASP.NET 2.0.50727.0
> Catégorie de l'événement : Aucun
> ID de l'événement : 0
> Date : 30/11/2007
> Heure : 15:55:08
> Utilisateur : N/A
> Ordinateur : T04
> Description :
> La description pour l'ID d'événement ( 0 ) dans la source (ASP.NET
> 2.0.50727.0) est introuvable. L'ordinateur local n'a peut-être pas les
> informations de Registre ou les librairies requises pour afficher les
> messages émanant d'un ordinateur distant. Vous pourrez peut-être utiliser
> l'option /AUXSOURCE= pour récupérer cette description. Reportez-vous aux
> rubriques Aide et support pour plus de détails. Les informations suivantes
> font partie de l'événement :
>
> UnhandledException logged by UnhandledExceptionModule.dll:
>
> appId=/LM/W3SVC/2112757039/Root
>
> type=System.ObjectDisposedException
>
> message=Le handle sécurisé a été fermé
>
> stack=
> Ã* System.Net.UnsafeNclNativeMethods.OSSOCK.shutdown( SafeCloseSocket
> socketHandle, Int32 how)
> Ã* System.Net.Sockets.Socket.Shutdown(SocketShutdown how)
> Ã* ?.Finalize()
>
> Does anyone know what to do to find where is the problem ? I can't find the
> page or piece of code responsible for this error.
>
> Thanks in advance for any help !
>
> --
> Bernard
>
>
>
>



bruce barker (sqlwork.com)
  Reply With Quote
Old 11-30-2007, 05:34 PM   #3
Peter Bromberg [C# MVP]
 
Posts: n/a
Default RE: .NET Runtime 2.0 Error - ID Event 5000
In .NET 2.0, an unhandled exception cause the AppDomain to unload and the app
to recycle in IIS. You need to find out what the unhandled exception is.
This may provide some help:
http://www.eggheadcafe.com/articles/20060305.asp
--Peter
"Inside every large program, there is a small program trying to get out."
http://www.eggheadcafe.com
http://petesbloggerama.blogspot.com
http://www.blogmetafinder.com



"Bernard Borsu" wrote:

> Hi !
>
> I have a big problem with a asp.net 2.0 website. I've just upgrade it from
> asp.net 1.1. In this previous version, no problem at all.
>
> Now, i've a recursive error .NET Runtime 2.0 Error - ID Event 5000.
>
> Here ise the description in the Application log :
>
> EventType clr20r3, P1 w3wp.exe, P2 6.0.3790.3959, P3 45d6968e, P4 system, P5
> 2.0.0.0, P6 461ef191, P7 2c19, P8 36, P9 system.objectdisposedexception, P10
> NIL.
>
> Pour plus d'informations, consultez le centre Aide et support Ã* l'adresse
> http://go.microsoft.com/fwlink/events.asp.
>
> I've placed a httpmodule in the website to receive more information about
> the error, as described in the Microsoft KB :
> http://support.microsoft.com/kb/911816/en-us
>
> Here the description of the error given by this module :
>
> Type de l'événement : Erreur
> Source de l'événement : ASP.NET 2.0.50727.0
> Catégorie de l'événement : Aucun
> ID de l'événement : 0
> Date : 30/11/2007
> Heure : 15:55:08
> Utilisateur : N/A
> Ordinateur : T04
> Description :
> La description pour l'ID d'événement ( 0 ) dans la source (ASP.NET
> 2.0.50727.0) est introuvable. L'ordinateur local n'a peut-être pas les
> informations de Registre ou les librairies requises pour afficher les
> messages émanant d'un ordinateur distant. Vous pourrez peut-être utiliser
> l'option /AUXSOURCE= pour récupérer cette description. Reportez-vous aux
> rubriques Aide et support pour plus de détails. Les informations suivantes
> font partie de l'événement :
>
> UnhandledException logged by UnhandledExceptionModule.dll:
>
> appId=/LM/W3SVC/2112757039/Root
>
> type=System.ObjectDisposedException
>
> message=Le handle sécurisé a été fermé
>
> stack=
> Ã* System.Net.UnsafeNclNativeMethods.OSSOCK.shutdown( SafeCloseSocket
> socketHandle, Int32 how)
> Ã* System.Net.Sockets.Socket.Shutdown(SocketShutdown how)
> Ã* ?.Finalize()
>
> Does anyone know what to do to find where is the problem ? I can't find the
> page or piece of code responsible for this error.
>
> Thanks in advance for any help !
>
> --
> Bernard
>
>
>
>



Peter Bromberg [C# MVP]
  Reply With Quote
Old 11-30-2007, 11:20 PM   #4
Bernard Borsu
 
Posts: n/a
Default Re: .NET Runtime 2.0 Error - ID Event 5000
Hi !

Thanks for this response.

I've already tried this piece of code to create the httpmodule. I've just
wrote it in vb but the only result i've received is this :

UnhandledException logged by UnhandledExceptionModule.dll:

appId=/LM/W3SVC/2112757039/Root

type=System.ObjectDisposedException

message=Le handle sécurisé a été fermé

stack=
à System.Net.UnsafeNclNativeMethods.OSSOCK.shutdown( SafeCloseSocket
socketHandle, Int32 how)
à System.Net.Sockets.Socket.Shutdown(SocketShutdown how)
à ?.Finalize()

And there no reference to my website source !



"Peter Bromberg [C# MVP]" <> a écrit dans le
message de news: 4A22601E-41AD-4F88-B542-...
> In .NET 2.0, an unhandled exception cause the AppDomain to unload and the
> app
> to recycle in IIS. You need to find out what the unhandled exception is.
> This may provide some help:
> http://www.eggheadcafe.com/articles/20060305.asp
> --Peter
> "Inside every large program, there is a small program trying to get out."
> http://www.eggheadcafe.com
> http://petesbloggerama.blogspot.com
> http://www.blogmetafinder.com
>
>
>
> "Bernard Borsu" wrote:
>
>> Hi !
>>
>> I have a big problem with a asp.net 2.0 website. I've just upgrade it
>> from
>> asp.net 1.1. In this previous version, no problem at all.
>>
>> Now, i've a recursive error .NET Runtime 2.0 Error - ID Event 5000.
>>
>> Here ise the description in the Application log :
>>
>> EventType clr20r3, P1 w3wp.exe, P2 6.0.3790.3959, P3 45d6968e, P4 system,
>> P5
>> 2.0.0.0, P6 461ef191, P7 2c19, P8 36, P9 system.objectdisposedexception,
>> P10
>> NIL.
>>
>> Pour plus d'informations, consultez le centre Aide et support à l'adresse
>> http://go.microsoft.com/fwlink/events.asp.
>>
>> I've placed a httpmodule in the website to receive more information about
>> the error, as described in the Microsoft KB :
>> http://support.microsoft.com/kb/911816/en-us
>>
>> Here the description of the error given by this module :
>>
>> Type de l'événement : Erreur
>> Source de l'événement : ASP.NET 2.0.50727.0
>> Catégorie de l'événement : Aucun
>> ID de l'événement : 0
>> Date : 30/11/2007
>> Heure : 15:55:08
>> Utilisateur : N/A
>> Ordinateur : T04
>> Description :
>> La description pour l'ID d'événement ( 0 ) dans la source (ASP.NET
>> 2.0.50727.0) est introuvable. L'ordinateur local n'a peut-être pas les
>> informations de Registre ou les librairies requises pour afficher les
>> messages émanant d'un ordinateur distant. Vous pourrez peut-être utiliser
>> l'option /AUXSOURCE= pour récupérer cette description. Reportez-vous aux
>> rubriques Aide et support pour plus de détails. Les informations
>> suivantes
>> font partie de l'événement :
>>
>> UnhandledException logged by UnhandledExceptionModule.dll:
>>
>> appId=/LM/W3SVC/2112757039/Root
>>
>> type=System.ObjectDisposedException
>>
>> message=Le handle sécurisé a été fermé
>>
>> stack=
>> à System.Net.UnsafeNclNativeMethods.OSSOCK.shutdown( SafeCloseSocket
>> socketHandle, Int32 how)
>> à System.Net.Sockets.Socket.Shutdown(SocketShutdown how)
>> à ?.Finalize()
>>
>> Does anyone know what to do to find where is the problem ? I can't find
>> the
>> page or piece of code responsible for this error.
>>
>> Thanks in advance for any help !
>>
>> --
>> Bernard
>>
>>
>>
>>





Bernard Borsu
  Reply With Quote
Old 12-03-2007, 04:56 PM   #5
Bernard Borsu
 
Posts: n/a
Default Re: .NET Runtime 2.0 Error - ID Event 5000
Hi !

Thanks for yout suggestion, but even with a debug version, i've no more
information available on the stack trace.

Allways the same message an my website break down more than 20 times per
day.

Any other idea would be great !

"bruce barker (sqlwork.com)"
< > a écrit dans le message de
news: 90E8866E-227D-4665-802B-...
> deploy a debug version to get a stack trace
>
> -- bruce (sqlwork.com)
>
>
> "Bernard Borsu" wrote:
>
>> Hi !
>>
>> I have a big problem with a asp.net 2.0 website. I've just upgrade it
>> from
>> asp.net 1.1. In this previous version, no problem at all.
>>
>> Now, i've a recursive error .NET Runtime 2.0 Error - ID Event 5000.
>>
>> Here ise the description in the Application log :
>>
>> EventType clr20r3, P1 w3wp.exe, P2 6.0.3790.3959, P3 45d6968e, P4 system,
>> P5
>> 2.0.0.0, P6 461ef191, P7 2c19, P8 36, P9 system.objectdisposedexception,
>> P10
>> NIL.
>>
>> Pour plus d'informations, consultez le centre Aide et support à l'adresse
>> http://go.microsoft.com/fwlink/events.asp.
>>
>> I've placed a httpmodule in the website to receive more information about
>> the error, as described in the Microsoft KB :
>> http://support.microsoft.com/kb/911816/en-us
>>
>> Here the description of the error given by this module :
>>
>> Type de l'événement : Erreur
>> Source de l'événement : ASP.NET 2.0.50727.0
>> Catégorie de l'événement : Aucun
>> ID de l'événement : 0
>> Date : 30/11/2007
>> Heure : 15:55:08
>> Utilisateur : N/A
>> Ordinateur : T04
>> Description :
>> La description pour l'ID d'événement ( 0 ) dans la source (ASP.NET
>> 2.0.50727.0) est introuvable. L'ordinateur local n'a peut-être pas les
>> informations de Registre ou les librairies requises pour afficher les
>> messages émanant d'un ordinateur distant. Vous pourrez peut-être utiliser
>> l'option /AUXSOURCE= pour récupérer cette description. Reportez-vous aux
>> rubriques Aide et support pour plus de détails. Les informations
>> suivantes
>> font partie de l'événement :
>>
>> UnhandledException logged by UnhandledExceptionModule.dll:
>>
>> appId=/LM/W3SVC/2112757039/Root
>>
>> type=System.ObjectDisposedException
>>
>> message=Le handle sécurisé a été fermé
>>
>> stack=
>> à System.Net.UnsafeNclNativeMethods.OSSOCK.shutdown( SafeCloseSocket
>> socketHandle, Int32 how)
>> à System.Net.Sockets.Socket.Shutdown(SocketShutdown how)
>> à ?.Finalize()
>>
>> Does anyone know what to do to find where is the problem ? I can't find
>> the
>> page or piece of code responsible for this error.
>>
>> Thanks in advance for any help !
>>
>> --
>> Bernard
>>
>>
>>
>>





Bernard Borsu
  Reply With Quote
Old 08-04-2009, 06:29 AM   #6
JATENDER
Junior Member
 
Join Date: Aug 2009
Posts: 1
Default every time windows application run it crashes. system.net.sockets.socket error
When i click on application shortcut icon in All programs, Error message displayed "XYZ has encounterd a problem and needs to

close. We are sorry for the inconvenience."

Error Signature is below.

Error Signature
EventType: clr20r3 p1: XYZ.exe P2: 1.0.0.0 P3: 4a5c12c0 P4: system P5: 5.0.0.0 P6: 4333ae07 P7: 2b7b P8: 5d P9:

system.net.sockets.socket


In Event Viewer very first error logged is "Source SidebySide, Category None, Event ID 32 etc. 'Dependent Assembly

Microsoft.VC80.CRT could not be found and the last error was the referenced assembly is not installed on your system' "



In Event Viewer the detailed error log is

Event Type: Error
Event Source: .NET Runtime 2.0 Error Reporting
Event Category: None
Event ID: 5000
Date: 7/29/2009
Time: 11:44:53 PM
User: N/A
Computer: HIWEL
Description:
The description for Event ID ( 5000 ) in Source ( .NET Runtime 2.0 Error Reporting ) cannot be found. The local computer may

not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able

to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part

of the event: clr20r3, rmsdatacopier.exe, 1.0.0.0, 4a5c12c0, system, 2.0.0.0, 4333ae87, 2b7b, 5d, system.net.sockets.socket,

NIL.
Data:
0000: 63 00 6c 00 72 00 32 00 c.l.r.2.
0008: 30 00 72 00 33 00 2c 00 0.r.3.,.
0010: 20 00 72 00 6d 00 73 00 .r.m.s.
0018: 64 00 61 00 74 00 61 00 d.a.t.a.
0020: 63 00 6f 00 70 00 69 00 c.o.p.i.
0028: 65 00 72 00 2e 00 65 00 e.r...e.
0030: 78 00 65 00 2c 00 20 00 x.e.,. .
0038: 31 00 2e 00 30 00 2e 00 1...0...
0040: 30 00 2e 00 30 00 2c 00 0...0.,.
0048: 20 00 34 00 61 00 35 00 .4.a.5.
0050: 63 00 31 00 32 00 63 00 c.1.2.c.
0058: 30 00 2c 00 20 00 73 00 0.,. .s.
0060: 79 00 73 00 74 00 65 00 y.s.t.e.
0068: 6d 00 2c 00 20 00 32 00 m.,. .2.
0070: 2e 00 30 00 2e 00 30 00 ..0...0.
0078: 2e 00 30 00 2c 00 20 00 ..0.,. .
0080: 34 00 33 00 33 00 33 00 4.3.3.3.
0088: 61 00 65 00 38 00 37 00 a.e.8.7.
0090: 2c 00 20 00 32 00 62 00 ,. .2.b.
0098: 37 00 62 00 2c 00 20 00 7.b.,. .
00a0: 35 00 64 00 2c 00 20 00 5.d.,. .
00a8: 73 00 79 00 73 00 74 00 s.y.s.t.
00b0: 65 00 6d 00 2e 00 6e 00 e.m...n.
00b8: 65 00 74 00 2e 00 73 00 e.t...s.
00c0: 6f 00 63 00 6b 00 65 00 o.c.k.e.
00c8: 74 00 73 00 2e 00 73 00 t.s...s.
00d0: 6f 00 63 00 6b 00 65 00 o.c.k.e.
00d8: 74 00 20 00 4e 00 49 00 t. .N.I.
00e0: 4c 00 0d 00 0a 00 L.....

etc.

I am not being able to resolve this error. I dont have any clue why this error occured and dont know how to resolve it.
Please give it a kind look and help me get out of this error.
I am using Setup project to Deploy the application.

thanks & regards


JATENDER
JATENDER is offline   Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
Load .aspx page on another frame from TreeView Event Sangeeth Software 0 06-25-2009 09:20 AM
master page does not change due to preinit event not firing franchise63 General Help Related Topics 0 02-13-2008 09:18 AM
RIP HD-DVD? - HD-DVD CES Event Canceled Air Raid DVD Video 0 01-05-2008 03:06 AM
How do find out if a button was clicked before the textchanged event of textbox fires Jack General Help Related Topics 0 10-27-2006 10:19 AM
SUPER BOWL GALA EVENT, tickets available TheLeiterSideYGB DVD Video 1 01-06-2004 11:55 PM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46