This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: xml param


> 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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]