Re: setExternalSchemaLocation and xs:import

2008-03-03 Thread Boris Kolpackov
Hi Daniel, Daniel Jackson <[EMAIL PROTECTED]> writes: > My program recieves as input an XML file. My goal is to check if this XML > file passes schema validation. The XML file must contain 'xmlns'es. In the > program I go over all the 'xmlns', that's how I know which schemas I need > inorder to v

[jira] Commented: (XERCESC-1769) xerces-c++ 2.8.0 ICU message loader broken due to deprecated API usage and various other problems

2008-03-03 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1769?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12574398#action_12574398 ] Boris Kolpackov commented on XERCESC-1769: -- The xerces-c-2.8.0-icu_ressource_fix

[jira] Resolved: (XERCESC-1783) Finish makefiles for the ICU message loader

2008-03-03 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1783?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Boris Kolpackov resolved XERCESC-1783. -- Resolution: Fixed Assignee: Boris Kolpackov The fix is in the trunk. > Finish

[jira] Closed: (XERCESC-1783) Finish makefiles for the ICU message loader

2008-03-03 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1783?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Boris Kolpackov closed XERCESC-1783. > Finish makefiles for the ICU message loader > --- >

[jira] Updated: (XERCESC-1735) Fast append optimization for the DOM parser

2008-03-03 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1735?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Boris Kolpackov updated XERCESC-1735: - Fix Version/s: 3.0.0 > Fast append optimization for the DOM parser > --

Re: setExternalSchemaLocation and xs:import

2008-03-03 Thread Daniel Jackson
Hi Boris, Boris Kolpackov-2 wrote: > > Another alternative would simply be to pre-load all of your schemas > with loadGrammar (this would also involve creating in-memory "includer" > schemas for schemas with the same namespace) and then let the parser > figure out what to use. The advantage of

Re: setExternalSchemaLocation and xs:import

2008-03-03 Thread Daniel Jackson
Daniel Jackson wrote: > > So basically if I have schema A that includes schema B (both have the same > namespace) and I create an in-memory schema that includes both of them and > has the same namespace, I could use loadGrammar to load all 3 and then the > XML file should pass validation. Is thi

[jira] Commented: (XERCESC-1769) xerces-c++ 2.8.0 ICU message loader broken due to deprecated API usage and various other problems

2008-03-03 Thread JIRA
[ https://issues.apache.org/jira/browse/XERCESC-1769?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12574480#action_12574480 ] Tiziano Müller commented on XERCESC-1769: - Thats correct. I corrected those issue

Re: setExternalSchemaLocation and xs:import

2008-03-03 Thread Boris Kolpackov
Hi Daniel, std::istringstream istr (entry_schema); xml::sax::std_input_source isrc (istr, "entry-schema.xsd"); Wrapper4InputSource wrap (&isrc, false); Daniel Jackson <[EMAIL PROTECTED]> writes: > > > Daniel Jackson wrote: > > > > So basically if I have schema A that includes schema B (both have

[jira] Commented: (XERCESC-1769) xerces-c++ 2.8.0 ICU message loader broken due to deprecated API usage and various other problems

2008-03-03 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1769?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12574516#action_12574516 ] Boris Kolpackov commented on XERCESC-1769: -- Tiziano, would you be interested in

Re: setExternalSchemaLocation and xs:import

2008-03-03 Thread Boris Kolpackov
Hi Daniel, Sorry for the previous email -- hit send accidently. Daniel Jackson <[EMAIL PROTECTED]> writes: > So basically if I have schema A that includes schema B (both have the same > namespace) and I create an in-memory schema that includes both of them and > has the same namespace, I could u

[jira] Closed: (XERCESC-1735) Fast append optimization for the DOM parser

2008-03-03 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1735?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Boris Kolpackov closed XERCESC-1735. > Fast append optimization for the DOM parser > --- >

[jira] Resolved: (XERCESC-1735) Fast append optimization for the DOM parser

2008-03-03 Thread Boris Kolpackov (JIRA)
[ https://issues.apache.org/jira/browse/XERCESC-1735?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Boris Kolpackov resolved XERCESC-1735. -- Resolution: Fixed Fix Version/s: 2.8.0 Applied to the trunk. > Fast append op