This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

XML parser

hi,

does anyone know of a decent XML parser to run on an 8052?

thanx guys

Parents
  • You might want to look at:

    http://expat.sourceforge.net/

    It is a stream-oriented XML parser library written in C.

    Reluctantly, I had to port it to a Dallas 80C400.

    Be warned:

    You will need plenty of RAM to parse anything other than small documents.

    If you want decent parsing speed, you will need a high speed core.

    Be prepared to apply quite a few changes to the code. It was obviously written for platforms more suited to this type of task.

Reply
  • You might want to look at:

    http://expat.sourceforge.net/

    It is a stream-oriented XML parser library written in C.

    Reluctantly, I had to port it to a Dallas 80C400.

    Be warned:

    You will need plenty of RAM to parse anything other than small documents.

    If you want decent parsing speed, you will need a high speed core.

    Be prepared to apply quite a few changes to the code. It was obviously written for platforms more suited to this type of task.

Children