[Home] [By Thread] [By Date] [Recent Entries]

  • From: Ronald Bourret <rbourret@i...>
  • To: "'xml-dev@i...'" <xml-dev@i...>
  • Date: Fri, 18 Jun 1999 10:54:43 +0200

Sebastien Sahuc wrote:

> I'll be direct : Is there a way to insert Variable on XML document ?

You can use an entity. For example, declare the entity in your DTD:

<!ENTITY myaddress "123 Main St">

and reference the entity in the body of your document:

	<merchant>
		<address>&myaddress;</address>
		...
	</merchant>

When the document is parsed, the parser replaces the entity with its value 
and what your application sees is:

	<merchant>
		<address>123 Main St</address>
		...
	</merchant>

The above shows an internal entity, which means that the entity value is 
stored in the document. The entity could also be external, meaning it is 
stored in any sort of an external resource. The simplest case is when it is 
stored in an external file, so your declaration might look like:

<!ENTITY myaddress SYSTEM "addressfile.txt">

However, the system id doesn't need to point to a file -- it could also 
point to something like a CGI program to retrieve the entity from a 
database.

-- Ron Bourret


xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i...
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo@i... the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@i... the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@i...)



Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member