JSON (JavaScript Object Notation) is a data exchange format and is often used with JavaScript, Ajax, and RESTful web services.

learn more… | top users | synonyms (1)

7
votes
0answers
842 views

Dynatree ignores select property

I am using the dynatree plugin to display a checkbox tree, using multi-select mode (mode 3). When the tree is initialized using ajax (no lazy loading), it seems to forget that some nodes are loaded ...
5
votes
0answers
317 views

jquery mobile collapsible and galaxy tab 10.1 json response gives random responses

Fairly new to jquery mobile and new to parsing json - have done much research to no avail. Have tried 10sec delay in settimeout function My app works correctly on my samsung galaxy s2 but on my ...
4
votes
0answers
216 views

Strange issue when adding a service reference to a project that has the Json.NET library referenced

The project is your standard run-of-the-mill MVC 3 application that communicates with an in house WCF service. Our MVC application references a few external libraries, including the popular JSON.NET ...
4
votes
0answers
324 views

Android - Https connection to a .NET WCF Service gives SSLException: “No peer certificate”

[SOLVED] - See below I've been getting an exception when trying to get some JSON data from my REST enabled WCF Service, in Android 2.2 over a HTTPS connection . I then noticed something very strange ...
4
votes
0answers
508 views

Preventing hotlinking on Amazon S3 with CloudFront

