Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XML
|
XML General XML discussions.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XML section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old October 24th, 2008, 01:10 AM
Registered User
 
Join Date: Oct 2008
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to rajat_aggarwal03
Default Is CDATA same as xsd:String

Hi All,

I was just wondering if a CDATA section defined in a DTD is same as using xsd:string to define an element in XSD?

Please help!!!!

Thanks and Regards,

Rajat Aggarwal
 
Old October 24th, 2008, 02:47 AM
Authorized User
 
Join Date: Sep 2008
Posts: 87
Thanks: 1
Thanked 0 Times in 0 Posts
Default

PCDATA is parsed character data.
Text found between the start tag and the end tag of an XML element.
PCDATA is text that WILL be parsed by a parser. The text will be examined by the parser for entities and markup.

CDATA means character data.
CDATA is text that will NOT be parsed by a parser. Tags inside the text will NOT be treated as markup and entities will not be expanded.


xsd:string its a string datatype which will be parsed and this is of type
xsd:anySimpleType



 
Old October 24th, 2008, 01:05 PM
mhkay's Avatar
Wrox Author
 
Join Date: Apr 2004
Posts: 4,962
Thanks: 0
Thanked 292 Times in 287 Posts
Default

>a CDATA section defined in a DTD

I think you are confusing different concepts here.

CDATA sections are not defined in a DTD. However, DTDs do use very similar keywords for two other (but different) concepts: CDATA is one of the attribute types available (the others are ID, IDREF, NMTOKENS, etc), and #PCDATA can be included in a content model for elements to indicate that it can contain text (rather than or as well as child elements). Both of these concepts are quite similar to the XML Schema concept of xs:string.

Michael Kay
http://www.saxonica.com/
Author, XSLT 2.0 and XPath 2.0 Programmer's Reference





Similar Threads
Thread Thread Starter Forum Replies Last Post
XSD.EXE Gen’d C# Deserializing w/ .xsd Subst Group greenstone XML 0 November 9th, 2007 09:27 PM
Urgent: Building a java object from XML String,XSD neetukk XML 1 January 5th, 2007 02:19 PM
XSD CDATA Section chrisjonmcdonald XML 4 July 12th, 2006 08:15 AM
Merging XSD files in one XSD file by using what? haoxuqian XML 1 November 4th, 2005 01:42 PM
XSD - String values that contain '<' and '>' billy_bob_the_3rd XML 3 March 10th, 2005 07:01 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.