[Lift] Re: JSONParse.parse and List[Any]

2009-10-02 Thread Peter Robinett
Thanks, Tim. I was assuming that it was included as a dependency of lift-core but as I think about I can see why not! Peter On Oct 2, 7:24 pm, Tim Nelson wrote: > Add this below the lift-core dependency: > > >    net.liftweb >      lift-json >    1.1-SNAPSHOT >   > > Tim > > On Fri, Oct 2, 200

[Lift] Re: JSONParse.parse and List[Any]

2009-10-02 Thread Derek Chen-Becker
As the guy that wrote (and still maintains) the JSON Parser in the Scala core lib, I second David's opinion. The Scala JSON parser was intended to do two things: 1. Show how to write parsers using the combinator library 2. Be a functional parser of JSON The stuff that Joni is doing doesn't do #1,

[Lift] Re: JSONParse.parse and List[Any]

2009-10-02 Thread Tim Nelson
Add this below the lift-core dependency: net.liftweb lift-json 1.1-SNAPSHOT Tim On Fri, Oct 2, 2009 at 11:17 AM, Peter Robinett wrote: > > Thanks, David. Unfortunately, I get errors that net.liftweb.json does > not exist. I imagine this is a configuration problem with my pom.xml,

[Lift] Re: JSONParse.parse and List[Any]

2009-10-02 Thread Peter Robinett
Thanks, David. Unfortunately, I get errors that net.liftweb.json does not exist. I imagine this is a configuration problem with my pom.xml, which is here: http://gist.github.com/199860. Could you or someone else conversant in Maven give me some tips to how to make sure I get lift-json? Thanks, Pe

[Lift] Re: JSONParse.parse and List[Any]

2009-10-02 Thread David Pollak
Peter, I'd suggest using the stuff in lift-json. It's a much faster, richer way to use JSON. Thanks, David On Thu, Oct 1, 2009 at 4:31 PM, Peter Robinett wrote: > > Hi all, > > Building off of a previous thread[1], I'm trying to parse a POST > request that contains JSON data. Specifically, I