Hi I'm try to parse character data (CDATA) whit SAX Parser.
I support in this code for that: http://www.java2s.com/Code/Java/XML/AccessingcharacterdataCDATAofXMLelement.htm but when i use it in android (SDK 1.5) I get the next message: W/System.err( 482): javax.xml.parsers.ParserConfigurationException: No validating SAXParser implementation available W/System.err( 482): at org.apache.harmony.xml.parsers.SAXParserFactoryImpl.newSAXParser (SAXParserFactoryImpl.java:77) W/System.err( 482): at com.whizzesforlife.UrlRequestHandler.getParsedData (UrlRequestHandler.java:32) And the in the UrlRequestHandler.java:32 i can read: 31 spf.setValidating(true); 32 SAXParser sp = spf.newSAXParser(); Can I include an special .jar library or something in order to add the implementation required to to that? Thanks in advance -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

