0
votes
1answer
18 views

play, scala and jerkson noClassDefFound error

I am trying to work with jerkson in play and with scala 2.10. However, i want to load data fixtures based on a json files. for this prcoedure I'm trying to load the json with the "parse" command from ...
0
votes
0answers
26 views

Play framework, reads/writes top level property

I'm currently creating some json that looks like: {"user":{"providerid":"userpass","firstname":"t","lastname":"b","fullname":"t ...
0
votes
1answer
48 views

Serialize single variable of an object into a single value using json Writes in Play 2.1

I am using Play 2.1.1 with Scala. I want to be able to serialize an object into a single value so that I can toss them into a list and have it output an array of this object. I only want it to output ...
0
votes
0answers
32 views

Back Button (Chrome) Gets Json instead of HTML in Play Framework

Folks, I've got a web application where I have re-used the same route for the JSON and HTML representations of the same resource, let's call it /foo/details for now. This page is linked from, let's ...
1
vote
2answers
94 views

Play 2.1 Json serialization of traits

The experimental "Inception" feature in Play 2.1 (Json.format[...]) only works for case classes (see here). How can I write my custom format implicit for a trait. I have the following construct: ...
0
votes
2answers
109 views

Iterating over an array in JSON with Play 2.1.1

I am using play 2.1.1 and I am having issues iterating through an array. I had read somewhere that you can create a reads for a List[Object] but everytime I try to do this I get an error "No unapply ...
0
votes
1answer
255 views

Play Framework Json Object mapping partial objects

Another Play Framework 2.1 question as the documentation is too techie for me to wrap my head around. If I have a scala case class object that represents something, say a server: case class ...
0
votes
1answer
72 views

Converting nested lists to json gives superfluous arrays

I have some history data, that I want to convert to json. So these are Lists of lists. Their type is List[List[Position]] where Position is a simple case class. I wrote a formatter to help Json.toJson ...
0
votes
1answer
171 views

Handle multidimensional JSON with scala Play framework

