json

Why writer for media type application/json missing

Basically I have a restful service (post) that consumes(application/json) and produces (application/json). The single param for this service is an annotated java object. I am using org.jboss.resteasy.client.ClientRequest to send the request to the service. However, I am getting this exception in the client end and the exception: ...

How to gzip ajax requests with Struts 2?

How to gzip an ajax response with Struts2? I tried to create a filter but it didn't work. At client-side I'm using jQuery and the ajax response I'm expecting is in json. This is the code I used on server: ByteArrayOutputStream out = new ByteArrayOutputStream(); GZIPOutputStream gz = new GZIPOutputStream(out); gz.write(json....

json response into an array

Hi guys, What's the best way to get a json response into an array that I can use in the below example? This is my function that calls triggers the ajax call: function getMaps(){ mapID = "aus"; mapImg = 'map_australia.jpg'; $.ajax({ type: "GET", url: "getMap.asp", data: "id=" + mapID, content...

JavaScript/jQuery - "Array" of Arguments - Possible?

Hi Guys, Doing some client-side JavaScript development, which requires me to call a client-side API which only accepts one parameter at a time (cough, cough, facebook). Basically i need to call an API method twice: someFBApi.requestPerms('email') someFBApi.requestPerms('publish_stream') Now, i have a wrapper function for this call w...

json object submitted as application/x-www-form-urlencoded to mvc controller

I have an array: var list = JSON.parse('[{"id" = "8", "description" = "test"},{"id" = "10", "description" = "test_2"}]'); I'm using this together other data to post using jQuery's ajax method: var data = { start: 123403987, list }; Why is the values submitted as: start=123403987&list[0][id]=8&list[0][description] = "test"... Whe...

how do implemant a remote login using json?

i have an api for users to log in, http://api.example.com/user_login, this is what i need to do: send the entered password and username to the api and request verifaction using json get a response using json, if successfull create a cookie and redirect to secured area! sorry im a weak javascript program! thanks ...

how I can traverse this JSON response result

jsonRes: ( ( 8, "../images/DealExtreme/sku_37281_1_small.jpg", "Genuine ANV DVD+R DL 2.4X 8.5GB 240-Min DVD Writable (10-Disc Spindle)", "13.44" ), ( 9, "../images/DealExtreme/sku_4483_1_small.jpg", "Mini DVD-R 10-Pack Spindle 1.4GB/30min 1~8X", "8.56" ), ( ...

json parsing error?

can we use json with Blackberry jde 4.5 pls help me ...

How to select/query effectively 70,000 json data?

I'm now developing javascript library which consists 70,000 more villages in Indonesia (accessible at http://bisbak.com/regina/) and I build a data browser widget. Everything is fine in Safari and Firefox. But when using Chrome, it always takes long when I happen selecting a district (which automatically loads villages). The code to retr...

How to accept JSON into MVC2 action method as parameter and have it deserialize automatically?

Background: I have a MVC2 project and am using jQuery 1.4.2. I have a .NET class that I put into a view using a JsonResult. The page then uses jQuery to do stuff which will result in properties of the object put on the page by item (2) above. When a certain page element is clicked jQuery $.post's the JSON.stringify(myObj) back to actio...

Drupal create a page that outputs JSON

Hello, I would like to ask can one create a page that outputs JSON data as a response to Jquery Ajax request? In a non-drupal way, I would just create a php file, for example mypage.php and then I would use http://mysite.com/mypage.php?foo=bar as the URL for my AJAX request. This page will then output JSON data using json_encode(). Ho...

How to return a Date value from JSON to Google Visualization API

is there a way to retrieve date value from JSON in Google Visualization API? Here is the snipplet for playground please copy the code below into it When you run the code you won't have anything in result. you should remove the quotes from the date value I marked with comment in order to retrieve result. function drawVisualization() { ...

Using JPA and JSON serialization

Hello, I would like to have a JPA Entity that has a GSon Object as a field/attribute. For instance: @Entity public class MyEntity { private JsonObject myObject; public JsonObject getObject() { return myObject; } public void setObject(JsonObject obj) { myObject = obj; } } I'm not familiar with ...

Dead simple JSON web service question

I have a need for persistence of client state and am wondering what the problems would be with this approach. I want to provide a URL to a client that uses HTTPS and basic authentication, they would just PUT and GET a Blob of text containing JSON. On the server side, I can parse it when PUTting to see if it's semantically correct before...

Why isn't there a remove(int position) method in Android's JSONArray?

I started building an Android app that uses a flat file for storage. The app doesn't store more than six records, and I'm familiar with JSON, so I just write out a JSONArray to the file. I just discovered today, though, that the Android JSON API doesn't include a remove() option. Huh? Do I have to dump the array into another collecti...

XmlTextReader for json?

Is there something that is similar to XmlTextReader in terms of performance, but using JSON instead? I have the choice between parsing data in XML or parsing the same data in JSON. I'd like to use JSON because I figure I could save a bit of bandwidth but I'd like to keep the performance of XmlTextReader. In other words, how do I stream...

How can I get ColdFusion methods to return numeric values as strings in JSON format?

ColdFusion 8 This is as simple pseudo-code as there can be: <cffunction name="badJSON" access="remote" output="true" returntype="string" returnformat="JSON"> <cfreturn "06762" /> </cffunction> Results in: 6762.0 It should result in: 06762 Is there a way to get JSON to not convert my value to numeric? I know I can use WDDX,...

CherryPy How to respond with JSON?

In my controller/request-handler, I have the following code: def monkey(self, **kwargs): cherrypy.response.headers['Content-Type'] = "application/json" message = {"message" : "Hello World!" } return message monkey.exposed = True And, in my view, I've got this javascript: $(function() { var body = document.getElementsByTagNa...

JSON parse data problem.

Hi.. I used json framework to get data from sever database in to iphone. json arrays shows data in console. My code is: NSURL *url = [NSURL URLWithString:@"http://xxx.xxx.x.x/fetchsettings.php"]; // Modify this to match your url. NSString *jsonreturn = [[NSString alloc] initWithContentsOfURL:url]; // Pulls the URL NSLog(jsonreturn); // ...

Why browser's address bar is unchanged when using AJAX ?

I am using AJAX/JSON combination in Zend Framework. Whenever I click any link in my application, AJAX request is called and content is loaded successfully in DIVs But the address bar is unchanged. How to change address bar according to current active action. Here is My Working Code: When I use http://practice.dev/ my index.phtml file...