when to use a URN for xmlns

2019-04-23 15:03发布

For a "hello world" type xml document:

<?xml version="1.0" encoding="UTF-8"?>
<!-- see http://www.w3.org/TR/REC-xml-names/ -->
<bk:book xmlns:bk="urn:loc.gov:books" xmlns:isbn="urn:ISBN:0-395-36341-6">
  <bk:title>Cheaper by the Dozen</bk:title>
  <isbn:number>1568491379</isbn:number>
</bk:book>

you can arbitrarily define urn's on the fly for custom purposes?

2条回答
时光不老,我们不散
2楼-- · 2019-04-23 15:59

I found this answer quite useful, and it led me to this article which seems to say that yes you can make them up as you like, and indeed you SHOULD, if you aren't going to place a document online for a given URL.

查看更多
你好瞎i
3楼-- · 2019-04-23 16:10

In short, yes. You can make 'em up as you like.

查看更多
登录 后发表回答