<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic HTML / XML Parsing in Internet Products</title>
    <link>https://community.hpe.com/t5/internet-products/html-xml-parsing/m-p/3531871#M711</link>
    <description>I am not too sure (again) if this is the right place to place this question. Suggestion of proper category will be appreciated.&lt;BR /&gt;&lt;BR /&gt;1. Referring to w3schools' website(&lt;BR /&gt;&lt;A href="http://www.w3schools.com/dom/tryit.asp?filename=note_parsertest" target="_blank"&gt;http://www.w3schools.com/dom/tryit.asp?filename=note_parsertest&lt;/A&gt; ) This works in this page itself but if i test this exact code saved as .html file in my computer, it deosn't work. &lt;BR /&gt;&lt;BR /&gt;2. Below is a line of code which I have found being used to Parse XML codes. &lt;BR /&gt;&lt;BR /&gt;var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");&lt;BR /&gt;xmlDoc.load("xyz.xml");&lt;BR /&gt;&lt;BR /&gt;My aim is to load HTML file (not the currently being used one) and use it to change/add objects to the loaded html file using DOM properties (document.body.parentnode.childnode.value e.t.c.)The above code line does not work for HTMLs &lt;BR /&gt;So, the question is that, why does the exact code saved in my computer wouldn't work?&lt;BR /&gt;What should I do to load an html file instead of xml file?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;Anand</description>
    <pubDate>Tue, 26 Apr 2005 03:50:02 GMT</pubDate>
    <dc:creator>ANAND_35</dc:creator>
    <dc:date>2005-04-26T03:50:02Z</dc:date>
    <item>
      <title>HTML / XML Parsing</title>
      <link>https://community.hpe.com/t5/internet-products/html-xml-parsing/m-p/3531871#M711</link>
      <description>I am not too sure (again) if this is the right place to place this question. Suggestion of proper category will be appreciated.&lt;BR /&gt;&lt;BR /&gt;1. Referring to w3schools' website(&lt;BR /&gt;&lt;A href="http://www.w3schools.com/dom/tryit.asp?filename=note_parsertest" target="_blank"&gt;http://www.w3schools.com/dom/tryit.asp?filename=note_parsertest&lt;/A&gt; ) This works in this page itself but if i test this exact code saved as .html file in my computer, it deosn't work. &lt;BR /&gt;&lt;BR /&gt;2. Below is a line of code which I have found being used to Parse XML codes. &lt;BR /&gt;&lt;BR /&gt;var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");&lt;BR /&gt;xmlDoc.load("xyz.xml");&lt;BR /&gt;&lt;BR /&gt;My aim is to load HTML file (not the currently being used one) and use it to change/add objects to the loaded html file using DOM properties (document.body.parentnode.childnode.value e.t.c.)The above code line does not work for HTMLs &lt;BR /&gt;So, the question is that, why does the exact code saved in my computer wouldn't work?&lt;BR /&gt;What should I do to load an html file instead of xml file?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;Anand</description>
      <pubDate>Tue, 26 Apr 2005 03:50:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/internet-products/html-xml-parsing/m-p/3531871#M711</guid>
      <dc:creator>ANAND_35</dc:creator>
      <dc:date>2005-04-26T03:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: HTML / XML Parsing</title>
      <link>https://community.hpe.com/t5/internet-products/html-xml-parsing/m-p/3531872#M712</link>
      <description>Hi Anand,&lt;BR /&gt;&lt;BR /&gt;Sorry for anwering this post very late, but as i am the new user of this forum so might help this post...&lt;BR /&gt;&lt;BR /&gt;when you copy the contents and when you look at the code xmlDoc.load("note.xml") &lt;BR /&gt;you chnange the code to &lt;BR /&gt;xmlDoc.load("&lt;A href="http://www.w3schools.com/dom/note.xml" target="_blank"&gt;http://www.w3schools.com/dom/note.xml&lt;/A&gt;") and then save your html file and then you open the page.&lt;BR /&gt;&lt;BR /&gt;it opens...&lt;BR /&gt;&lt;BR /&gt;jasdev&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 11 Mar 2006 14:17:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/internet-products/html-xml-parsing/m-p/3531872#M712</guid>
      <dc:creator>Jasdev Singh</dc:creator>
      <dc:date>2006-03-11T14:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: HTML / XML Parsing</title>
      <link>https://community.hpe.com/t5/internet-products/html-xml-parsing/m-p/3531873#M713</link>
      <description>Hello Anand,&lt;BR /&gt;&lt;BR /&gt;The avobe given steps worked perfectly in my machine.&lt;BR /&gt;&lt;BR /&gt;-------------- note.xml ------------------&lt;BR /&gt;&lt;NOTE&gt;&lt;BR /&gt;&lt;NAME&gt;Ganesha&lt;/NAME&gt;&lt;BR /&gt;&lt;/NOTE&gt;&lt;BR /&gt;---------------------------------------&lt;BR /&gt;&lt;BR /&gt;In the browser (IE) following output is displayed:&lt;BR /&gt;The first child element in the file contains: Ganesha&lt;BR /&gt;&lt;BR /&gt;The Msxml.dll file is present in your system or not.&lt;BR /&gt;&lt;BR /&gt;Please download the Microsoft.XMLDOM:&lt;BR /&gt;&lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyID=3144B72B-B4F2-46DA-B4B6-C5D7485F2B42&amp;amp;displaylang=en" target="_blank"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyID=3144B72B-B4F2-46DA-B4B6-C5D7485F2B42&amp;amp;displaylang=en&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Ganesha Sridhara&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Mar 2006 02:23:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/internet-products/html-xml-parsing/m-p/3531873#M713</guid>
      <dc:creator>Ganesha Sridhara</dc:creator>
      <dc:date>2006-03-14T02:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: HTML / XML Parsing</title>
      <link>https://community.hpe.com/t5/internet-products/html-xml-parsing/m-p/3531874#M714</link>
      <description>Hi Ganesha Sridhara,&lt;BR /&gt;&lt;BR /&gt;assigning points to this post be appriciated...&lt;BR /&gt;&lt;BR /&gt;thank you,&lt;BR /&gt;&lt;BR /&gt;jasdev</description>
      <pubDate>Wed, 15 Mar 2006 18:47:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/internet-products/html-xml-parsing/m-p/3531874#M714</guid>
      <dc:creator>Jasdev Singh</dc:creator>
      <dc:date>2006-03-15T18:47:43Z</dc:date>
    </item>
  </channel>
</rss>

