Firefox:Communicator存在问题

时间:2010-02-03 22:58:55

标签: office-communicator

我们在我们的应用程序中使用NameCtrl并在IE中正常工作。但同样在Firefox中不起作用。 firefox网站说它们不支持ActiveX控件。 http://support.mozilla.com/en-US/kb/ActiveX

有没有办法在Firefox中显示传播者的存在?

2 个答案:

答案 0 :(得分:1)

有点晚了,但这可能是使用IE以外的浏览器。

if(window.ActiveXObject) {
    nameCtrl = new ActiveXObject("Name.NameCtrl");
} else {
    try {
        nameCtrl = new ActiveXObject("Name.NameCtrl");
    } catch (e){
        nameCtrl = (function(b){
            var c = null;
            try {
                c = document.getElementById(b);
                if (!Boolean(c) && (Boolean(navigator.mimeTypes) && navigator.mimeTypes[b] && navigator.mimeTypes[b].enabledPlugin)) {
                    var a = document.createElement("object");
                    a.id = b;
                    a.type = b;
                    a.width = "0";
                    a.height = "0";
                    a.style.setProperty("visibility", "hidden", "");
                    document.body.appendChild(a);
                    c = document.getElementById(b)
                }
            } catch (d) {
                c = null
            }
            return c
        })("application/x-sharepoint-uc");
    }
}

if(nameCtrl && nameCtrl.PresenceEnabled){
// code here
}

答案 1 :(得分:0)

NameCrl是一个ActiveX组件,因此它只能在Internet Explorer中使用。

没有自定义开发就无法做到这一点。我建议使用UCMA APis,构建一个查询状态的服务,并构建一个JavaScript API来调用此服务。