The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
28 views

Lift-json for Scala 2.9.2

I downloaded the lift-json jar file and included it in the project. I wrote a sample function like below import net.liftweb.json._ def test() { val json = List(1, 2, 3) ...
1
vote
1answer
66 views

How to fill case class from json with partial data?

import net.liftweb.json._ import net.liftweb.json.JsonParser._ object test02 extends App { implicit val formats = DefaultFormats case class User( id: Int = 0, name: String = ...
1
vote
2answers
53 views

use of scala's NodeSeq in lift frame work

Can anybody tel about what is the use NodeSeq object in lift frame works form processing.? can we process our form without using the NodeSeq object.?
1
vote
1answer
71 views

Lift JSON LINQ Like Dynamic Extraction Pattern

I am attempting to perform an XPath based extraction using Lift JSON except that the xpath pattern of extraction is determined during runtime To illustrate, I'd like to convert string "a.b.c.d" to ...
3
votes
1answer
115 views

Scala type parameter seems to be getting “stuck”

I'm using lift-json to de-serialize JSON strings into Scala case classes. The JSON I'm parsing has a common structure: a data, success and error field, where data contains the interesting bits. I've ...
0
votes
1answer
82 views

Making an Ajax request in Lift

I am trying out the Lift web framework, but I am having a hard time understanding a basic aspect. I have lift 2.5 M4 running on my localhost:8080. How can I make a CURL request with some parameters, ...
1
vote
3answers
210 views

How to Conditionally Produce JSON Using JSON4S

I am using JSON4S to produce some JSON. If a condition is met, I would like to produce the following: {"fld1":"always", "fld2":"sometimes"} If the condition is not met, I would like to produce: ...
1
vote
1answer
49 views

How can I empty the cart contents without closing the session?

I'm following the tutorial on the Lift website: http://simply.liftweb.net/index-6.3.html#prev but I'm unable to figure out by myself how can I empty the Cart Contents without closing the session.
1
vote
1answer
98 views

lift-json, proguard and android

I'm working on a multiplatform game (desktop and Android) and I'm currently working on serialization. I use lift-json. It works great on desktop but on Android it's a nightmare: By exemple, if I ...
1
vote
2answers
226 views

Get json data in d3 from lift snippet

I am currently implementing a graph using d3 and a json object for data. A working example of such a graph can be found here: http://bl.ocks.org/950642. If you know d3 you can certainly directly jump ...
0
votes
0answers
97 views

Remove object from array with lift-son

With lift-json it is possible to transform the AST, for instance by using transform or remove. This will replace the affected JValues by JNothings. However, if I have an array of objects and I remove ...
5
votes
1answer
219 views

Parse Json List with 1 element (Scala/liftweb)

I'm running into a situation where I'm retrieving some Json from an external server (I do not have any control over that server). The Json has one element that may occur 1 or more times. I'm trying to ...
12
votes
4answers
2k views

Scala 2.10 + Json serialization and deserialization

Scala 2.10 seems to have broken some of the old libraries (at least for the time being) like Jerkson and lift-json. The target usability is as follows: case class Person(name: String, height: ...
1
vote
1answer
101 views

Ignoring fields when deserialising with lift-json in Scala

How does I deserialise data like this into a case class like this: case class SoundCloudUser ( id: Int, permalink: String, username: String, country: String, full_name: String, city: ...
0
votes
1answer
123 views

Serialiaze a map[A,B] with lift-json knowing A<->String

I want to serialize a HashMap having type HashMap[Coord,Unite] with lift-json. those types are specific to my project but there is Coord -> String with the toString function and i can have my Coord ...
0
votes
1answer
164 views

Serialize a map that hasn't a string as a key with lift-json

It seems like lift-json is limited to map that have Strings as keys (which i find really odd but whatever). What is the best way to bypass this limitation ?
3
votes
2answers
313 views

Vector deserialization by using lift-json

How can i deserialize json array using lift-json to scala vector? For example: case class Foo(bar: Vector[Bar]) trait Bar { def value: Int } case class Bar1(value: Int) extends Bar case class ...
0
votes
0answers
154 views

Using lift-json to extract classes with nested lists

case class a(values: Int) case class b(values: List[Int]) case class c(foo: List[a]) case class d(foo: List[b]) implicit val formats = Serialization.formats(NoTypeHints) (parse("""{"data":[]}""") \ ...
0
votes
1answer
121 views

play framework file missing needed by Diff

I get this error when trying to use the lift-json library with scala play: "The file could not be compiled. Error raised is : error while loading Diff, class file needed by Diff is missing. reference ...
1
vote
1answer
158 views

Non-recursive extraction in Lift JSON for-comprehension

I'm using Lift JSON's for-comprehensions to parse some JSON. The JSON is recursive, so e.g. the field id exists at each level. Here is an example: val json = """ { "id": 1 "children": [ { ...
2
votes
4answers
595 views

validating json in scala with lift-json

I'd like to validate json contains a list of key/values before attempting to marshall into a case class using lift-json. The data might be nested. For example: { "name": "stack", "desc": "desc", ...
1
vote
1answer
138 views

Instantiate a type based on json and metadata using lift-json

I would like to deserialise Scala case classes that have been serialised using lift-json. The problem I am having is, I don't know how to invoke the generic method extractOpt[A] method below: ...
0
votes
2answers
555 views

Rendering JSON from parsed JSON using lift-json in Scala

This is probably an easy one and my difficulty is likely caused by my newness to Scala (which already is fast becoming my favourite language). Basically I have some JSON that looks like this: { "to" ...
0
votes
1answer
397 views

MongoDB ObjectID as JSON using lift-json

I'm using Bowler framework for some REST API's (internally uses lift-json module for heavy lifting) and have the following case class: case class Item(_id : ObjectId, name : String, value : String) ...
1
vote
2answers
341 views

how to serve a Lift/Scala Json webservice from mapper persistant class

Ok, firstly I am new to posting questions here, so go easy on me. I feel like I have scowered the interwebs to figure this out, and I sure must be slow because I just cant get it right - I know this ...
0
votes
1answer
365 views

extracting case classes with scala lift-json when json is variable

I'm trying to extract the following json values // a 'Change item with a list of values { "@count":"2", "change":[{ ...
1
vote
0answers
195 views

Using json-lift with play, omitted Option fields break deserialization

My understanding is that json-lift supports Option fields out of the box. Here is a sample object definition: class TopicModel ( var id: Option[Long], var name: String, val slug: String, ...
1
vote
1answer
142 views

Is there a way to get lift-json to auto-convert numeric string fields to numeric type?

I'm using lift-json to deserialize simple objects from a POST request. Example: {"id": "35", "name": "My topic", "slug": "my-slug", "imageUrl": "http://foo.bar/image.png"} class definition: class ...
0
votes
1answer
267 views

Parsing document fragments with lift-json

I'm trying to parse a JSON document with lift-json when I may not know the exact structure and order of the document that I'm parsing. The document contains list of "objects", all organized into ...
5
votes
3answers
1k views

How to convert a JSON JString value to an ordinary String in Lift?

Having a jString : JString value holding an "abc" string inside I get "JString(abc)" : String if I call jString.toString. How do I get "abc" : String instead?
3
votes
2answers
610 views

Convert lift-json JValue into MongoDBObject using Casbah?

I'm trying to convert a parsed JSON document in a lift-json's JValue into a Casbah MongoDBObject - is there a way to do this?
3
votes
1answer
621 views

Polymorphic lift-json deserialization in a composed class

I am trying to automatically deserialize json object to a scala class using Lift-Json with a coordinate class inside used to store GeoJson information. case class Request(name:String, ...
3
votes
1answer
361 views

Lift-json extract json with 'type' field into a case class

I am trying to extract JSON into a case class using lift-json. Here is my case class: case class Person(name: String, age: Int) Here is the json { "name": "Some Name", "age": 24, type: "Student" } ...
5
votes
2answers
357 views

Salat not deserializing collections that map to Option[Set[A]]

I asked this question in scala-salat Google group, but no response there for a few days, hence trying here. I have a case class which has a collection wrapped in an Option. case class SomeClass( ...