Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Update > ErrorCode 0x800c0007 on XML.Load, "No data is available for the requested resource."

Reply
Thread Tools Display Modes

ErrorCode 0x800c0007 on XML.Load, "No data is available for the requested resource."

 
 
BillJohnson4@gmail.com
Guest
Posts: n/a

 
      04-17-2006
XML Experts:

We have the following JavaScript that has been working well for two
years. On Thursday, April 13, it started to fail. Someone said that
Microsoft downloaded some automatic security updates around that time.
We have .NET Framework 2.0 installed on our IIS Server, if that is a
clue.

---------------------- C U T H E R E ----------------------

var oXML = new ActiveXObject("MSXML2.DOMDocument.3.0");
oXML.async = false;
if (oXML.load(url))
{
// (good ...)
}
else
{
alert(oXML.parseError.errorCode + '\n\n' + oXML.parseError.reason);
}

---------------------- C U T H E R E ----------------------

oXML.parseError.errorCode = 0x800c0007, and
oXML.parseError.reason = "No data is available for the requested
resource."

We generate our XML automatically and I put our output through an XML
validator and our XML appears to be fine.

Is there something that we need to do on our server or (IE 6.0) browser
in order to make this work again?

 
Reply With Quote
 
 
 
 
Alex Krawarik[MSFT]
Guest
Posts: n/a

 
      04-17-2006
You are using MSXML3, which has nothing to do with .NET Framework 2.0. The
problem may be on your client or server, its hard to say for sure...the
error you are seeing is coming from URLMON, Internet Explorer's networking
component but it kind of depends on what resource you are actually trying to
load in oXML.load(url)

If your break was indeed caused by a patch, you might try looking into
MS06-13 a bit, which was released April 11. I didnt see anything in there
that would specifically affect you from the information you've given thus
far, but here's the link

http://support.microsoft.com/kb/912812





<> wrote in message
news: oups.com...
> XML Experts:
>
> We have the following JavaScript that has been working well for two
> years. On Thursday, April 13, it started to fail. Someone said that
> Microsoft downloaded some automatic security updates around that time.
> We have .NET Framework 2.0 installed on our IIS Server, if that is a
> clue.
>
> ---------------------- C U T H E R E ----------------------
>
> var oXML = new ActiveXObject("MSXML2.DOMDocument.3.0");
> oXML.async = false;
> if (oXML.load(url))
> {
> // (good ...)
> }
> else
> {
> alert(oXML.parseError.errorCode + '\n\n' + oXML.parseError.reason);
> }
>
> ---------------------- C U T H E R E ----------------------
>
> oXML.parseError.errorCode = 0x800c0007, and
> oXML.parseError.reason = "No data is available for the requested
> resource."
>
> We generate our XML automatically and I put our output through an XML
> validator and our XML appears to be fine.
>
> Is there something that we need to do on our server or (IE 6.0) browser
> in order to make this work again?
>



 
Reply With Quote
Reply

Thread Tools
Display Modes

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
What to do to access "Local Settings" and "Application Data"? Michael Moser Windows Vista Administration 1 12-02-2007 07:31 PM
What I want "Real WMV", 148.50 mhz sample-rate, 1920 X 1080 progressive scan image, lowest-possible "object data" bit-rate? Radium Windows Media Player 11 11-13-2006 06:26 PM
"Real WMV", 148.50 mhz sample-rate, 1920 X 1080 progressive scan image, "object data" bit-rate of 1 byte-per-second Radium Windows Media Player 50 11-09-2006 06:41 PM
"Real WMV", 148.50 mhz sample-rate, 1920 X 1080 progressive scan image, "object data" bit-rate of 1bps -- Why Can't It Exist?? Radium Windows Media Player 8 10-30-2006 10:09 PM
"windows update has encountered an error and cannot display the requested page" Gomez Windows Update 2 08-28-2003 12:01 PM



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 58 59