Silverlight 中未处理的异常:System.Exception
我在我的项目中使用 SMF 播放器进行在线视频流。 应用程序随机崩溃。 (有时应用程序运行 60 小时,有时 apln 在 2 小时内崩溃) 我已将未处理的异常处理程序添加到主类中。
public partial class App : Application
{
public App()
{
this.Startup += this.Application_Startup;
this.Exit += this.Application_Exit;
this.UnhandledException += this.Application_UnhandledException;
InitializeComponent();
}
但在异常期间,我只得到以下信息,没有堆栈跟踪信息。
调用 COM 组件时返回了 System.Exception 类型的 UnhandledException,错误 HRESULT E_FAIL。
请帮助解决这个问题。
I am using SMF player for online video streaming in my project.
Randomly application crashes. (Sometime Application runs for 60 hr, sometimes apln crashes in 2 hr)
I have added the unhandled exception handler to main class.
public partial class App : Application
{
public App()
{
this.Startup += this.Application_Startup;
this.Exit += this.Application_Exit;
this.UnhandledException += this.Application_UnhandledException;
InitializeComponent();
}
But during exception, I am only getting the following information, No stacktrace info.
UnhandledException of type System.Exception, Error HRESULT E_FAIL has been returned from a call to a COM component.
Please help to resolve this issue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在平滑流媒体元素(SL4、SSME 1.5 - >但我在 SL5 中也遇到了同样的随机错误)
如果我在应用程序错误处理上调用 stacktrace,则应用程序崩溃。
这是我的高效应用程序中的一些令人讨厌的错误。
我发现的最佳解决方法是在应用程序无响应时使用 JS 启动应用程序(在 SL 中运行一些计时器,更新 HTML 上的一些时间戳,重新加载,如果时间戳早于 10 秒左右)。
I am also having the same random errors with Smooth Streaming Media Element (SL4, SSME 1.5 - > but I got it also with SL5)
If I call stacktrace on application error handeling, then the app crashes.
Its some nasty error in my productive app.
Best workaround I found for that was to bring the app up with JS, when it comes non-responsive (run some timer in SL, update some timestamp on HTML, make a reaload, if timestamp is older than 10 seconds or so) ..