Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

namespace

Status
Not open for further replies.

Cagliostro

Programmer
Sep 13, 2000
4,226
GB
Hi,
how can I create a namespace in a DTD?
I need a short sample of a DTD on the local hard drive what creates this namespace, a separate XML using it(just a short sample).

Ion Filipski
1c.bmp
 
info found online...

Code:
To declare an XML namespace, you use an attribute whose name has the form:

  xmlns:prefix
        --OR--
  xmlns
These attributes are often called xmlns attributes and their value is the name of the XML namespace being declared; this is a URI. The first form of the attribute (xmlns:prefix) declares a prefix to be associated with the XML namespace. The second form (xmlns) declares that the specified namespace is the default XML namespace.

For example, the following declares two XML namespaces, named [URL unfurl="true"]http://www.tu-darmstadt.de/ito/addresses[/URL] and [URL unfurl="true"]http://www.tu-darmstadt.de/ito/servers.[/URL] The first declaration associates the addr prefix with the [URL unfurl="true"]http://www.tu-darmstadt.de/ito/addresses[/URL] namespace and the second declaration states that the [URL unfurl="true"]http://www.tu-darmstadt.de/ito/servers[/URL] namespace is the default XML namespace.

  <Department
       xmlns:addr="[URL unfurl="true"]http://www.tu-darmstadt.de/ito/addresses"[/URL]
       xmlns="[URL unfurl="true"]http://www.tu-darmstadt.de/ito/servers">[/URL]

-DNG
 
I need a short sample of a DTD on the local hard drive what creates this namespace, a separate XML using it(just a short sample).

Just a sample, no links, no explanations

Ion Filipski
1c.bmp
 
first of all I need example of DTD what creates namespace, not XML what uses that(read my first post)

Ion Filipski
1c.bmp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top