Silverlight 中未处理的异常:System.Exception

发布于 2025-01-07 15:22:16 字数 565 浏览 0 评论 0原文

我在我的项目中使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野鹿林 2025-01-14 15:22:16

我在平滑流媒体元素(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) ..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文