XML/RDF Example, is it correct?

This is a discussion on "XML/RDF Example, is it correct?" within the Other Programming Languages section. This forum, and the thread "XML/RDF Example, is it correct? are both part of the Program Your Website category.



Go Back   Webforumz.com > Main Forums > Program Your Website > Other Programming Languages

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Oct 19th, 2005, 17:48
New Member
Join Date: Oct 2005
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
XML/RDF Example, is it correct?

I'm writing a report on the semantic web for part of a college asignment, and I'm using the following to show how RDF is used... but i'm not sure if its correct, Im finding it hard to get my head round the whole RDF thing!

An address written as HTML

Code: Select all

123 The Street

Worthing

West Sussex

BN16 1AB</p>
The same address written as XML

Code: Select all
<address>
  <street>123 The Street</street>
  <town>Worthing</town>
  <county>West Sussex</county>
  <postCode>BN16 1AB</postCode>
</address>
The same address written as XML/RDF with a custom namespace 'addr'

Code: Select all
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
 <address xmlns:addr="http://example.com/addr">
	<addr:street>123 The Street</addr:street>
	<addr:town>Worthing</addr:town>
	<addr:county>West Sussex</addr:county>
	<addr:postCode>BN16 1AB</addr:postCode>
 </address>
</rdf:RDF>
Is that correct, and are there any better ways of doing it?

Thanks

- Chris
Reply With Quote

Reply

Tags
xmlrdf, example, correct

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Semantically Correct Markup or Not? JacobHaug Web Page Design 3 Oct 11th, 2007 13:48
RAH (correct links) Digger Free Web Site Critique 9 Aug 29th, 2007 20:05
set CORRECT width for <img/> iersel Web Page Design 8 Jul 27th, 2006 07:33
Unable to get correct leading Audioz Web Page Design 4 Nov 14th, 2004 19:32


All times are GMT. The time now is 21:35.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43