Go Back   Velocity Reviews > Newsgroups > XML
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

XML - DTD: Choice: Non-Alphanumeric

 
Thread Tools Search this Thread
Old 07-01-2003, 12:09 PM   #1
Default DTD: Choice: Non-Alphanumeric


Dear All,

My project is basically about the personal record keeping of user's
data. Now user can customize their data entry form by adding/removing
the desired fields for personal information (e.g. Add: Home Phone Pin
Code, Remove: Personal ID Card No). All this was being done in
database and was working fine.

Some one recommend me to use DTD/XML to automate this whole process in
a standardized way. I started off while searching on the web and on
different forums and found some good examples. But at one point, I am
stuck at creating chioce in DTD?

Let's assume that I have three choices for some attribute. I define
them as under in my output DTD file,

---------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>

<!ELEMENT choice_testing (#PCDATA)>
<!ATTLIST choice_testing value (True | False | Unknown ) "Unknown" >
---------------------------------------------

Every thing seems to be fine except one thing, if I enter any
non-Alphanumeric character in the value of this choice.

e.g. ( <!ATTLIST email_address_domain value (@yahoo.com | @hotmail.com
| Unknown ) "@yahoo.com" > ).

After this, the parser gave me a parsing error. I have checked the
validity of DTD file with XML Spy 4.3 and its validator won't let me
pass through and gave me an error message that "Wild card character
found, cannot proceed". As this is some basic funcationlity of the
project. Any Comments / suggestion / help ?

Thanks in Advance

Waiting for your reply,

Best Regards,
Shozi


Shozi
  Reply With Quote
Old 07-02-2003, 11:45 AM   #2
Bob Foster
 
Posts: n/a
Default Re: Choice: Non-Alphanumeric

"Shozi" <> wrote in message
news: m...
> Let's assume that I have three choices for some attribute. I define
> them as under in my output DTD file,
>
> ---------------------------------------------
> <?xml version="1.0" encoding="UTF-8"?>
>
> <!ELEMENT choice_testing (#PCDATA)>
> <!ATTLIST choice_testing value (True | False | Unknown ) "Unknown" >
> ---------------------------------------------
>
> Every thing seems to be fine except one thing, if I enter any
> non-Alphanumeric character in the value of this choice.
>
> e.g. ( <!ATTLIST email_address_domain value (@yahoo.com | @hotmail.com
> | Unknown ) "@yahoo.com" > ).
>
> After this, the parser gave me a parsing error. I have checked the
> validity of DTD file with XML Spy 4.3 and its validator won't let me
> pass through and gave me an error message that "Wild card character
> found, cannot proceed". As this is some basic funcationlity of the
> project. Any Comments / suggestion / help ?


A DTD attribute enumeration value must be an NMTokens, one or more NameChar.
This can be letters, digits, etc. but not '@'.

If this is essential to your application, switch to XML Schema or RELAX NG,
where you can use any simple type value. If you already have a lot of time
invested in your DTD, download trang and use it to convert your DTD to one
of the other schema types.

Bob Foster


  Reply With Quote
Old 07-03-2003, 06:17 AM   #3
Shozi
 
Posts: n/a
Default Re: Choice: Non-Alphanumeric

Dear Bob,

Thank you very much for your reply, I am very thankful for the answer.
I already have implemented a logic. I just add Text variables and do
the work. By adding variables in the choice and assign values of email
domains to that variable. That solution is working fine.

I am unable to invest more time in changing my logic to xml schema.

Thank you once again.

Best Regards,

Shozi

"Bob Foster" <> wrote in message news:<FJyMa.84709$R73.10000@sccrnsc04>...
> "Shozi" <> wrote in message
> news: m...
> > Let's assume that I have three choices for some attribute. I define
> > them as under in my output DTD file,
> >
> > ---------------------------------------------
> > <?xml version="1.0" encoding="UTF-8"?>
> >
> > <!ELEMENT choice_testing (#PCDATA)>
> > <!ATTLIST choice_testing value (True | False | Unknown ) "Unknown" >
> > ---------------------------------------------
> >
> > Every thing seems to be fine except one thing, if I enter any
> > non-Alphanumeric character in the value of this choice.
> >
> > e.g. ( <!ATTLIST email_address_domain value (@yahoo.com | @hotmail.com
> > | Unknown ) "@yahoo.com" > ).
> >
> > After this, the parser gave me a parsing error. I have checked the
> > validity of DTD file with XML Spy 4.3 and its validator won't let me
> > pass through and gave me an error message that "Wild card character
> > found, cannot proceed". As this is some basic funcationlity of the
> > project. Any Comments / suggestion / help ?

>
> A DTD attribute enumeration value must be an NMTokens, one or more NameChar.
> This can be letters, digits, etc. but not '@'.
>
> If this is essential to your application, switch to XML Schema or RELAX NG,
> where you can use any simple type value. If you already have a lot of time
> invested in your DTD, download trang and use it to convert your DTD to one
> of the other schema types.
>
> Bob Foster

  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump