变量使用 JScript 不支持的自动化类型
我有一个简单的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论