Bug 41555 - ResolvingXMLReader should consider setXIncludeAware(boolean)
Summary: ResolvingXMLReader should consider setXIncludeAware(boolean)
Status: NEW
Alias: None
Product: XmlCommons - Now in JIRA
Classification: Unclassified
Component: Resolver (show other bugs)
Version: 1.x
Hardware: All other
: P2 normal (vote)
Target Milestone: ---
Assignee: Commons Developers Mailing List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-02-07 02:02 UTC by Joerg Moebius
Modified: 2007-02-07 02:06 UTC (History)
0 users



Attachments
xinclude awareness considered (3.27 KB, patch)
2007-02-07 02:06 UTC, Joerg Moebius
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Joerg Moebius 2007-02-07 02:02:00 UTC
beside namespace awareness and validating ResolvingXMLReader should also
consider xincludeawareness:

SAXParserFactory spf = SAXParserFactory.newInstance();
spf.setNamespaceAware(namespaceAware);
spf.setValidating(validating);
spf.setXIncludeAware(xIncludeAware);


Regards Joerg
Comment 1 Joerg Moebius 2007-02-07 02:06:47 UTC
Created attachment 19536 [details]
xinclude awareness considered