使用 vbs 创建 Chilkat XML 对象时出现 800A01AD 错误
我的 VB 脚本在使用 Windows Server 2003 时出现错误:
代码“800A01AD”
消息“ActiveX 组件无法创建对象:'Chilkat.Rss'”
以下行会导致错误:
Set rss = CreateObject("Chilkat.Rss")
但在使用 Windows Vista 时工作正常。
在windows server 2003中如何解决这个问题?
简单代码: http://www.example-code.com/vbscript/rss_read_feed.asp< /a>
Chilkat XML:http://www.chilkatsoft.com/XML-ActiveX.asp
My VB script got an error when using Windows Server 2003:
Code "800A01AD"
Message "ActiveX component can't create object: 'Chilkat.Rss'"
The following line causes the error:
Set rss = CreateObject("Chilkat.Rss")
but it works fine when using Windows Vista.
How can I solve this problem in windows server 2003?
Simple Code: http://www.example-code.com/vbscript/rss_read_feed.asp
Chilkat XML: http://www.chilkatsoft.com/XML-ActiveX.asp
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ActiveX 组件无法创建对象:'X'
错误意味着您尝试运行代码的计算机上尚未安装该库。您需要在 Windows Server 2003 计算机上安装包含 Chillkat.Rss 程序集的 dll(或 msi/exe,如果有的话)。
更多信息
The
ActiveX component can't create object: 'X'
error means that the library has not been installed on the machine you are attempting to run your code on.You will need to install the dll (or msi/exe if it has one) which contains the Chillkat.Rss assembly on your windows server 2003 machine.
More information here