Xml Push Parsing in J2Me applications

Hi all,

I would like to use Push parser in j2me application.Can u please tell me how can i use sax parser in mobile application.Because when i included "jaxp-api.jar" in mobile application,it gives an error "FactoryFinder class not found".. So please tell me how can i overcome this error or any other push parser available for J2me applications.

Thanks

Regards

Sourab

[399 byte] By [souraba] at [2007-11-26 19:41:09]
# 1
please use [url= http://www.devx.com/xml/Article/11773/1954?pf=true]KXML[/url] !!!jaxp-api.jar cannot work with j2me because j2me has not the possibility of the j2se !
suparenoa at 2007-7-9 22:22:01 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2

Thank u very much sir.

Actually we know kxml is a pull parser.I would like to know is there any push parsers for perfectly parsing in j2me application.Can u please answer my question.

i have another question also.Parser i used should be parse both xml as well as wbxml documents.Please answer this question also.

Thanks,

sourab

souraba at 2007-7-9 22:22:01 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 3
> Thank u very much sir.> Actually we know kxml is a pull parser.I would like> to know is there any push parsers for perfectly> parsing in j2me application.Can u please answer my> question.what do you mean with 'push parsers for
suparenoa at 2007-7-9 22:22:01 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 4
you said that jaxp-api was not worked with j2me.Can you tell me push parsers other than jaxp-api.jar which are worked with j2me applicationThanks,sourab.
souraba at 2007-7-9 22:22:01 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 5

Please review this article.

http://developers.sun.com/techtopics/mobility/midp/articles/parsingxml/

There is a link to a push parser mid way through the article. If you search "push parser j2me" you should be able to find others.

If you still are not able to find a push parser you could create your own. How complex is the xml you need to parse?

I created an example called y!p! some time ago that uses a push parser to parse Yahoo's Image Search web service. (http://developer.yahoo.com/search/image/V1/imageSearch.html)

You can download the example src code. For a more complex example you could look at w!k!. It uses a push parser to parse html wikipedia articles.

w!k! push parser src:

http://hostj2me.cliqcafe.com/www/forumtopicview.html?fid=58&categoryId=36&fpn=0

w!k! src code:

http://www.hostj2me.com/appdetails.html?id=1569

rashidmayesa at 2007-7-9 22:22:01 > top of Java-index,Java Mobility Forums,Java ME Technologies...