Gecko MultiThreading错误

时间:2013-04-06 14:30:46

标签: c# gecko

我正在尝试使用5个虚拟(隐藏)Gecko(Xulrunner)浏览器创建应用程序。但是当我尝试在Threading中创建一个浏览器时,它在GeckoPreferences中返回错误,我完全对它感到困惑!

此处代码示例:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using DevExpress.XtraEditors;
using Skybound.Gecko;
using System.Threading;
namespace Gekco_Test
{
public partial class Main : DevExpress.XtraEditors.XtraForm
{
    public Main()
    {
        InitializeComponent();
        CheckForIllegalCrossThreadCalls = false;
    }

    private void Main_Load(object sender, EventArgs e)
    {

    }

    private void simpleButton1_Click(object sender, EventArgs e)
    {
        Thread th = new Thread(webControllerFunc);
        th.SetApartmentState(ApartmentState.STA);
        th.Start();


    }
    void webControllerFunc()
    {
        geckoWebControl gControll = new geckoWebControl();
        gControll.webBrowserAccess("91.213.108.178", 80);
    }

}

class geckoWebControl
{
    bool readyState;
    GeckoWebBrowser wb = new GeckoWebBrowser();
    public string webBrowserAccess(string host,int port)
    {
        Skybound.Gecko.Xpcom.Initialize(Application.StartupPath + "\\xulrunner\\");
        readyState = false;
        Form form = new Form();
        GeckoPreferences.User["network.proxy.http"] = host;
        GeckoPreferences.User["network.proxy.http_port"] = port;
        GeckoPreferences.User["network.proxy.type"] = 1;
        wb.Navigate("about:blank");
        wb.DocumentCompleted += wb_DocumentCompleted;

        while (!readyState)
            Application.DoEvents();

        return wb.Document.TextContent;
    }

    void wb_DocumentCompleted(object sender, EventArgs e)
    {
        readyState = true;
    }

}

}

错误:

{“无法将'System .__ ComObject'类型的COM对象转换为接口类型'Skybound.Gecko.nsIServiceManager'。此操作失败,因为QueryInterface调用COM组件上的IID为'{8BB35ED9-E332-的接口' 462D-9155-4A002AB5C958}由于以下错误而失败:不支持此类接口(HRESULT异常:0x80004002(E_NOINTERFACE))。“}

谢谢!

1 个答案:

答案 0 :(得分:2)

Gecko不支持多线程。所以你可以使用它代码在线程中使用它。

this.BeginInvoke(new Action(() => {
//What you want gecko browser to do! Like:
geckoBrowser.navigate("http://somewhere.com");
 }));