| Author |
how to find schema of an xml from dom program at run time
|
anish reddy
Ranch Hand
Joined: Apr 19, 2008
Posts: 72
|
|
hi
i want to validate xml according to schema using dom/xom parser.at run time user passes xml and schema to be validated.
but how to find schema passed by user is correct one that is being used by xml.
i have written a program to validate xml according to schema.
but iam facing problem when user passes wrong schema that is not used by xml ,which validate xml.
please give inputs to resolve this problem.
|
 |
Paul Clapham
Bartender
Joined: Oct 14, 2005
Posts: 16482
|
|
You're asking "Given an XML document, how can I find a schema against which it will validate successfully?" Of course there is no possible answer to that, except perhaps to produce a schema which allows all documents as valid.
If you ask the user, and the user tells you the wrong schema, then the document will be invalid. There is no way you can distinguish this case from the case where the user tells you the right schema but the document is not valid according to that schema. It's up to the user to figure out what's going on in that case, not the programmer.
|
 |
 |
|
|
subject: how to find schema of an xml from dom program at run time
|
|
|