Link to home
Start Free TrialLog in
Avatar of ebusiness
ebusiness

asked on

how to fix the Server.CreateObject("MSXML2.DOMDocument.4.0") error ??

Hi Guys,
i am moving an ASP web site from one server to another and i am getting an error on the following line of code :  Set objXML = Server.CreateObject("MSXML2.DOMDocument.4.0")
    i am getting an error "Server object error"

the old system is windows 2003 x86  but the new system is 64 bit using windows 2003 x64
i installed xml parser 6 for x64  but i can't find the xml parser 2 !!! can i install the x86 version of it ???
ASKER CERTIFIED SOLUTION
Avatar of Ashish Patel
Ashish Patel
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jawahar_prasad
jawahar_prasad

try this..

Set objXML = Server.CreateObject("Microsoft.XMLDOM")
Avatar of ebusiness

ASKER

hey all i think that the upper solution didn't solve the case it just stoped the error from displaying on the browser but it didn't return any data on my site !!!! is there any other solution ???