Re: xml param

Subject: Re: xml param
From: Mike Brown <mike@xxxxxxxx>
Date: Wed, 28 Jun 2000 19:15:22 -0600 (MDT)
> Using xalan I can pass a param to the stylesheet. The question is: Can I 
> pass a param to the xml?

You can put some character data in an entity, and refer to that entity by
its URI in the XML document.

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE [ <!ENTITY myParam SYSTEM "someURI"> ]>
<myData>
  <foo>&myParam;</foo>
</myData>

Your XML parser must be able to resolve someURI, so typically it will have
to be a path to a file on a local system, or a network location beginning
with http://. In theory you could extend whatever resolver the parser is
using and make it handle a custom URI that identifies character data you
are passing in from elsewhere.

   - Mike
____________________________________________________________________
Mike J. Brown, software engineer at         My XML/XSL resources:
webb.net in Denver, Colorado, USA           http://www.skew.org/xml/


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread
  • xml param
    • Yasser El-Zein - Wed, 28 Jun 2000 11:21:57 EDT
      • Mike Brown - Wed, 28 Jun 2000 19:15:22 -0600 (MDT) <=
      • <Possible follow-ups>
      • Mike Brown - Wed, 28 Jun 2000 19:18:29 -0600 (MDT)