What am I doing wrong with this CreateObject?

  • Thread starter Thread starter Kenji
  • Start date Start date
K

Kenji

I have this code

Dim request
Set request = CreateObject("MSXML.XMLHTTPRequest")

, but at the second line, I get an error
"Run-time error '429':
ActiveX component can't create object"

What am I doing wrong?

Kenji
 
Nevermind,

I had to use

Set request = CreateObject("Microsoft.XMLHTTP")

Thanks and sorry for posting everyday.

Kenji
 
Kenji,

Out of interest, what is that object for, what does it deliver? Is it part
of SOAP?

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
I'm not familiar with SOAP, but I just wanted to use it for DAV protocols.
By using Microsoft.XMLHTTP, i can send a "PUT", "GET", "UNLOCK", "LOCK,
"DELETE" protocols. I hope I made some sense.

Kenji
 
Thanks Kenji,

Not a lot of sense (yet!), but you have given me something to look up.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Back
Top