Is there anything built into lift that will do XML -> JSON
conversion?  For example:

<foos>
  <foo>
    <id>1</id>
    <name>Harry</name>
  </foo>
  <foo>
    <id>2</id>
    <name>David</name>
  </foo>
</foos>

to:

{
  "foos": {
    "foo": [{
        "id": 1,
        "name": "Harry"
     },
     {
        "id": 2,
        "name": "David"
     }
    ]
}

Just checking to see if there was something Lift friendly to do this
before writing my own (or picking a java library to use).

-harryh
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Lift" group.
To post to this group, send email to liftweb@googlegroups.com
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to