muttley73 / jlibs

Automatically exported from code.google.com/p/jlibs
0 stars 0 forks source link

RFE - Sax2binding - support for namespaceAware (ignoring namespaces) and/or org.xml.sax.helpers.XMLFilter #10

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
It would be nice to have this feature. I want to be able to parse these 2 XMLs 
with a same binding:

<?xml version="1.0" encoding="UTF-8"?>
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"
                       xmlns:moz="http://www.mozilla.org/2006/browser/search/">

  <ShortName>isoHunt - BT search</ShortName>
   ...
</OpenSearchDescription>

<?xml version="1.0" encoding="UTF-8"?>
<OpenSearchDescription>
  <ShortName>isoHunt - BT search</ShortName>
   ...
</OpenSearchDescription>

It can be implemented using many ways - eg. using customized XMLFilter.

Original issue reported on code.google.com by wordrider.net on 29 Oct 2010 at 7:49