From: TonyCC on
I'm Running Windows Small Business Server R2 Premium & I keep seeing the
following error about once a week in Event Manager.

Event Type: Error
Event Source: .NET Runtime 2.0 Error Reporting
Event Category: None
Event ID: 5000
Date: 10/19/2007
Time: 2:37:02 AM
User: N/A
Computer: XXXXX
Description:
EventType clr20r3, P1 w3wp.exe, P2 6.0.3790.3959, P3 45d6968e, P4 mscorlib,
P5 2.0.0.0, P6 461eee3d, P7 407b, P8 a3, P9 system.argumentoutofrange, P10 NIL

From: Justin Rich on
the w3wp prcoess is an application pool and what its telling you is whatever
..net 2.0 app you have running from that pool is caused a
system.argumentoutofrange exception.

what this means is it has some array of objects (lets say, People) and the
program is trying to reference an object in that array (lets call it a
Person) and the object (Person) its trying to get isnt in the array, and it
tells you its not fount.

im trying not to give you code here.. but its hard to explain otherwise...
basically the code is referncing an ID that doesnt exist.

its a bug in the app and you should report it to either your dev team or to
the vendor of the app.

Justin

"TonyCC" <TonyCC(a)discussions.microsoft.com> wrote in message
news:6A4C157E-12A6-4347-ADF3-A143357D0E14(a)microsoft.com...
> I'm Running Windows Small Business Server R2 Premium & I keep seeing the
> following error about once a week in Event Manager.
>
> Event Type: Error
> Event Source: .NET Runtime 2.0 Error Reporting
> Event Category: None
> Event ID: 5000
> Date: 10/19/2007
> Time: 2:37:02 AM
> User: N/A
> Computer: XXXXX
> Description:
> EventType clr20r3, P1 w3wp.exe, P2 6.0.3790.3959, P3 45d6968e, P4
> mscorlib,
> P5 2.0.0.0, P6 461eee3d, P7 407b, P8 a3, P9 system.argumentoutofrange, P10
> NIL
>


From: TonyCC on
How do I determine what App is causing the problem?

"Justin Rich" wrote:

> the w3wp prcoess is an application pool and what its telling you is whatever
> ..net 2.0 app you have running from that pool is caused a
> system.argumentoutofrange exception.
>
> what this means is it has some array of objects (lets say, People) and the
> program is trying to reference an object in that array (lets call it a
> Person) and the object (Person) its trying to get isnt in the array, and it
> tells you its not fount.
>
> im trying not to give you code here.. but its hard to explain otherwise...
> basically the code is referncing an ID that doesnt exist.
>
> its a bug in the app and you should report it to either your dev team or to
> the vendor of the app.
>
> Justin
>
> "TonyCC" <TonyCC(a)discussions.microsoft.com> wrote in message
> news:6A4C157E-12A6-4347-ADF3-A143357D0E14(a)microsoft.com...
> > I'm Running Windows Small Business Server R2 Premium & I keep seeing the
> > following error about once a week in Event Manager.
> >
> > Event Type: Error
> > Event Source: .NET Runtime 2.0 Error Reporting
> > Event Category: None
> > Event ID: 5000
> > Date: 10/19/2007
> > Time: 2:37:02 AM
> > User: N/A
> > Computer: XXXXX
> > Description:
> > EventType clr20r3, P1 w3wp.exe, P2 6.0.3790.3959, P3 45d6968e, P4
> > mscorlib,
> > P5 2.0.0.0, P6 461eee3d, P7 407b, P8 a3, P9 system.argumentoutofrange, P10
> > NIL
> >
>
>
>
From: Justin Rich on
David Wang has a pretty good write up on this in his blog.
http://blogs.msdn.com/david.wang/archive/2005/08/29/HOWTO_Understand_and_Diagnose_an_AppPool_Crash.aspx


"TonyCC" <TonyCC(a)discussions.microsoft.com> wrote in message
news:3FD78EAA-8390-4023-8E66-A4066324249C(a)microsoft.com...
> How do I determine what App is causing the problem?
>
> "Justin Rich" wrote:
>
>> the w3wp prcoess is an application pool and what its telling you is
>> whatever
>> ..net 2.0 app you have running from that pool is caused a
>> system.argumentoutofrange exception.
>>
>> what this means is it has some array of objects (lets say, People) and
>> the
>> program is trying to reference an object in that array (lets call it a
>> Person) and the object (Person) its trying to get isnt in the array, and
>> it
>> tells you its not fount.
>>
>> im trying not to give you code here.. but its hard to explain
>> otherwise...
>> basically the code is referncing an ID that doesnt exist.
>>
>> its a bug in the app and you should report it to either your dev team or
>> to
>> the vendor of the app.
>>
>> Justin
>>
>> "TonyCC" <TonyCC(a)discussions.microsoft.com> wrote in message
>> news:6A4C157E-12A6-4347-ADF3-A143357D0E14(a)microsoft.com...
>> > I'm Running Windows Small Business Server R2 Premium & I keep seeing
>> > the
>> > following error about once a week in Event Manager.
>> >
>> > Event Type: Error
>> > Event Source: .NET Runtime 2.0 Error Reporting
>> > Event Category: None
>> > Event ID: 5000
>> > Date: 10/19/2007
>> > Time: 2:37:02 AM
>> > User: N/A
>> > Computer: XXXXX
>> > Description:
>> > EventType clr20r3, P1 w3wp.exe, P2 6.0.3790.3959, P3 45d6968e, P4
>> > mscorlib,
>> > P5 2.0.0.0, P6 461eee3d, P7 407b, P8 a3, P9 system.argumentoutofrange,
>> > P10
>> > NIL
>> >
>>
>>
>>