I tried preventing hotlinking media files on Amazon S3 with this bucket policy. { "Version": "2008-10-17", "Id": "my-id", "Statement": [ { "Sid": "Allow get requests to specific ...
4
votes
0answers
1k views

RestyGWT vs RequestFactory

I'm thinking on migrating my current service layer based on GWT-RPC to something else. It is about 10 service interfaces with 5 methods each, and involving about 20 different domain entities, so you ...
3
votes
0answers
210 views

NSJSONSerialization serialization of a string containing forward slashes / and HTML is escaped incorrectly

I am trying to convert some simple HTML into a string value in a JSON object and I'm having trouble getting the string encoding to not escape the string in NSJSONSerialization. Example... I have a ...
3
votes
0answers
92 views

Owncloud json api

Does anyone know how to integrate with owncloud via json? I'm coming for the point that if we implement owncloud in my organization, i will like to have the ability to build features into the ios ...
3
votes
0answers
190 views

PUT requests in rails don't update the status on respond_with calls

Given the following controller in rails: class AccountsController < ApplicationController respond_to :json, :xml def update @account = Account.where(uuid: params[:id]).first ...
3
votes
0answers
142 views

Disable Jackson mapper for a particular annotation

With Jackson, it's easy to disable all annotations for a given ObjectMapper. Is there a way to only disable one given annotation? // disable all ObjectMapper mapper = new ObjectMapper() ...
3
votes
0answers
95 views

Googlechart error on a linechart with tooltip values coming via JSON

I have a google chart and want to add a custom tooltip. I found some great answers like this this site and set about doing this with roles. I also found this link about it and it looked like the best ...
3
votes
0answers
155 views

searching.wordpress via json

I need to get author id via wordpress json api. e.g : http://eng.search.wordpress.com/?q=apple&page=2&s=date&f=json The output is : [{"title":"Rumor: Ya se habla del ...
3
votes
0answers
183 views

Nested list with JavaScriptSerializer

I'm trying to produce the following JSON structure with JavaScriptSerializer in Net 3.5: { "chart": "pie", "series": [ { "name": "Browsers", "data": [ ...
3
votes
0answers
319 views

Creating a multidimensional-array in JSON from CSV files

I am trying to create a JSON file from multiple CSV files. The files would be named like bugs.csv and executions.csv. Example of the bugs.csv files: month,,1,2,3,4 app1,ownerA,42,34,38,12 ...
3
votes
0answers
475 views

Tumblr Oauth returning 401 on API v2

I'm trying to set up an automatic tumblr post every time I add something new to my website. I'm using the following code: $conskey = "APIKEY"; $conssec = "APISECRET"; $tumblr_blog = ...
3
votes
0answers
261 views

Multiple parameters passed in WCF client don't work (even when WebMessageBodyStyle is Wrapped)

Hi fellow StackOverflowers, I've got a WCF service wrtten C# that i can succesfully consume from things like jquery. I want to be able to consume it by adding a web service reference in C# and ...
3
votes
0answers
346 views

Deserialization JSON to objects with interface fields using SuperObject

I'm having trouble deserializing an object containing a interface field from json using SuperObject (serialization works fine) on DXE2. Consider the following: ITest = interface(IInterface) ...
3
votes
0answers
170 views

Is it possible to use one class for both ORMLite and Jackson JSON?

I want to use ORMLite to query data from SQLite and store it in Java class, then convert this class to JSON using Jackson JSON library and send it through HTTP. I also want to do opposite - get data ...
3
votes
0answers
505 views

Print Jersey JSON in Unit Testing

Is there any plain way to print a JAXB annotated instance in JSON format (as exactly jersey will print in AS) while running unit testing without any embedded server launched? I can run and see in ...
3
votes
0answers
275 views

how to omit @XmlRootElement from JSON output with Jersey?

I'm trying to produce JSON from a list of simple objects. It works, but my output is wrapped with the classname: {"classname":[{"name":"John Doe","title":"manager"} .....]} What I would like to ...
3
votes
0answers
561 views

Compatibility of the “Origin” http header for enforcing restrictions

I am building a RESTful JSON api and I am concerned about json data theft and csrf. A good solution that was created to address both of these problems is the Origin http header. However I am ...
3
votes
0answers
490 views

iOS Client: “Caching” Server-side data to persistent storage

I'm building an iOS client app to interface with an existing backend architecture. To reduce latency, API calls and payloads, it'd be nice to "cache" model data client-side for faster indexing and ...
3
votes
0answers
414 views

WCF + Jquery/json consume client security

I'm tired of WCF to say the least. I need a way to use Jquery ajax to call WCF methods in a cross domain environment, so it needs to be secure as well. very hard to find a solution that use jquery ...
3
votes
0answers
971 views

F1 Real time Data feeds

I need to write an app that gets data input from real time Foruma One racing data feed. The only feed I've come across till now is the official one so called "Live timing", the only problem is that ...
3
votes
0answers
2k views

serializing and deserializing .net 4.0 ExpandoObject

I get the error: System.InvalidCastException : Unable to cast object of type 'System.Dynamic.ExpandoObject' to type 'System.Collections.IDictionary'. Normally, I'd derive ExpandoObject and then ...
2
votes
0answers
8 views

Shell Variable in config json

Is there anyway to parse shell variable(or any other variable in json file. suppose, my home directory is $HOME=/Users/ajay, I would like to do something like { "var1" : "value1", ...
2
votes
0answers
24 views

JSON response from WCF escapes name values

I am trying to return a dictionary from a WCF REST service as a JSON object. I want the format to be {"key": "value"} so I have created my own class as described here and here. The service method ...
2
votes
0answers
63 views

JsonReader Exception in Android while parsing large josn data

I am getting an exception when using the JsonReader class in android while parsing a large json data. Exception: java.lang.IllegalStateException: Expected a name but was STRING The json data is ...
2
votes
0answers
30 views

Proguard obfuscation results in java.lang.IllegalArgumentException: class declares multiple JSON fields named “a”

Upon starting up my app logs two errors, but only after obfuscation. Without obfuscation there are no errors. Unless I'm being misled, the errors are like: class Property declares multiple JSON ...
2
votes
0answers
44 views

Is it possible to make this search function remove the answers when a new search is submitted?

Is it possible to make this search function remove the previous answers every time a new search is submitted? http://www.urlgone.com/acfdd9/ (Preview does not seem to work, try running the files ...
2
votes
0answers
17 views

Using 'Ajax updated' dataset with crossfilter

I have a really large dataset (about 500 000 records...) about the CO2 emission on London that I want to display with maps and charts using crossfilter. For reasons of performance, I want to do ...
2
votes
0answers
47 views

json not responding from the model the way I'd like to think - autocomplete select2 with rails

So, I just discovered select2. Awesome. Now I'm trying to figure out how to use it, server side with ajax / json. I'll get right to the nitty gritty. json returns a value, but the searchbox ...
2
votes
0answers
97 views

AJAX and CSRF in Spring

I'm sending a CSRF token in an HTTP request header and in a POST hidden field to guard against CSRF attacks something like the following. var request; var timeout; function insert(callback) { ...
2
votes
0answers
34 views

Why “<” character got replaced with unicode character in JSON response

What is the reason behind replacement of "<" character with unicode character in FaceBook's Json API response? security?? What kinda attack is possible, If the "<" character presents in the ...
2
votes
0answers
123 views

Serialize a collection of POJOs objects to JSON struct from Morphia / MongoDB in Java

I am using Morphia (0.99) for mapping POJO to MongoDB (2.0.6). Now I want to return a collection / list as a JSON struct from my data-store with including IDs for each object to be sent with jQuery to ...
2
votes
0answers
48 views

how to retrieve the list of contacts in android

my purpose to retrieve the list of contacts (name, number) is recorded in a json object, to send via web service to the server then I found the code to visit contacts, and it is good, I test this ...
2
votes
0answers
66 views

Disappearing SubDetail TObjectList when JSonToObject

this is my first question. Sorry my english. I have a classes like this: TSFis_S = class(TPersistent) private _SFis_MID : Integer; public property SFis_MID : Integer read _SFis_MID write ...
2
votes
0answers
81 views

How to exclude properties when requesting from struts-rest-plugin?

I am working on struts-rest-plugin index method to return list of my Fruit objects in xml or json format. It works really well. Model class: class Fruit { private String name; private ...
2
votes
0answers
65 views

Is the result of this base64 object encrypted?

I am trying to write my own interface to a webchat service. The only problem is, I can't make sense of the returns from the server. The communication towards the server is easily decoded, but I wonder ...
2
votes
0answers
158 views

json.stringify not working on IE8 and below, json2.js used

Below is my code. It works great on IE8 and above, also on chrome and FF... earlier i was getting json undefined i used json2.js now i'm getting alert "something went wrong pls try again"... why ...
2
votes
0answers
189 views

refresh Json Partial View - MVC 3

I would like to refresh Json Partial View. I am trying use this: $('#example123').load('@Url.Action("Rejestracja", "Logowanie")'); but doesn't work correct. $.ajax({ url: ...
2
votes
0answers
71 views

JSON String to ListView not happening

I have a JSON String, I am trying to parse and then into ListView, my code does not throw any errors but it is not working either, I am unable to determine where I might be going wrong. Following is ...
2
votes
0answers
127 views

JSON Unmarshalling of xs:string

Problem: We are facing strange problems when marshalling JSONs objects including the following content {"@type":"xs:string"}. Marshalling of this object results in a NullPointerException. See the ...
2
votes
0answers
172 views

property rootNode in struts2-jquery-tree-plugin doesn't run

I'm testing struts2 jquery-grid-tree plugin but when I render a tree whose info come from an action in JSON format, I have some troubles. As I want more info from my action for another purposes, my ...
2
votes
0answers
40 views

RuntimeBinderException when parsing json with Newtonsoft.Json

I'm trying to parse simple json to dynamic object in Windows phone 8. I'm using Newtonsoft.JSON library with this code: dynamic response = JObject.Parse(responseText); string streamRequestUrl = ...
2
votes
0answers
77 views

KINETIC.JS loading image from stored json

I was able to load multiple image at once from a dummy json string that I created with json = stage.toJSON();. Offline this works flawlessly and it even remembers the position that I dragged it too. ...
2
votes
0answers
120 views

Struts2 Json plugin response customization

I have some bean with properties. And json response is e.g. bean:[{"id":"1", "name":"Jack", "lastname":"Poter"}] Is there any ways in struts-json-plugin to convert response like this? ...
2
votes
0answers
80 views

Add more attributes to json entries

I have a json file based on data gathered from facebook, specifically likes. Now, the way I am doing this is basic: $likes = idx($facebook->api('/me/likes?limit=5000'), 'data', array()); ...
2
votes
0answers
114 views

Controlling serialization format of a KeyValuePair<DateTime, long>'s key

I am attempting to get the Newtonsoft JSON Library, bundled with WebAPI in .NET 4.5, to properly serialize the following class: public class SomeClass { [Required] public DateTime ...
2
votes
0answers
100 views

CF9 & Solr: CFSEARCH vs CFHTTP

I've been reading posts here for a long time, but only just now created an account so I could post. I am working in a CF Server 9 environment with Solr collections. I have seven of them that I'm ...

1 2 3 4 5 204