HighTechTalks DotNet Forums  

System.ExecutionEngineException error wierdness

Dotnet Framework (CLR) microsoft.public.dotnet.framework.clr


Discuss System.ExecutionEngineException error wierdness in the Dotnet Framework (CLR) forum.



Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old   
AT
 
Posts: n/a

Default System.ExecutionEngineException error wierdness - 05-02-2005 , 11:37 AM






Hi All.

I am using the SecureBlackBox class for cryptography to create a new
X509 certificate.

SBX509.TElX509Certificate certUsr = new SBX509.TElX509Certificate();
certUser.LoadFromBuffer(certData);

This works fine in some areas of my code but all of a sudden, a certain
part of my code is throwing a System.ExecutionEngineException on that
line. I debugged it and went over my code line by line and this is the
exception info.

I have no idea what to do. Funny thing is that my try-catch doesn't
catch this.

Any suggestions????
Cheers.
Sushant Bhatia



- System.Exception {"Exception of type System.ExecutionEngineException
was thrown." } System.Exception
System.Object {System.ExecutionEngineException} System.Object
_className "System.ExecutionEngineException" string
_COMPlusExceptionCode -532459699 int
_exceptionMethod <undefined value> System.Reflection.MethodBase
_exceptionMethodString null string
_helpURL null string
_HResult -2146233082 int
_innerException { } System.Exception
_message null string
_remoteStackIndex 0 int
_remoteStackTraceString null string
_source null string
_stackTrace <undefined value> System.Object
_stackTraceString null string
_xcode -532459699 int
_xptrs 0 int
HelpLink null string
HResult -2146233082 int
InnerException { } System.Exception
Message "Exception of type System.ExecutionEngineException was
thrown." string
Source null string
StackTrace null string
TargetSite <undefined value> System.Reflection.MethodBase


Reply With Quote
  #2  
Old   
Alvin Bruney [MVP - ASP.NET]
 
Posts: n/a

Default Re: System.ExecutionEngineException error wierdness - 05-03-2005 , 06:32 PM






Post this in the CLR group, it's a bug in the CLR that needs to be looked at
by someone from microsoft working with the CLR

--
Regards,
Alvin Bruney - ASP.NET MVP

[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
Now available @ www.lulu.com/owc, Amazon.com etc
<sushant.bhatia (AT) gmail (DOT) com> wrote

Quote:
Hi All.

I am using the SecureBlackBox class for cryptography to create a new
X509 certificate.

SBX509.TElX509Certificate certUsr = new SBX509.TElX509Certificate();
certUser.LoadFromBuffer(certData);

This works fine in some areas of my code but all of a sudden, a certain
part of my code is throwing a System.ExecutionEngineException on that
line. I debugged it and went over my code line by line and this is the
exception info.

I have no idea what to do. Funny thing is that my try-catch doesn't
catch this.

Any suggestions????
Cheers.
Sushant Bhatia



- System.Exception {"Exception of type System.ExecutionEngineException
was thrown." } System.Exception
System.Object {System.ExecutionEngineException} System.Object
_className "System.ExecutionEngineException" string
_COMPlusExceptionCode -532459699 int
_exceptionMethod <undefined value> System.Reflection.MethodBase
_exceptionMethodString null string
_helpURL null string
_HResult -2146233082 int
_innerException { } System.Exception
_message null string
_remoteStackIndex 0 int
_remoteStackTraceString null string
_source null string
_stackTrace <undefined value> System.Object
_stackTraceString null string
_xcode -532459699 int
_xptrs 0 int
HelpLink null string
HResult -2146233082 int
InnerException { } System.Exception
Message "Exception of type System.ExecutionEngineException was
thrown." string
Source null string
StackTrace null string
TargetSite <undefined value> System.Reflection.MethodBase




Reply With Quote
  #3  
Old   
john conwell
 
Posts: n/a

Default Re: System.ExecutionEngineException error wierdness - 05-04-2005 , 03:26 PM



Isnt this the CLR group? I'm getting this same exception from within the
ConnectionPool.GetConnection method.

"Alvin Bruney [MVP - ASP.NET]" wrote:

Quote:
Post this in the CLR group, it's a bug in the CLR that needs to be looked at
by someone from microsoft working with the CLR

--
Regards,
Alvin Bruney - ASP.NET MVP

[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
Now available @ www.lulu.com/owc, Amazon.com etc
sushant.bhatia (AT) gmail (DOT) com> wrote in message
news:1115051823.270215.155050 (AT) z14g2000cwz (DOT) googlegroups.com...
Hi All.

I am using the SecureBlackBox class for cryptography to create a new
X509 certificate.

SBX509.TElX509Certificate certUsr = new SBX509.TElX509Certificate();
certUser.LoadFromBuffer(certData);

This works fine in some areas of my code but all of a sudden, a certain
part of my code is throwing a System.ExecutionEngineException on that
line. I debugged it and went over my code line by line and this is the
exception info.

I have no idea what to do. Funny thing is that my try-catch doesn't
catch this.

Any suggestions????
Cheers.
Sushant Bhatia



- System.Exception {"Exception of type System.ExecutionEngineException
was thrown." } System.Exception
System.Object {System.ExecutionEngineException} System.Object
_className "System.ExecutionEngineException" string
_COMPlusExceptionCode -532459699 int
_exceptionMethod <undefined value> System.Reflection.MethodBase
_exceptionMethodString null string
_helpURL null string
_HResult -2146233082 int
_innerException { } System.Exception
_message null string
_remoteStackIndex 0 int
_remoteStackTraceString null string
_source null string
_stackTrace <undefined value> System.Object
_stackTraceString null string
_xcode -532459699 int
_xptrs 0 int
HelpLink null string
HResult -2146233082 int
InnerException { } System.Exception
Message "Exception of type System.ExecutionEngineException was
thrown." string
Source null string
StackTrace null string
TargetSite <undefined value> System.Reflection.MethodBase





Reply With Quote
  #4  
Old   
Sushant Bhatia
 
Posts: n/a

Default Re: System.ExecutionEngineException error wierdness - 05-04-2005 , 07:15 PM



John, I posted this very same message in a number of threads so when
Alvin replied it showed up in many locations...even this one :-)

I solved my problem by not using the SecureBlackBox dll's. In your case
however, since its more closely tied to the clr, I think you need to
inform MS about it. I believe there is a place to submit bug reports to
MS but I'm not certain where I saw it. I'm sure a google search will
reveal more. Keep us informed if you figure out your problem.

BTW. Try using Refection.Net app to go through the
ConnectionPool.GetConnection method. I found the exact location of the
error in the SecureBlackBox dll by doing just just. It was internally
calling some Runtime code that was causing the issues.


Reply With Quote
Reply




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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



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