Discussion:
XMLDOM PROBLEM ON WIN2003
(too old to reply)
2006-12-14 11:29:59 UTC
Permalink
It works perfect on my Win xp machine but when i upload the page into my
server which is win2003 it returns 0
What is the possible cause of it ?


Dim xml
Set xml = Server.CreateObject("MSXML.DOMDocument")
xml.async = False
xml.setProperty "ServerHTTPRequest", True
xml.load (http://www.xx.com/Xml/xx.xml)
Set itemList = xml.getElementsByTagName("FENERHABER")
Response.Write itemlist.Length
Anthony Jones
2006-12-14 12:11:42 UTC
Permalink
Post by
It works perfect on my Win xp machine but when i upload the page into my
server which is win2003 it returns 0
What is the possible cause of it ?
Dim xml
Set xml = Server.CreateObject("MSXML.DOMDocument")
xml.async = False
xml.setProperty "ServerHTTPRequest", True
xml.load (http://www.xx.com/Xml/xx.xml)
Set itemList = xml.getElementsByTagName("FENERHABER")
Response.Write itemlist.Length
Change to:-

Response.Write xml.parseError.reason

Have you tried accessing the resource directly in IE when logged on to an
interactive session on the Win2003 box?
2006-12-14 12:35:57 UTC
Permalink
Response.Write xml.parseError.reason
returned


Not enough storage is available to process this command.
2006-12-14 14:41:01 UTC
Permalink
and there is no problem with disk space or memory storage..
Joe Fawcett
2006-12-19 09:07:28 UTC
Permalink
So how big is the document and how much free RAM is there, you'll need about
4 times the actual document size?
--
Joe Fawcett (MVP - XML)

http://joe.fawcett.name
Post by
and there is no problem with disk space or memory storage..
Loading...