blob: c50b8a2dd14de47b1828cd35c05702dca858069b [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-us" xml:lang="en-us">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<meta name="copyright" content="Copyright (c) 2000, 2008 IBM Corporation and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html. Contributors: IBM Corporation - initial API and implementation" />
<meta name="DC.rights.owner" content="(C) Copyright 2000, 2008" />
<meta content="public" name="security" />
<meta content="index,follow" name="Robots" />
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
<meta content="concept" name="DC.Type" />
<meta name="DC.Title" content="XML file associations with DTDs and XML schemas" />
<meta name="abstract" content="When an XML file is associated with a DTD or XML schema, it is bound by any structural rules contained in the DTD or XML schema. To be considered a valid XML file, a document must be accompanied by a DTD or an XML schema, and conform to all of the declarations in the DTD or the XML schema." />
<meta name="description" content="When an XML file is associated with a DTD or XML schema, it is bound by any structural rules contained in the DTD or XML schema. To be considered a valid XML file, a document must be accompanied by a DTD or an XML schema, and conform to all of the declarations in the DTD or the XML schema." />
<meta content="XML catalog, overview, XML files, associations" name="DC.subject" />
<meta content="XML catalog, overview, XML files, associations" name="keywords" />
<meta scheme="URI" name="DC.Relation" content="tedtcnst.html" />
<meta scheme="URI" name="DC.Relation" content="tedtdoc.html" />
<meta scheme="URI" name="DC.Relation" content="txmlcat.html" />
<meta scheme="URI" name="DC.Relation" content="tedtgram.html" />
<meta scheme="URI" name="DC.Relation" content="tedtcnst.html" />
<meta scheme="URI" name="DC.Relation" content="tedtsch.html" />
<meta scheme="URI" name="DC.Relation" content="txmlcat.html" />
<meta scheme="URI" name="DC.Relation" content="tedtgram.html" />
<meta scheme="URI" name="DC.Relation" content="tedtproc.html" />
<meta scheme="URI" name="DC.Relation" content="cwxmledt.html" />
<meta scheme="URI" name="DC.Relation" content="txedtdes.html" />
<meta scheme="URI" name="DC.Relation" content="txedtsrc.html" />
<meta content="XHTML" name="DC.Format" />
<meta content="cxmlcat" name="DC.Identifier" />
<meta content="en-us" name="DC.Language" />
<link href="../../org.eclipse.wst.doc.user/common.css" type="text/css" rel="stylesheet" />
<title>XML file associations with DTDs and XML schemas</title>
</head>
<body id="cxmlcat"><a name="cxmlcat"><!-- --></a>
<h1 class="topictitle1">XML file associations with DTDs and XML schemas</h1>
<div><p>When an XML file is associated with a DTD or XML schema, it is
bound by any structural rules contained in the DTD or XML schema. To be considered
a valid XML file, a document must be accompanied by a DTD or an XML schema,
and conform to all of the declarations in the DTD or the XML schema.</p>
<p>There are two different ways to associate XML files with DTDs or XML schemas.</p>
<ol>
<li>Direct association - The XML file contains either the name of a DTD in
its doctype declaration (for example, &lt;!DOCTYPE root-element SYSTEM "<var class="varname">dtdfile.dtd</var>"
&gt;, where <var class="varname">dtdfile.dtd</var> is the name of the DTD file) or it
contains the path of an XML schema in the schemaLocation attribute of the
XML file root element (for example, &lt;xsi:schemaLocation="http://www.ibm.com/<var class="varname">schema.xsd</var>"&gt;,
where <var class="varname">schema.xsd</var> is the name of the XML schema.</li>
<li>XML Catalog entry - You can register DTD and XML schema files in the XML
Catalog and associate them with a Key that represents them. You can then
refer to a DTD or XML schema file Key from an XML file instead of referring
directly to the DTD or XML schema file. An XML Catalog entry contains two
parts - the Key (which represents the DTD or XML schema) and a URI (which
contains information about the DTD or XML schema location).</li>
</ol>
<div class="section"><h4 class="sectiontitle">How an association works</h4><strong>Associating an XML file
with a DTD </strong><div class="p">If an XML file is associated with a DTD, a DOCTYPE tag such
as the following one is included in the XML file:<pre>&lt;!DOCTYPE root-name PUBLIC "<var class="varname">InvoiceId</var>" "<var class="varname">C:\mydtds\Invoice.dtd</var>"&gt;
</pre>
</div>
<p>InvoiceId is the public identifier of the DTD file. It
is used to associate the XML file with a DTD file (in this case, the DTD file
is Invoice.dtd). If the public identifier InvoiceId corresponds to the Key
of the XML Catalog entry for Invoice.dtd, then the URI of the
XML Catalog entry (which contains information about the location of Invoice.dtd)
is used to locate the DTD. Otherwise, the DOCTYPE's system identifier ("C:\mydtds\Invoice.dtd"),
which refers directly to the file system location of the DTD, is used to locate
the DTD.</p>
<div class="note"><span class="notetitle">Note:</span> You can also use a system identifier as a Key in an XML
Catalog entry. If you use a system identifier as a Key, a DOCTYPE tag such
as the following one is included in an XML file:</div>
<pre>&lt;!DOCTYPE Root-name SYSTEM "MyDTD.dtd"&gt; </pre>
<p>where
MyDTD.dtd is the system identifier that corresponds to the Key of an XML Catalog
entry.</p>
</div>
<div class="section"><strong>Associating an XML file with an XML schema</strong><p>If an XML file
is associated with an XML schema, one or more schema location attributes are
included in the XML file. The information in the schemaLocation is provided
as a "hint" to the XML processor. The following examples show schemaLocation
attributes:</p>
<div class="p"> <strong>Example 1 </strong><pre>&lt;purchaseOrder xmlns="http://www.ibm.com"
xsi:schemaLocation="http://www.ibm.com C:\myschemas\PurchaseOrder.xsd"&gt;
&lt;shipTo country="US"&gt;
...</pre>
</div>
<div class="p"><strong>Example 2 </strong><pre>&lt;purchaseOrder xmlns="http://www.ibm.com"
xsi:schemaLocation="http://www.ibm.com PO.xsd"&gt;
&lt;shipTo country="US"&gt;
....</pre>
</div>
<p>In Example 1, the schemaLocation 'hint' ('C:\myschemas\PurchaseOrder.xsd')
refers directly to the file system location or URI of the XML schema. In this
case, the schema file will be located by the XML processor directly.</p>
<p>In
Example 2, the schemaLocation 'hint' ('PO.xsd') refers to an XML Catalog entry.
PO.xsd corresponds to the <var class="varname">Key</var> of the XML Catalog entry
for PurchaseOrder.xsd, and the URI of the XML Catalog entry (which contains
information about the location of PurchaseOrder.xsd) will be used to located
the XML schema.</p>
<p>In both examples, <samp class="codeph">http://www.ibm.com</samp> in
the <samp class="codeph">xsi:schemaLocation</samp> tag is a URI that identifies the namespace
for the XML schema.</p>
<div class="p">You can also use a namespace as a Key for an XML
Catalog entry. If you use a namespace as a Key, a schemaLocation tag such
as the following one is included in an XML file:<pre>&lt;purchaseOrder xmlns:="www.ibm.com"
xsi:schemaLocation="http://www.ibm.com po/xsd/PurchaseOrder.xsd "&gt;</pre>
</div>
<p>The
schemaLocation attribute points to both the Key and the actual location of
the schema.</p>
<p><strong>DTD or XML schema resides on a remote server</strong></p>
<p>Several
functions in the XML editor, such as validation and content assist, require
the availability of a DTD or an XML schema. The product documentation provides
usage information for cases when the DTD or XML schema resides on your local
machine. However, in many cases, the DTD or XML schema can reside on a remote
server, for example:</p>
<p><samp class="codeph">&lt;!DOCTYPE Catalog PUBLIC "abc/Catalog"
"http://xyz.abc.org/dtds/catalog.dtd"&gt;</samp></p>
<p>Normally, this case
poses no problem, because the DTD or XML schema can be retrieved from the
remote server. However, if you are behind a firewall, and do not have a SOCKSified
system, the workbench currently does not provide a way for you to specify
a socks server for retrieving a DTD or XML schema. If you are unable to SOCKSify
your system, the workaround for this problem is to retrieve a copy of the
DTD or XML schema (using a Web browser, for example) and save that copy on
your local machine. Then, you can either place a local copy in the same project
as your XML file, or use the XML Catalog to associate a public identifier
with the DTD's (local) location.</p>
<div class="note"><span class="notetitle">Note:</span> If you have an XML file associated
with an XML schema or DTD that is elsewhere in the network, and you are working
on a machine disconnected from the network, you can follow the steps described
previously if you want to use content assist or validate your XML file. </div>
</div>
<div class="section"><h4 class="sectiontitle">Advantages of XML Catalog entry associations</h4><p>If
you create a direct association between an XML file and an XML schema or DTD
file, any time you change the location of the schema or DTD you have to track
down and update all of the referencing XML files with the new location of
the DTD or schema. If, however, you associate an XML file with an XML schema
or DTD Key, then, when you change the location of the schema or DTD, you only
have to update the XML Catalog entry, instead of each individual XML file.</p>
<p>For
example, you have a DTD called Building.dtd, which is associated with five
XML files - Office.xml, House.xml, Apartment.xml, Bank.xml, and PostOffice.xml.
You move the DTD file Building.dtd to a new location. If you have a direction
association between Building.dtd and all the XML files, you will have to update
the &lt;DOCTTYPE&gt; declaration in each XML file to reflect the new location
of Building.dtd. If, however, you have an XML Catalog association, and all
the XML files just refer to the Key of Building.dtd, then you only have to
update the URI and all the XML files will point to the new location of Building.dtd.</p>
</div>
<div class="section"><h4 class="sectiontitle">Updating an entry in the XML Catalog</h4><p>After you have
updated an entry in the XML Catalog, you might need to refresh the XML editor
view so that it uses the new information. To do this, click the <span class="uicontrol">Reload
Dependencies</span> toolbar button <img src="../images/rldgrmr.gif" alt="This graphic is the Reload Dependencies toolbar button" /> and
the view will be updated using the current XML Catalog settings. You only
need to refresh the XML editor view when you have an XML file open that references
the XML Catalog entry that was updated.</p>
<p>For more information, refer
to the related tasks.</p>
</div>
</div>
<div><div class="relconcepts"><strong>Related concepts</strong><br />
<div><a href="cwxmledt.html" title="The XML editor is a tool for creating and viewing XML files.">XML editor</a></div>
</div>
<div class="reltasks"><strong>Related tasks</strong><br />
<div><a href="tedtcnst.html" title="In the Design view, when you edit an XML file that has a set of constraints or rules defined by a DTD or an XML schema, you can turn the constraints on and off to provide flexibility in the way you edit, but still maintain the validity of the document periodically.">Editing with DTD or XML schema constraints</a></div>
<div><a href="tedtdoc.html" title="The DOCTYPE declaration in an XML file is used at the beginning of it to associate it with a DTD file. You can edit your DOCTYPE declaration to change the DTD file your XML file is associated with.">Editing DOCTYPE declarations</a></div>
<div><a href="txmlcat.html" title="An XML Catalog entry contains two parts - a Key (which represents a DTD or XML schema) and a Location (similar to a URI, which contains information about a DTD or XML schema's location). You can place the Key in an XML file. When the XML processor encounters it, it will use the XML Catalog entry to find the location of the DTD or XML schema associated with the Key">Adding entries to the XML Catalog</a></div>
<div><a href="tedtgram.html" title="If you make changes to a DTD file or XML schema associated with an XML file (that is currently open), click XML &gt; Reload Dependencies to update the XML file with these changes. The changes will be reflected in the guided editing mechanisms available in the editor, such as content assist.">Updating XML files with changes made to DTDs and schemas</a></div>
<div><a href="tedtsch.html" title="Your namespace information is used to provide various information about the XML file, such as the XML schema and namespace it is associated with. If desired, you can change the schema and namespace your XML file is associated with or add a new association. Modifying any associations can impact what content is allowed in the XML file.">Editing namespace information</a></div>
<div><a href="tedtproc.html" title="If you have instructions you want to send to an application using an XML document, you can use a processing instruction.">Editing XML processing instructions</a></div>
<div><a href="txedtdes.html" title="The XML editor has a Design view, which represents the XML file simultaneously as a table and a tree. This helps make navigation and editing easier. Content and attribute values can be edited directly in the table cells, while pop-up menus on the tree elements give alternatives that are valid for that particular element.">Editing in the Design view</a></div>
<div><a href="txedtsrc.html" title="You can use the Source view to view and work with a file's source code directly.">Editing in the Source view</a></div>
</div>
</div>
</body>
</html>