Altova Mailing List Archives>Archive Index >microsoft.public.xml Archive Home >Recent entries >Thread Prev - Re: one xml two xsl [Thread Next] Re: one xml two xslTo: NULL Date: 2/2/2008 3:10:00 PM
crajeshwar@g... wrote:
> i have a similar problem
> i am using same script code but i need to load two xml files at a
> time
>
> for this i have tried with fallowing code
>
> var xml = new ActiveXObject("Microsoft.XMLDOM")
> xml.async = false
> xml.load("ping.xml")
> xml.load("pingone.xml")
>
> but its loading only pingone not the previous
>
> i have also tried with
> var xml = new ActiveXObject("Microsoft.XMLDOM")
> xml.async = false
> xml.load("ping.xml")
> var xml1 = new ActiveXObject("Microsoft.XMLDOM")
> xml1.async = false
> xml1 = xml.loadBindingDocument("pingone.xml")
>
> this is giving an error
What is loadBindingDocument? I don't think such a method exists. Simply
use a second document e.g.
var xml1 = new ActiveXObject("Microsoft.XMLDOM");
xml1.async = false;
xml1.load("pingone.xml");
--
Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
| ||||||
| Company | Legal | Press | Partners | Careers | Sitemap | Contact Us | Altova Blog | Mobile | Full Site | |||
|