I am trying to send data from the client to the server using a JSON request. The body of the JSON request looks like this: [ [ {"x":"0","y":"0","player":0}, {"x":"0","y":"1","player":0}, ...
0
votes
1answer
199 views

Jackson scala module: serialize Enumeration fails

Can someone explain me why this doesn't work? I use the Scala module with Jackson. My dependency is "com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.1.3" My serializer is: import ...
0
votes
1answer
89 views

Error working with JSON in Play 2

I am trying to serialize / deserialize using JSON and the Play Framework 2.1.0 and Scala 2.10. I am using Anorm, and I have a pretty simple Object that I want to store in a database. The Order is ...
0
votes
0answers
81 views

Recursive JSON Path in Reads of play2 framework

I am trying to parse a JSon Object with an undisclosed number of objects of type service of which i want to take their names as a recursive path to a object as a List. implicit val collabReads: ...
0
votes
0answers
85 views

From javascript call play 2.1 controller function that returns json data object

How to make play 2.1 controller function execute a captured external url and return json data object to javascript. First of all InputStream is not opening an external url. errors out saying no ...
1
vote
1answer
125 views

Playframework Scala Specs2 JSON Matchers

I'm using the Play! framework and trying to work with JSON response messages in Specs2 tests with no success. What I am trying to do is assert key->value pairs in a JsValue like in the example below ...
0
votes
1answer
152 views

Foreach with JSON Arrays in Play2 and Scala

"people": [ { "name": "Jack", "age": 15 }, { "name": "Tony", "age": 23 }, { "name": "Mike", "age": 19 } ] Thats a sample of the json i'm trying to parse through. I want to be ...
2
votes
4answers
128 views

Pulling data from json file to use in .$post in Jquery

I'd like to pull data from a json file to post it to the server side. This kind of data decleration works: $.post('/createDBJSON',{'name':'bar'}, function(data) {window.alert(data);} However I ...
0
votes
1answer
75 views

Strings maintaining leading and trailing quotes from JSON when using Jerkson

JSON in question: { "search_id": "", "type": "Search.filter", "query": "bar,club", "params": { "search_id": "", "user_id": "", "client": "ios", "lat": 40.73199375351, "lon": ...
1
vote
1answer
89 views

Play JSON: How to use string as proper json

val json = JsObject(Seq( "type" -> toJson("filter"), "params" -> toJson(fP.parseToJson()) )).toString() fP.parseToJson() produces a json string which is used in other ...
0
votes
0answers
220 views

Play Framework - render HTML Page from Controller with JSON parameter

I have a form which is processed in the controller, in the controller i set up some JSON data which can't be mapped to a Model. Now i want to pass the JSON to a HTML page. public static Result ...
0
votes
1answer
270 views

POJO to JSON in Play framework

Trying to get Play 2.0 to return JSON from a POJO. But I recieve the error The method toJson(Writes<A>) in the type Json is not applicable for the arguments (Product) And my code is: public ...
0
votes
1answer
139 views

Json Deserializer for Anorm

First of all, Im pretty new to Play 2 Scala. so please forgive me if this is a stupid question. Im trying to write a convert my model object to / from Json. As per this blog ...
0
votes
1answer
52 views

Json API - Looking up deeper

I have the following piece of code: (json \ field.name).as[Int] The problem is, the code seems to look only into the 1st "layer" of a json document, giving me an error when the JsObject is wrapped ...
1
vote
0answers
140 views

JSON parsing with Play: why is a list being parsed this way?

Here is a JSON list I want to process: scala> jsonStructure \ "response" \ "docs" res4: play.api.libs.json.JsValue = [{"title":"the very first document"},{"title":"on brick walls"}] I tried ...
2
votes
2answers
768 views

How to serialize/deserialize case classes to/from Json in Play 2.1

I'm trying to serialize/deserialize some case classes to/from Json... and I've troubles when dealing with case classes with just one field (I'm using Play 2.1): import play.api.libs.json._ import ...
0
votes
2answers
134 views

Play2 and Scala (Jerkson) - List of JsObjects - how to convert to a Json object

I can't see the answer to this - is there an easy way to do this? I want to take a list of some object x and turn it into a single json object without any hacky code? I was doing some ugly stuff but ...
1
vote
1answer
103 views

Play action not responding to json posted

I'm new to play and I am trying to post form data to my Play Action using JQuery. However, I'm getting "expected json" response from Action. I check the HTTP Headers to ensure that the data is being ...
0
votes
1answer
147 views

data aggregation and for loop in play+scala

I'm very new to play! and scala and I'm trying to parse an array composed of json objects. I need to go through the array, count the number of specific occurrences in every object, add them up and ...
1
vote
0answers
165 views

Action composition in Play framework with Java

I'm developing a security implementation for Play with composition of actions. For security reasons sent an access token in the JSON request payload, not in the header of the request. What I do is, ...
3
votes
1answer
149 views

How to replace a JSON value in Play

How do I replace a value in a JSON value in Play? Code to illustrate: def newReport() = Action(parse.json) { request => var json = request.body if((json \ "customerId").as[Int] == -1){ ...
3
votes
2answers
82 views

How to prefix all JSON responces in play2 to prevent JSONP escalation via valnurable requests

I want to prefix all my JSON responses with a sequence of quotes like ")]}',\n", to prevent JSONP escalation vulnerabilities. How it can be done in play2 framework ? I've set my bodyparsers to JSON ...
0
votes
0answers
197 views

Sending an ajax request with an array rendered by Json in Play Framework

I have several problems with sending an ajax request with an array rendered by Json in Play Framework. At first, look at my code. $('#changeCategory').click(function(){ var categoryOrder = ...
1
vote
2answers
996 views

Converting Dynamic ArrayList to Json

I want to convert an array list to json string of a specific format. I get all the users emails in an array list and want to convert it into the following format of JSON. [ ...
0
votes
1answer
209 views

Using Json in controller class of Play framework

When I used json in my controller class of Play! framework, I experienced something that I didn't know why. I had two ajax calls so my controller class had two corresponding method like below: ...
0
votes
2answers
107 views

How do you grab an element in a JSON tree without an explicit name in Play 2.0?

I've been working through parsing .json files in a Play 2.0 project and there is one thing I can't figure out. Here is a snippet from the online docs: { "users":[ { "name": "Bob", ...
0
votes
1answer
189 views

Playframework 2.0.X scala - How to implement multiple json reads/writes for an object?

Let's assume that have a json object Test. It has two formats : { "name": "Test", "id": "41" } and { "object": { "name": "Test", "id": "41" } } I created ...
1
vote
1answer
517 views

How to read and write Anorm object with the new JSON API in Play Framework 2.1-RC2?

I'm trying to migrate my Play 2.0.x application to Play 2.1-RC2 and stumbled upon the following problem. In my app I have a case class that looks like this: case class Player( playerId: Pk[Long], ...
1
vote
1answer
419 views

Play 2.1-RC2: Read keys from JSON

I try to migrate my web application from Play 2.0.4 to Play 2.1-RC2. I have JSON data with a list of unknown keys (key1, key2) like this: {description: "Blah", tags: [ key1: ["value1", ...
0
votes
0answers
96 views

Convert Lift MongoRecord to Json using Play 2 Api

I am trying to convert Lift MongoRecord to Play2 Json implementing a Writes[Customer] implicit val creatureWrites = new Writes[Customer] { def writes(c: Customer): JsValue = { val seq: ...
0
votes
1answer
685 views

Play 2.1-RC2: Converting JsValue to Scala Value

I am a play beginner and try to migrate my web application from Play 2.0.4 to the new shiny Play 2.1-RC2. My code doesn't compile because of the new JSON handling. I have read Mandubians Blog, the ...
1
vote
1answer
105 views

JSON conditional writes in Scala

Using Play! 2.1 Json library, is there a way to write a field to json only if a certain condition is met? For example: case class Foo(id: Int, name: String) I'd like to define a Writes that only ...
0
votes
1answer
58 views

How to apply delta changes of JSON into original object in Jackson / Play 2.0?

The backend receives modification to existing object as a PUT request. The body contains only the changed fields. What would be the best way to apply changes in to the original Java object? Edit: ...
1
vote
2answers
434 views

Serialize objects with Play Scala api and Json

I try to serialize my models in a play 2.0 application with Scala to Json. This is how my code looks like: package models import play.api.libs.json._ case class Task(id: Long, label: String, date: ...
1
vote
1answer
102 views

JQuery iteration over JSONs Map of lists generated via Scala Play 2.0

Given the following Scala in my Play Controller (reduced for the sake of brevity): object Sample { def apply(someArgToBeUsedLater: String) = { val success = Map("foo" -> ...
2
votes
1answer
281 views

Stepping into JSON Arrays in Play Framework

I am trying to parse through some json in the play framework from a remote http response. I am trying to get into results[0]->locations[0]->latLng->lat. I am using playframework 2.0 with scala. Below ...
1
vote
2answers
384 views

FlexJSON failing to deserialize Date

I'm working with FlexJSON and am having trouble parsing a Date object from an int. I'm trying to use the JSONDeserializer like so: String json = decryptJson(new String(personalInformationData)); ...
0
votes
1answer
222 views

serialize list<object> with manytoone & onetomay relational to json

I have class Menu,it's a self to self with manytoone and onetomany relational. package models; import java.util.*; import javax.persistence.*; import play.db.ebean.*; import play.data.format.*; ...
3
votes
3answers
2k views

Rendering JSON with Play! and Scala

I have a simple question regarding rendering JSON object from a Scala class. Why do I have to implemet deserializer ( read, write ). I have the following case class: case class ...
3
votes
2answers
511 views

Handling JSON requests in Play Framework 2.0 Scala

I am trying to send data from the client to the server using a JSON request. The body of the JSON request looks like this: { "upload": { "ok":"some message", ...
2
votes
1answer
149 views

Posting JSON with AJAX request in play2

i'm using play framework 2.0.4 i have a route : POST /addMail controllers.Application.addMail() In my controller Application i define the addMail method : public static ...
2
votes
1answer
342 views

play framework 2 with scala: pretify json

I'm using the play framework 2 native support for json (http://www.playframework.org/documentation/latest/ScalaJson) and I have a JsValue that I'm converting to string to save it to a text file, like ...

1 2