json

Javascript looping through a JSON string

Hi there, Ok, a little new to JSON format.. I have the following JSON string returned from an AJAX call, which firebug actually displays in a tree quite nicely.. however I can't seem to be able to work out how to loop through the content... {"data":{"item":[{"@id":"7","fromMemberID":"7","FromMember":"david","notificationsType":"event"...

Approaches for embedding script required data in markup

What approaches can be used to embed additional meta data in HTML markup, where that data is required by client side javascript. Some simple examples of what I mean: A list of contacts which when clicked shows their position in a map. ie: how to associate a lat/long with each contact. A set of images which when clicked pops up a drag...

Parse Json to Java bean same field different type

Hi all, I have a bean structure to parse JSon files. I am facing one problem, to the same fild, I find two different data types in two different JSon files. String array "Keywords": ["90NSB12596","Slam","Dunk","FullBodyIsolated","Action"], String "Keywords": "Basketball|NBA", How could I different theese two files? My bean ...

Objective-C SBJSON: order of json array

Hi! I have an iPhone application which gets a json string from a server and parses it. It contains some data and, eg. an array of comments. But I've noticed that the order of the json array is not preserved when I parse it like this: // parse response as json SBJSON *jsonParser = [SBJSON new]; NSDictionary *jsonData = [jsonParser ob...

Custom headers with $.ajax type jsnop or json

I have a problem with sending some custom headers to with a jQuery ajax JSON (or JSONP) request. Code looks like this: $.ajax({ beforeSend: function(xhr) { xhr.setRequestHeader("X-VER", VER); xhr.setRequestHeader("X-TIMESTAMP", now); }, type: 'GET', data: null, url: site_uri, dataTy...

Use json body in Soap envelope when sending to WCF service

Hello, I need to interface with a soap header of autentication with a json body. I Created the contract like this: [ServiceContract(Namespace = "http://tourico.com/webservices/hotelv3")] public interface IHotelMobileFlow { [OperationContract, WebInvoke( BodyStyle = WebMessageBodyStyle.Wrapped, RequestFormat = WebMessa...

Array output for a single value

The array: Array ( [2010091907] => Array ( [home] => Array ( [score] => Array ( [1] => 7 [2] => 17 [3] => 10 [4] => 7 [5] => 0 [T] => ...

How can I load up jstree with inline Json?

Here's the jstree code: $("#tree").jstree({ "json_data": { "data": treedata, "progressive_render": true }, "plugins": ["themes", "json_data"] }); where treedata contains some Json. Unfortunately, nothing's rendering. The examples I've found are for ajax-loading the Json...

Creating a Groovy Portlet

Hello - I am getting started researching / creating a groovy portlet that will connect to a REST based ESB service that returns JSON; I will also need to pass the username in the headers. I was wondering if there are any examples out there on how to create the portlet and set the headers? I am new to groovy and from what I understand th...

How to serialize a custom exception to json in c#

I have a c# web service that I call using jquery ajax. It works fine except when a custom exception is throw inside the web method. For some reason, the XmlHttpResponse objects responseText only has the base Exception class's properties. So I end up with a json object with the following properties: "ExceptionType", "Message", and "Sta...

Gson and deserializing an array of objects with arrays in it.

I am trying to use Gson to deserialize a json string returned from my webservice The structure would be returned as TypeDTO[]. where TypeDTO is like int id; String name; ArrayList<ItemDTO> items[] and ItemDTO is like int id; String name; Boolean valid; When I call the code as follows Gson gson = new Gson(); TypeDTO[] mytypes =...

Why will this DateParser not work in Safari?

I render this JSON object: [{"created_at":"2010-09-21T20:41:28Z","subject":"hello world"}] Then I use this date parser to parse it (see below), but it only works in Chrome 6.0.4, Firefox 3.6.8, but NOT Safari 5.0.2 --- I get NaN errors. What gives? Date.prototype.toRelativeTime = function(now_threshold) { var delta = new Date() - t...

How can I get a feed of NFL players and their positions and teams?

I saw a post about player stats and data. All I want is a list of NFL players. Is there an easy way to find this data for free? Will I have to scrape it off a website or do it by hand? If scraping is the route to take, can someone offer documentation, or library to help do this with php? ...

Problem on JSON date Parsing

Hi All, I have a JSON source that sends its data that I display on my web page. Problem is, the Date part that it is returning is some sort of a javascript object. Please look at the sample response. dteInstallDate date 16 day 4 hours 0 minutes 0 month 8 nanos 0 seconds 0 time 1284566400000 timezoneOffset -4...

how to extract from dispatch.json.JsObject

What do i need to do to extract the value for friends_count. i noticed that screen_name are already define in the Status object and case class. Do still require to extends Js or JsObject different object TweetDetails extends Js { val friends_count = 'friends_count ? num } and then pattern match it against each json object in the list...

Struts2 - if result type json and method defined then all methods get invoked

Idefined my struts xml as follows: "<"action name="index" method="execute" class="hr.credo.web.struts2.action.Index"> <"result name="success" >/index.jsp <"/action> <"action name="hello" class="hr.credo.web.struts2.action.Index" method="JSON"> <"result name="success" type="json" > <"/action> and in my action class i have an execute...

Serializing dictionary in Django to use with Dajaxice or ajax

I'm trying to write a monitor site so the temperature for certain devices gets updated every x seconds. So far I have a function that returns a dictionary using dajaxice. This is my ajax.py: def temperature(request): temperature_dict = {} for filter_device in TemperatureDevices.objects.all(): get_objects = TemperatureData.object...

Acessing json using proxy

Hi freinds, I am rails developer, i need to fetch json in the remote server but it is not working form me .If it is local means working.How to set the proxy in jquery or rails .I am getting proxy only for php . Any suggestions?????? ...

complex JSON schema .. help ..

"responseCode": String "responseMessage": String "responseBody": { "conversations": [ { "conversationId": String, "state": String, "conversationType": String, "mediaType": Enum, "startDate":Integer, "duration": Integer, "tags":[{ "tagName":String, "tagType":String, "tagCreateDate":Integer, "tagOffset":Integer }], ]} This s...

Halo reach stats api?

Hi guys, Can someone please give me an example of how to access the Halo: Reach stats API using jquery ajax? Here is an exert: GetGameHistory(System.String, System.String, System.String, System.String) This function is used to browse through a player's history of games. Parameters identifier: Your application's ide...