变量使用 JScript 不支持的自动化类型

发布于 2024-11-18 08:48:59 字数 472 浏览 3 评论 0原文

我有一个简单的 asp 页面:

<%@ LANGUAGE = JScript %>

<%
    var app = new ActiveXObject("MyComponent");

    var out1 = { };
    var out2 = { };

   app.GetVersion(out1, out2);
%>

“MyComponent”是一个具有以下定义的 DCOM 对象:

interface IMyComponent : IDispatch
{ 
    HRESULT GetVersion([out, string] char**, [out] int*);
}

在执行 GetVresion 函数时,出现错误“Microsoft JScript 运行时错误:变量使用 JScript 中不支持的自动化类型”。 我该如何修复它?

I have a simple asp page:

<%@ LANGUAGE = JScript %>

<%
    var app = new ActiveXObject("MyComponent");

    var out1 = { };
    var out2 = { };

   app.GetVersion(out1, out2);
%>

'MyComponent' is a DCOM object with the following definition:

interface IMyComponent : IDispatch
{ 
    HRESULT GetVersion([out, string] char**, [out] int*);
}

While executing GetVresion function I get error "Microsoft JScript runtime error: Variable uses an Automation type not supported in JScript".
How I can fix it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文