1

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

Marek Grzenkowicz
  • 17,024
  • 9
  • 81
  • 111
Calvin Fan
  • 13
  • 4

1 Answers1

1

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

Rory McCrossan
  • 331,213
  • 40
  • 305
  • 339
  • i installed Chilkat XML already.......and tested on two machines, one is vista, other is server 2003, and run the same code, but only work fine on vista that one.... – Calvin Fan Dec 05 '11 at 02:14