json

Json to XML tool?

Hi all, I have one json file but an application that I use imports data only from xml files. So does somebody know of a tool that converts json files to xml? I've been looking for such tool for a few hours and could only find tools that create json files from xml. Thanks! ...

jquery find if its json or xml

i want to know if the response is the json or xml, how can i find that out using jquery? my current code is following, but its giving error, if response is json. var is_xml = ($('status_code', XMLHttpRequest.responseText)) ? true : false; error is: Selector expected. Expected ',' or '{' but found '"}}"'. ...

Android: HTTP/JSON communication within application or separate thread?

I've an application which receives and sends data (JSON) from/to a HTTP server via HTTP POST requests. There is not really any payload except of a few strings, so I'm wondering if it would make sense to build this whole HTTP communication as an Android Service or just to create a separate thread within my application? ...

Ruby XML to JSON Converter?

Is there a library to convert xml to json in ruby? ...

JSON serialization of Google App Engine models

I've been search for quite a while with no success. My project isn't using Django, is there a simple way to serialize App Engine models (google.appengine.ext.db.Model) into JSON or do I need to write my own serializer? My model class is fairly simple. For instance: class Photo(db.Model): filename = db.StringProperty() title = d...

How to make jscon_encode work with multibyte characters?

echo '<a title=' .json_encode("按时间先后进行排序") . '>test</a>'; The above will generate something like "\u6309\u65f6\u95f4\u5148\u540e\u8fdb\u884c\u6392\u5e8f" and it's a mess! ...

can browsers [especially IE6] handle big Json object

I am returning a big Json object [ 5000 records and 10 elements per record] from the controller [asp.net mvc] using Jquery and Ajaxpost. till now I was dealing with just 20 records [testing] and it is working fine. But in production there are 5000 records so i am wondering if browser can handle huge amount of data. Especially IE6. ...

Asp.Net MVC returning a Json from a string.

Funny as it can sound, I transformed my datatable data into a string which looks something like this: { blocks: [ {"fromAge" : "60","fromAmount" : "0","toAge" : "64","toAmount" : "65000","color" : "red","orderNo" : "2"}, {"fromAge" : "66","fromAmount" : "0","toAge" : "72","toAmount" : "12000","color" : "red","orderNo" : "4"}, {"fromA...

How can i post same page with ajax json

hi there. this is my ajax post code on Default.aspx's source side: $.ajax({ type: "POST", url: "Default.aspx/f_Bul, data: "{_sSKodu:'4'}", contentType: "application/json; charset=utf-8", dataType: "json", success: function(msg) { $("#" + div).html...

Best Method: Parsing CSV file and Passing back to front end using AJAX

Hello all, I have a CSV file that is uplaoded to my server where a PHP script will parse and return output to JavaScript via AJAX. The CSV file is made up of two rows. First row contains the column names and the second row contains the data. I am trying to write a script that will parse it in a form that will be usable by Javascript to...

How can i parse this json with .net ?

how can i turn this JSON to a list of objects that have two properties first "id" and second "answer" ? [["9","3"],["8","4"],["7","4"],["6","5"],["5","6"],["4","4"],["3","4"]] ...

Is there an attribute to turn off serialisation for fields in a custom object (DataContractJsonSerializer)

I am using the DataContractJsonSerializer class to serialise my objects to JSON. Is there an attribute I can use on fields in my custom objects (C#) that will turn off serialisation for that one particular field? ...

JQuery fade working in IE and not Chrome

I have looked through stack overflow and couldn't really find an answer. I have the following code that fades an item out, sends information to the server, and when it is received it fades it back in. It works great in IE. Doesn't work in chrome. The data is called on the server, but the actual fade effects aren't working. function getC...

How to send parameters on an Https POST with C#

I have asked here how to make the https post, and now that works fine. Problem now is How to send a parameter, name query, wich is a json string: {"key1":"value1", "key2":{"key21":"val21"} } What I'm doing and doesn't work is: HttpWebRequest q = (HttpWebRequest)WebRequest.Create(Host + ":" + Port); ServicePointManager.ServerCertificat...

Problems Parsing JSON from PHP

Hello all, I get a response form my server via AJAX with an array that is json_encode (php funciton). However, I am having difficulty parsing it. I can do this: alert(response); But it just gives me a bunch of text like so: [{"user_id":"Dev_V2_MEH_0910_M03_v03c_NEW_CODE_03"......"grouper_opae_algorithm":"nap_v42lp"}] Please note, ...

Validate/Scrub JSON Data

I am making a web service call and receiving a JSON formatted response. After I receive the response, I would like to display the data in a page. Before I display this data on the page I need to perform checks to make sure that certain elements are defined, and if not give them default values (example below). var scoreSummary = JSON.p...

Default is JSON in Script Manager ?

Hi, I used ScriptManager control on my asp.net page but It sends my data as Json to server, is it default ? and Can I change it with XML ? ...

Re-populate complex javascript objects from JSON

Say I have a web form that consists of a input text field, an Add button, and a Submit button. A user can add text to a div by typing some input and clicking Add, which will dynamically (using javascript) append the div with whatever they typed. Also during Add, I'm storing the text in a javascript object. After adding one or more ite...

Parsing JSON in java

I'm trying to parse JSON in android but am having trouble with accessing sub children of an object. I am trying to extract augment from the following, {"augment-list": { "time": "12:01", "channel": "channel1", "augment": [ {"id": "123", "name": "here", "x": "5", "y": "10", "orientation": "up", "content": "some stuff"}, ...

Android: How to communicate and exchange objects with a Local Service

So far I've a class for a simple local service. What I want to do is to send requests to this local service from different activies in my application. Depending on the parameters of these requests the service will connect via HttpClient to a webserver and receive a JSONObject and return it to the activity. All the HTTP communication is a...