Click here to Skip to main content
15,891,607 members
Home / Discussions / XML / XSL
   

XML / XSL

 
AnswerRe: I need an ebay program Pin
JustWorking13-Jan-10 2:43
JustWorking13-Jan-10 2:43 
GeneralRe: I need an ebay program Pin
Ashfield14-Jan-10 1:26
Ashfield14-Jan-10 1:26 
JokeRe: I need an ebay program [modified] Pin
The Man from U.N.C.L.E.14-Jan-10 6:43
The Man from U.N.C.L.E.14-Jan-10 6:43 
QuestionUsing unparsed entities in schemas Pin
rusgregor12-Jan-10 21:46
rusgregor12-Jan-10 21:46 
AnswerRe: Using unparsed entities in schemas Pin
Stuart Dootson13-Jan-10 0:26
professionalStuart Dootson13-Jan-10 0:26 
GeneralRe: Using unparsed entities in schemas Pin
rusgregor13-Jan-10 4:18
rusgregor13-Jan-10 4:18 
GeneralRe: Using unparsed entities in schemas Pin
Stuart Dootson13-Jan-10 4:25
professionalStuart Dootson13-Jan-10 4:25 
GeneralRe: Using unparsed entities in schemas Pin
rusgregor14-Jan-10 3:23
rusgregor14-Jan-10 3:23 
Sorry sir, can You show how You succeed? I can't validate this example. I have used Microsoft XML paser (DOM). There is error - Element "purchaseOrder" is used but not defined in DTD and schema. But there is the validation when I am commenting DTD in the XML file (and deleting symbol "&" for conversion entity to string literal). My JScript code fragment follows. Tell me please, where I have mistaken?

var xmldoc = WScript.CreateObject("MsXml2.DomDocument.5.0");
xmldoc.preserveWhiteSpace = false;
xmldoc.async = false;
xmldoc.validateOnParse = false;

xmldoc.load("a.xml");
printResult(xmldoc.parseError);

var schema = WScript.CreateObject("Msxml2.XMLSchemaCache.5.0");
schema.add("http://www.example.com/PO1", "a.xsd");
xmldoc.schemas = schema;
printResult(xmldoc.validate());
GeneralRe: Using unparsed entities in schemas Pin
Stuart Dootson14-Jan-10 4:44
professionalStuart Dootson14-Jan-10 4:44 
GeneralRe: Using unparsed entities in schemas Pin
rusgregor14-Jan-10 21:24
rusgregor14-Jan-10 21:24 
GeneralRe: Using unparsed entities in schemas Pin
Stuart Dootson14-Jan-10 22:00
professionalStuart Dootson14-Jan-10 22:00 
GeneralRe: Using unparsed entities in schemas Pin
rusgregor18-Jan-10 2:09
rusgregor18-Jan-10 2:09 
QuestionXQuery Pin
Lutosław9-Jan-10 23:40
Lutosław9-Jan-10 23:40 
AnswerRe: XQuery Pin
Stuart Dootson12-Jan-10 3:07
professionalStuart Dootson12-Jan-10 3:07 
GeneralRe: XQuery Pin
Lutosław12-Jan-10 4:02
Lutosław12-Jan-10 4:02 
AnswerRe: XQuery Pin
Lutosław12-Jan-10 4:01
Lutosław12-Jan-10 4:01 
QuestionXML opening with IE Pin
Aljaz1117-Jan-10 4:07
Aljaz1117-Jan-10 4:07 
AnswerRe: XML opening with IE Pin
vivasaayi7-Jan-10 18:20
vivasaayi7-Jan-10 18:20 
QuestionXML With C# Pin
jojoba20105-Jan-10 22:23
jojoba20105-Jan-10 22:23 
AnswerRe: XML With C# Pin
vivasaayi7-Jan-10 18:45
vivasaayi7-Jan-10 18:45 
QuestionHow can I generate multiple classes from xsd’s with common includes? Pin
sri_00994-Jan-10 2:46
sri_00994-Jan-10 2:46 
QuestionGenerate Dynamic controls using XSLT Pin
getaccessyr3-Jan-10 22:33
getaccessyr3-Jan-10 22:33 
AnswerRe: Generate Dynamic controls using XSLT Pin
Not Active4-Jan-10 1:19
mentorNot Active4-Jan-10 1:19 
QuestionGetting zero elements with xmldocument.selectnodes Pin
Haim Nachum2-Jan-10 10:55
Haim Nachum2-Jan-10 10:55 
AnswerRe: Getting zero elements with xmldocument.selectnodes Pin
Dexter Legaspi20-Jan-10 16:13
Dexter Legaspi20-Jan-10 16:13 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.