I want to go from : <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE test [ <!NOTATION gif SYSTEM "image/gif"> <!ENTITY test SYSTEM "../images/test.gif" NDATA gif> ]> <test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../schemas/test.xsd" test="test">test</test>
to: <?xml version="1.0" encoding="UTF-8"?> <test xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../schemas/test.xsd" test="../images/test.gif">test</test> using xerces. (Notice the unparsed entity name has been replaced with the system identifier for the entity with the same name.) What is the best way to do this? adrian --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
