abhishekhp schrieb:
:
> The element as in the XML file is <SeverityCode> </SeverityCode>
> 
> It is imperitive that a single space is a valid value for this element.
> Can anyone suggest a solution to the problem?
:
Hi abhishekhp (?),

I think your problem is not in the schema definition. XML normally
does not treat spaces (and tabs, and line breaks...) as part of the
content.

You either have to use
        <SeverityCode><![CDATA[ ]]</SeverityCode>
to tell the parser that the space really _is_ the content, or you
may change your schema and XML file to use a "real character" (e.g.
'-') to be the desired content.

Greetings,

Andi.
--

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to