Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > ASP General > XMLDOM PROBLEM ON WIN2003

Reply
Thread Tools

XMLDOM PROBLEM ON WIN2003

 
 
Guest
Posts: n/a
 
      12-14-2006
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


 
Reply With Quote
 
 
 
 
Anthony Jones
Guest
Posts: n/a
 
      12-14-2006

<in da club> wrote in message news:...
> 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?



 
Reply With Quote
 
 
 
 
Guest
Posts: n/a
 
      12-14-2006
Response.Write xml.parseError.reason
returned


Not enough storage is available to process this command.


 
Reply With Quote
 
Guest
Posts: n/a
 
      12-14-2006
and there is no problem with disk space or memory storage..


 
Reply With Quote
 
Joe Fawcett
Guest
Posts: n/a
 
      12-19-2006
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

<in da club> wrote in message news:...
> and there is no problem with disk space or memory storage..
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Promote Win2003 R2 in infraestructure Win2003 SP1 =?Utf-8?B?SWdvciBSb2RyaWd1ZXM=?= MCSE 3 06-20-2007 03:50 AM
perplexed by javascript xmlDOM problem Sevinfooter Javascript 1 07-10-2006 05:49 PM
XMLHttpRequest + XMLDOM Trip ASP .Net 2 10-11-2005 03:45 PM
XMLHttpRequest + XMLDOM Trip ASP .Net 0 10-08-2005 05:25 PM
Loading an in-memory XmlDocument directly into an XMLDOM object Robert Zurer ASP .Net 0 06-28-2005 03:05 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57