Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

FIX: XML File Shows Cached Data When You Use ADO Recordset to Open the File over HTTP


View products that this article applies to.

This article was previously published under Q293856

↑ Back to the top


Symptoms

When you use the Open method of the ActiveX Data Objects (ADO) Recordset object to open an XML file over HTTP, if you make changes within the XML file, the data that appears does not contain the new modifications. In other words, the browser only displays the data that is cached from the first time you opened the XML file.

The same behavior occurs if you delete the XML file completely and run the same code. In this case, you do not receive an error message, and the browser displays the same data from the first time the XML file was opened.

↑ Back to the top


Cause

The OpenURLBlockingStream method opens HTTP files. By default, this method always uses cached data if it is available. There is no way to customize this method.

↑ Back to the top


Resolution

To work around this problem, use a straight file path, for example:
rs.Open "c:\testdata.xml"
				

↑ Back to the top


Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.

This bug was corrected in Microsoft XML (MSXML) 3.0 and Microsoft Data Access Components (MDAC) versions 2.5 or later.

↑ Back to the top


More information

Steps to Reproduce Behavior

  1. Create a new Active Server Pages (ASP) page named ADOTest.asp, and paste the following code:
    <%@Language=VBScript %>
    
    <!--#include file="ADOVBS.inc"-->
    <%
       Response.ExpiresAbsolute = 0
       set rs = Server.CreateObject("ADODB.Recordset")
        
       rs.CursorLocation = adUseServer
       rs.CursorType = adOpenDynamic
    
       rs.Open "http://<Your Server>/Testdata.xml"
       Response.Write rs(0) & "<br>"
       Response.Write rs("lname")
       Response.Write rs("mname")
       rs.Close
       set rs = nothing
    %>
    					
  2. Save ADOTest.asp in the <Drive>:\Inetpub\Wwwroot folder.
  3. Create a new XML page named Testdata.xml, paste the following code:
    <xml xmlns:s='uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882'
      xmlns:dt='uuid:C2F41010-65B3-11d1-A29F-00AA00C14882'
      xmlns:rs='urn:schemas-microsoft-com:rowset'
      xmlns:z='#RowsetSchema'>
        <s:Schema id='RowsetSchema'>
      <s:ElementType name='row' content='eltOnly' rs:updatable='true'>
    	<s:attribute type='fName'/>
    	<s:attribute type='lName'/>
    	<s:attribute type='mname'/>
    	<s:extends type='rs:rowbase'/>
      </s:ElementType>
      <s:AttributeType name='fName' rs:number='1' rs:nullable='true' rs:write='true'>
    	<s:datatype dt:type='string' dt:maxLength='255' rs:precision='0'
             rs:fixedlength='true' rs:maybenull='false'/>
      </s:AttributeType>
      <s:AttributeType name='lName' rs:number='2' rs:nullable='true' rs:write='true'>
    	<s:datatype dt:type='string' dt:maxLength='255' rs:precision='0' 
             rs:fixedlength='true' rs:maybenull='false'/>
      </s:AttributeType>
      <s:AttributeType name='mname' rs:number='3' rs:nullable='true' rs:write='true'>
    	<s:datatype dt:type='string' dt:maxLength='255' rs:precision='0' 
             rs:fixedlength='true' rs:maybenull='false'/>
      </s:AttributeType>
        </s:Schema>
    <rs:data>
     <rs:insert>
    	<z:row fName='Zach' lName='Jason' mname='R'/>
     </rs:insert>
    </rs:data>
    </xml>
    					
  4. Save Testdata.xml in the <Drive>:\Inetpub\Wwwroot folder.
  5. In your browser, open the ASP page.
  6. Delete the XML file completely from the <Drive>:\Inetpub\Wwwroot folder, and open the ASP page again. Notice that the previously displayed data still appears, even though you deleted the XML file.

↑ Back to the top


Keywords: kbdatabase, kbfix, kbmdac250fix, kbmdac260fix, kbmsxml300fix, kbmsxmlnosweep, kbbug, KB293856

↑ Back to the top

Article Info
Article ID : 293856
Revision : 3
Created on : 5/8/2003
Published on : 5/8/2003
Exists online : False
Views : 288