active questions tagged json - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T10:53:41Zhttp://stackoverflow.com/feeds/tag/jsonhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1080201/jqgrid-with-ajax-binding0jqGrid with ajax binding?Rio2009-07-03T17:11:48Z2009-11-30T08:23:46Z
<p>Hi everyone,
I'm trying to implement a simple function using jqGrid, but it doesn't seem to work and I was wondering if anyone has an explanation.</p>
<p>Basically one column of jqGrid returns (through JSON)</p>
<pre><code><a href="#" id="special">Click</a>
</code></pre>
<p>Outside the column, I have a jQuery listener that is of the form</p>
<pre><code>$("#special").click(function () {
alert("hi");
});
</code></pre>
<p>Now when I have the exact same a href <em>outside</em> the column, the alert pops up. It doesn't, however, when the code is inside the grid as part of JSON. Is that to be expected?</p>
<p>Thanks.</p>
<p>FYI the JSON response is along the lines of</p>
<pre><code>\u003ca href=\"#\" id=\"special\"\u003eClick\u003c/a\u003e
</code></pre>
<p>but I doubt it's the issue because if I do</p>
<pre><code><a href="#" onclick="alert('Hi');">Click</a>
</code></pre>
<p>it works.</p>
http://stackoverflow.com/questions/1815969/yui-get-utility-to-parse-json-response0YUI "Get" utility to parse JSON response?Sean2009-11-29T16:28:41Z2009-11-30T07:17:58Z
<p>The documentation page for the YUI "Get" utility says:</p>
<blockquote>
<p>Get Utility is ideal for loading your
own scripts or CSS progressively
(lazy-loading) or for retrieving
cross-domain JSON data from sources in
which you have total trust.</p>
</blockquote>
<p>...but doesn't have any actual examples for how to do so. Their one example doesn't actually request a JSON document from a remote server, but instead a document containing actual JavaScript along with the JSON data.</p>
<p>I'm just interested in the JSON response from the Google Maps API HTTP (REST) interface. Because I can't do cross-site scripting with the "Connect" utility, I am trying the "Get" utility. But merely inserting some JSON data into the page isn't going to do anything, of course. I have to assign it to a variable. But how?</p>
<p>Also, just inserting JSON data into the page makes Firefox complain that there's a JavaScript error. And understandably! Plain ol' JSON data isn't going to parse as valid JavaScript.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1815395/passing-lists-as-a-querystring-should-i-use-json0Passing Lists as a QueryString - should I use JSONreach4thelasers2009-11-29T12:31:01Z2009-11-30T01:15:59Z
<p>Lets say I've got an online dating site, users can filter the user list based on various criteria, Height, Age, BodyType, Ethnic Origin....</p>
<p>I want to pass the criteria to the pager, via QueryString. Height and Age are easy as these are ranges, and I would use </p>
<pre><code>MinHeight=3&MaxHeight=12&MinAge=21&MaxAge=30
</code></pre>
<p>However other Criteria like BodyType and Ethnic orgins are Lists of ForeignKey values e.g:</p>
<pre><code>Ethnitity:2,3,5
</code></pre>
<p>What is the best way to pass these as a QueryString? Should I convert it to a Json string eg:</p>
<pre><code>www.site.com&filter={\"minage\":0,\"maxage\":0,\"minheight\":0,\"maxheight\":0,\"bodytypelist\":[1,2,3],"ethnicitylist\":[2,3,4],\"eyecolorlist\":[],\"haircolorlist\":[],\"orientationlist\":[]}
</code></pre>
<p>Or is this not-valid/overkill/too complex?</p>
<p>Maybe something like this:</p>
<pre><code>MinHeight=3&MaxHeight=12&bodytypes=1,2,3&
</code></pre>
<p>and parse the list values by splitting the ','?????</p>
<p>I don't know the ups and downs of all these ideas. So how would you pass a list of values in a querystring?</p>
http://stackoverflow.com/questions/1817145/html-string-not-being-parsed-with-json-parse0html string not being parsed with JSON.parsemickyjtwin2009-11-29T23:32:28Z2009-11-29T23:38:26Z
<p>I am using JSON.parse for a list of products. I am running a regex to replace characters that were breaking the parse:</p>
<pre><code>[\n|\t|\r]
</code></pre>
<p>It seems that I am still having issues when the following content is being copied into html.</p>
<pre><code><p><span class="Apple-style-span" style="color: rgb(0, 0, 0); font-family: arial, Verdana, Helvetica; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; ">A soul mate for your aluminum group lounge chair. Rest your weary feet on this matching ottoman - same suspension design, same light weight, same elegant scale as the lounge chair. Polished aluminum 4-star base, black pedestal. Glides.</span></p>
</code></pre>
<p>Not sure which part is breaking the parser, and what I can do to fix it, short of removing the style and span tags.</p>
http://stackoverflow.com/questions/1816589/trying-to-parse-twitter-trends1Trying to parse twitter trendstimothy52162009-11-29T19:59:55Z2009-11-29T20:13:14Z
<p>Im trying to parse twitter trends but i keep getting an error at "as_of". anyone know why this is happening?</p>
http://stackoverflow.com/questions/1812821/how-do-i-maintain-the-state-of-my-html-controls-on-postback-with-jquery-and-json1How do i maintain the state of my Html Controls on postback with JQuery and JSON?Colour Blend2009-11-28T15:38:44Z2009-11-29T12:52:22Z
<p>I have a form with a collection of Html and ASP Server Controls. Im using JSON to preload some drop-down lists.</p>
<p>I want to maintain the states of these drop-down lists on postback. Im quite new to JSON, can anyone help? </p>
http://stackoverflow.com/questions/1814913/browser-response-size-limit0Browser response size limit.unknown (google)2009-11-29T07:29:42Z2009-11-29T09:58:40Z
<p>Hi all,</p>
<p>I am calling my cross domain web-service through a getJson() call from jQuery. As my response object size is pretty big, i have used the maximum JSon size for my web-service. I have checked getJson() is giving proper response object. But still my callback function is not called. Firebug is saying that it's(firefox) response size is exceeded. </p>
<p>Can anybody tell me whats the maximum browser response size limit that the standard browser e.g (firefox, ie) handle and how to deal with the problem?</p>
<p>Here is the code snippet for the same.</p>
<pre><code> //Wrapper call to the actual getJson call
function getResponse() {
var localService = new getServiceProxy("SearchData.asmx");
localService.invoke("Search", "", "successcall");
}
//getJson call
function getServiceProxy(serviceUrl) {
var _I = this;
this.serviceUrl = serviceUrl;
// *** Call a wrapped object
this.invoke = function(method, data, callback, error) {
if (data == "") {
var url = _I.serviceUrl + "/" + method + "?output=json&callback=?";
}
else {
url = _I.serviceUrl + "/" + method + "?" + data + "&output=json&callback=?";
}
$.getJSON(url, function(arg) {
var evalstr = callback + "(" + JSON.stringify(arg) + ");";
eval(evalstr);
});
}
}
//success callback function
function successcall(multiSearchResponse) {
//use the response.
}
</code></pre>
<p>any help will be highly appreciated.</p>
<p>Thanks Subrat.</p>
http://stackoverflow.com/questions/1056239/how-to-read-json-from-ruby-on-rails-with-extjs2How to read JSON from Ruby on Rails with ExtJSMike Trpcic2009-06-29T01:36:34Z2009-11-29T06:01:14Z
<p>I have some existing projects that were built upon a deprecated PHP framework, and I'm hoping to move them over to Ruby on Rails with minimal effort. My main problem right now is the format that the JSON is coming back in. My frontend code (all ExtJS) is expecting JSON in the format:</p>
<pre><code>{
"result": [
[id: 1, name: "mike"],
[id: 2, name: "john"],
[id: 3, name: "gary"]
]
}
</code></pre>
<p>But the default return from Ruby on Rails is as follows:</p>
<pre><code>{
"result": [
{"record" : {id: 1, name: "mike"}},
{"record" : {id: 2, name: "john"}},
{"record" : {id: 3, name: "gary"}}
]
}
</code></pre>
<p>My controller is basically doing nothing but:</p>
<pre><code>@records = Record.find(:all)
respond_to do |format|
format.json { render :text => @records.to_json}
end
</code></pre>
<p>As you can see, it's adding in an additional key to every record, which my frontend ExtJS code is not capable of parsing as-is. Is there any way to stop this from occuring?</p>
<p>Thanks for any help you can offer,</p>
<p>Mike Trpcic</p>
http://stackoverflow.com/questions/1814698/make-output-an-object-array0Make output an object arrayBrad2009-11-29T05:00:37Z2009-11-29T05:18:35Z
<pre><code><?php
//example code
$url = 'http://clients1.google.com/complete/search?hl=en&q=speed';
function processURL( $url )
{
$contents = file_get_contents( $url );
return $contents;
}
print_r( processURL($url) );
?>
</code></pre>
<p>Output:</p>
<pre><code>window.google.ac.h(["speed",[["speed test","89,300,000 results","0"],["speed channel","76,100,000 results","1"],["speed of light","120,000,000 results","2"],["speed test speakeasy","362,000 results","3"],["speedfan","1,660,000 results","4"],["speed of sound","83,200,000 results","5"],["speedy rewards","2,790,000 results","6"],["speedo","6,580,000 results","7"],["speedway","12,800,000 results","8"],["speedway motors","486,000 results","9"]]])
</code></pre>
<p>example output of what I want:</p>
<pre><code>out[0].word['speed test'];
out[0].results['89,300,000'];
out[1].word['speed channel'];
out[1].results['76,100,000'];
out[2].word['speed of light'];
out[2].results['120,000,000'];
</code></pre>
<p>etc...</p>
<p>Thanks for any help.</p>
http://stackoverflow.com/questions/1814441/does-jquery-support-reading-json-from-x-json-http-headers0Does jQuery support reading JSON from X-JSON HTTP headers?friedo2009-11-29T02:23:42Z2009-11-29T05:00:44Z
<p>Is jQuery able to read JSON data from X-JSON HTTP headers returned by the server? I've been searching through the jQuery docs, but all the examples I can find use JSON returned in the request body rather than the headers.</p>
http://stackoverflow.com/questions/1814585/jsonencode-in-php-returns-chinese-characters-as-hex0JSON_ENCODE in PHP Returns Chinese Characters as HexTrevor2009-11-29T03:48:57Z2009-11-29T03:48:57Z
<p>I've got a simple PHP one-dimension array.</p>
<p>When I do a var dump (echo var_dump($a)), I get this as the output:
array(3) { [0]=> string(3) "尽" [1]=> string(21) "exhausted||to exhaust" [2]=> string(4) "jin3" }</p>
<p>However, when I JSON_ENCODE it (echo json_encode($a)) I get this:
["\u5c3d","exhausted||to exhaust","jin3"]</p>
<p>The hex value that it's returning is the correct one, but I can't figure out how to STOP it from giving me the hex. I just want it to display the character.</p>
<p>If I echo mb_internal_encoding() it returns UTF-8 which is what I've set it to. I've been very careful in all my string manipulation to use the mb_ functions so none of the data gets messed up.</p>
<p>I know that I could write a modified JSON_ENCODE function that would take care of the problem. But I gotta figure this one out... Thanks!</p>
http://stackoverflow.com/questions/998832/web-based-json-editor-that-works-like-property-explorer-with-ajaxy-input-form1Web-based JSON editor that works like property explorer with AJAXy input formdreftymac2009-06-15T22:47:50Z2009-11-28T23:53:32Z
<p><strong>Background:</strong> This is a request for something that may not exist yet, but I've been meaning to build one for a long time. First I will ask if anyone has seen anything like it yet. </p>
<p>Suppose you have an arbitrary JSON structure like the following:</p>
<pre><code>{
'str_title':'My Employee List'
,'str_lastmod': '2009-June-15'
,'arr_list':[
{'firstname':'john','lastname':'doe','age':'33',}
,{'firstname':'jane','lastname':'doe','age':'34',}
,{'firstname':'samuel','lastname':'doe','age':'35',}
]
}
</code></pre>
<p><strong>Question:</strong> Is there a web-based JSON editor that could take a structure like this, and automatically allow the user to modify this in a user-friendly GUI?</p>
<p><strong>Example:</strong> Imagine an auto-generated HTML form that displays 2 input-type-text controls for both title and lastmod, and a table of input-type-text controls with three columns and three rows for arr_list ... with the ability to delete or add additional rows by clicking on a [+][X] next to each row in the table.</p>
<p><strong>Big Idea:</strong> The "big idea" behind this is that the user would be able to specify any arbitrary (non-recursive) JSON structure and then also be able to edit the structure with a GUI-based interaction (this would be similar to the "XML Editor Grid View" in XML Spy).</p>
http://stackoverflow.com/questions/1813612/middleware-for-mongodb-or-couchdb-with-jquery-ajax-json-frontend0Middleware for MongoDB or CouchDB with jQuery Ajax/JSON frontendTauren2009-11-28T19:57:57Z2009-11-28T20:47:07Z
<p>I've been using the following web development stack for a few years:</p>
<p>java/spring/hibernate/mysql/jetty/wicket/jquery</p>
<p>For certain requirements, I'm considering switching to a NoSQL datastore with an AJAX frontend. I would probably build the frontend with jQuery and communicate with the web application middleware using JSON. I'm leaning toward MongoDB because of more dynamic query capabilities, but am still considering CouchDB.</p>
<p>I'm not sure what to use in the middle. Probably something RESTful? My preference is to stick with Java (or maybe Scala or Groovy) since I'm using tools like Drools for rules and Shiro for security. But then again, I want to pick something that is quick an easy to work with, so I'm open to other solutions.</p>
<p>If you are building ajax/json/nosql solutions, I'd like to hear details about what tools you are using and any pros/cons you've found to using them.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1811505/with-jquery-access-json-from-cross-domain-url-where-json-may-be-poorly-formed4with jQuery, access json from cross domain url where json may be poorly formedmark2009-11-28T03:58:11Z2009-11-28T19:12:05Z
<p>I'm using jQuery's ajax function to hit a cross domain url. The url will return json. I'm in the discovery phase with this but I think, because the json values contain several '&quot' strings, the json eval is throwing an error and stopping the execution of my client side script. The error that I get is "unterminated string literal". I know that if I hard-code the returned json by putting it in a local div and remove the '&quot;' strings (and a couple of hidden special characters), I can get the json to eval successfully.
Whether through work-around, or through a correction to my code, what can I do to get the json from the url and store it in my client side javascript as a valid json object?</p>
<p>my current code. none of the defined functions (success, complete, error, dataFilter) execute:</p>
<pre><code>$(function() {
$.ajax({
url: "http://www.codemash.org/rest/sessions.json?format=jsonp&callback=?",
dataType: "jsonp",
success: successFunc,
complete: completeFunc,
error: errorFunc,
dataFilter: dataFilterFunc
});
});
function successFunc() { console.log('successFunc(). enter.'); }
function completeFunc() { console.log('complete(). enter.'); }
function errorFunc() { console.log('errorFunc(). enter.'); }
function dataFilterFunc(data, type) {
data.replace(/\W/g, ' ');
return data;
}
</code></pre>
http://stackoverflow.com/questions/1812976/jquery-and-live-table-updates0JQuery and Live Table UpdatesShadi Almosri2009-11-28T16:40:47Z2009-11-28T17:34:44Z
<p>Hiya i was wondering if anyone can point me in the direction of examples or sample code for a few things regarding table minipulation i'm trying to achive but haven't been able to crack yet.</p>
<p>I currently have a table of data being produced that is sorted and displayed using <a href="http://tablesorter.com/docs/" rel="nofollow">Tablesorter</a> plugin for Jquery. </p>
<p>I would like to add these extra bits of functionality</p>
<ol>
<li>Update the table automatically every few seconds with any new data (without refreshing the page) and maintain sorting. I can create the PHP script to output json for new data, but somehow i would need to send it the id of the last row displayed (so that i can find out what new rows to display)</li>
<li>Once a new row is added (ideally with a smooth transition like fade) it would have a css class of "new" or something that will give it a new colour</li>
<li>The new colour will then fade to the normal table style (remove class) within 15seconds of the page maintaining focus</li>
<li>if the page does not have focus and new data is there (i.e. refreshing in the background but user is looking at another window/tab) it waits until the user has focus on the window/tab and then carries out the fade to a normal colour as described in 3.</li>
</ol>
<p>I hope this has been clear, the part i'm a bit sceptical about the most is point 4 with the focus issue, but i think facebook seem to do that with their Live news feed. It doesn't seem to update until i have the window in focus (or so i assume)</p>
<p>Any help and guidance would be greatly appreciated!</p>
<p>My table is in this form:</p>
<pre><code><table class="tablesorter" cellspacing="1">
<thead>
<tr>
<th>ID</th>
<th>lid</th>
<th>Time</th>
<th>Season</th>
<th>Keyword</th>
<th>Campaign</th>
<th>IP</th>
</tr>
</thead>
<tbody>
<tr>
<td class="id">6875</td>
<td class="lid">-----</td>
<td class="time">28 Nov 09 16:35:24</td>
<td class="season">xxx xxx</td>
<td class="keyword">xx xx xxxx</td>
<td class="campaign">xxx</td>
<td class="ip">xx.xx.xx.xx</td>
</tr>
<tbody>
<table>
</code></pre>
http://stackoverflow.com/questions/1551001/jquery-post-update-not-working-in-ie1jQuery $.post update not working in IE...Scott2009-10-11T15:50:10Z2009-11-28T17:14:39Z
<p>I can't get this update script to work in IE. Works fine in every other browser. IE tells me that the update was performed. However, it wasn't. I've no more hair left to pull out..grr. BTW I've tried <code>$.ajax</code> and <code>$.get</code> too..still no luck. I'm thinking it may have something to do with the <code>live</code> click handler. Don't know...I've tried everything..(putting headers for no-cache, attaching a random number to the end of my url string)..nothing fricken works...blasted IE.</p>
<p>This is the <code>$('.save').live('click')</code> function I am using:</p>
<pre><code>$(".save").live("click", function(){
$.post("update.php", { cache : false, saveID : saveIt.value, saveMo : saveMonth, saveYr : saveYear, saveCtg : saveCt, saveThg : saveTh },
function(data){
if(data.success) {
$(textareaThoughts).hide();
$(saveIt).parents(".dirRowOne").find(".cancel").hide();
$(saveIt).parents(".dirRowOne").find(".edit, .del").show();
$(saveIt).hide();
$("#dirConsole").html(data.message);
} else if(data.error) {
}
}, "json");
return false;
});
</code></pre>
<p>Here's the update.php</p>
<pre><code><?php
if($_POST) {
$data['id'] = $db->escape_value($_POST['saveID']);
$data['months'] = trim($db->escape_value($_POST['saveMo']));
$data['years'] = trim($db->escape_value($_POST['saveYr']));
$data['cottages'] = trim($db->escape_value($_POST['saveCtg']));
$data['thoughts'] = trim(htmlentities($db->escape_value($_POST['saveThg'])));
$id = $data['id'];
$m = $data['months'];
$y = $data['years'];
$c = $data['cottages'];
$t = $data['thoughts'];
$query = "UPDATE //tablename SET month = '{$m}', year = '{$y}', cottage = '{$c}', thoughts = '{$t}' WHERE dirID = '{$id}'";
$result = $db->query($query);
if($result) {
$data['success'] = true;
$data['message'] = "Update Successful!";
} else {
$data['error'] = true;
}
echo json_encode($data);
}
?>
</code></pre>
<p>This is the JSON response:</p>
<pre><code>{"id":"360","months":"June","years":"1990","cottages":"Cedar","thoughts":"Hello","success":true,"message":"Update Successful!"}
</code></pre>
http://stackoverflow.com/questions/1811625/copying-json-response-dictionary-to-plist-1Copying JSON response dictionary to plistshivank2009-11-28T05:02:31Z2009-11-28T13:01:59Z
<p>I have a dictionary containing a JSON response and a plist file. I want to update the values in my plist file with the JSON response values. How would I do this?</p>
http://stackoverflow.com/questions/1812218/jquery-select-random-json-object1Jquery - Select random JSON ObjectClint2009-11-28T10:48:07Z2009-11-28T11:07:36Z
<p>Hi,</p>
<p>I have this jquery code to output the entries in a JSON file on page load...</p>
<p>$.getJSON('b.json', function(data) {
$('#dictionary').empty().hide();</p>
<pre><code> $.each(data, function(entryIndex, entry) {
var html = '<div class="entry">';
html += '<h3 class="title">' + entry['title'] + '</h3>';
html += '<div class="link_url">' + entry['link_url'] + '</div>';
html += '<div class="image_src">';
html += entry['image_src'];
if (entry['quote']) {
html += '<div class="quote">';
$.each(entry['quote'], function(lineIndex, line) {
html += '<div class="quote-line">' + line + '</div>';
});
if (entry['author']) {
html += '<div class="quote-author">' + entry['author'] + '</div>';
}
html += '</div>';
}
html += '</div>';
html += '</div>';
$('#dictionary').append(html).fadeIn();
});
});
</code></pre>
<p>What I need to do is load one of these entries, randomly.</p>
<p>Any advice appreciated.</p>
<p>Many thanks,
C</p>
<p>The JSON file is...
[
{
"title": "WESITE NAME",
"link_url": "http://www.website.com",
"image_src": "http://www.website.com/images/recent.jpg",
},
{
"title": "WESITE NAME",
"link_url": "http://www.website.com",
"image_src": "http://www.website.com/images/recent.jpg",
},
{
"title": "WESITE NAME",
"link_url": "http://www.website.com",
"image_src": "http://www.website.com/images/recent.jpg",
}
]</p>
http://stackoverflow.com/questions/1810217/asp-net-mvc-2-preview-2-under-mono-in-linux0ASP.NET MVC 2 Preview 2 under Mono in LinuxRooSoft2009-11-27T18:53:32Z2009-11-28T04:04:22Z
<p>I am actually successfully running a production website with ASP.NET MVC under Mono in a Ubuntu LTS Linux. This server is located somewhere in the cloud and it rocks!</p>
<p>Today, I have tried to make it all work with ASP.NET MVC 2 Preview 2, which can be found here: <a href="http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=33836" rel="nofollow">ASP.NET MVC 2 Preview 2</a></p>
<p>I have downloaded the source code because I wanted to deploy the DLL by hand just like I am doing with v1. I find it simpler Linux not to rely on the GAC.</p>
<p>Everything seems to be working fine until I try to get JSON data in an AJAX call. Here is the information I get about the error...</p>
<blockquote>
<p>[System.NotImplementedException]: The
requested feature is not implemented.
at
System.Web.Mvc.AssociatedMetadataProvider.GetTypeDescriptor
(System.Type type) [0x00000] at
System.Web.Mvc.AssociatedMetadataProvider.GetMetadataForType
(System.Func`1 modelAccessor,
System.Type modelType) [0x00000] at
System.Web.Mvc.ControllerActionInvoker.GetParameterValue
(System.Web.Mvc.ControllerContext
controllerContext,
System.Web.Mvc.ParameterDescriptor
parameterDescriptor) [0x00000] at
System.Web.Mvc.ControllerActionInvoker.GetParameterValues
(System.Web.Mvc.ControllerContext
controllerContext,
System.Web.Mvc.ActionDescriptor
actionDescriptor) [0x00000] at
System.Web.Mvc.ControllerActionInvoker.InvokeAction
(System.Web.Mvc.ControllerContext
controllerContext, System.String
actionName) [0x00000]</p>
</blockquote>
http://stackoverflow.com/questions/1763099/techniques-to-reduce-data-harvesting-from-ajax-json-services8Techniques to reduce data harvesting from AJAX/JSON services.Sosh2009-11-19T12:54:41Z2009-11-27T22:08:56Z
<p>I was wondering if anyone had come across any techniques to reduce the chances of data exposed through JSON type services on the server (intended to supply AJAX functions) from being harvested by external agents.</p>
<p>It seems to me that the problem is not so difficult if you had say a Flash client consuming the data. Then you could send encrypted data to the client, which would know how to decrypt it. The same method seems impossible with AJAX though, due to the open nature of the Javascrip source.</p>
<p>Has anybody implemented a clever technique here?</p>
<p>Whatever the method, it should still allow a genuine AJAX function to consume the data.</p>
<p>Note that I'm not really talking about protecting 'sensitive' information here, the odd record leaking out is not a problem. Rather I am thinking about stopping a situation where the whole DB is hoovered up by bots (either in one go, or gradually over time).</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1434931/getting-json-from-jersey-with-circular-dependencies0Getting JSON from Jersey with circular dependenciesPrabhdeep Gill2009-09-16T19:13:19Z2009-11-27T22:00:02Z
<p>Hi</p>
<p>I am writing a service that uses Jersey and JAXB. My classes are annotated with @XMLRootElement, @XMLElement, etc. I have a circular dependency between two classes, so I have annotated the circular dependent property with @XMLTransient. So when I call my service I get xml as the default, which works perfectly. However, when I try using JSON, I get repeated lines like:</p>
<p>{"name":"dere","entries":[{"points":0,"wins":0,"losses":0,"ties":0,"leaderboard":{"name":"dere","entries":[{"points":0,"wins":0,"losses":0,"ties":0,"leaderboard":{"name":"dere","entries":[{"points":0,"wins":0,"losses":0,"ties":0,"leaderboard":{"name":"dere","entries":[{"points":0,"wins":0,"losses":0,"ties":0,"leaderboard":{"name":"dere"," ... etc.</p>
<p>So it seems there is a problem with circular dependencies when I am using JSON. I would like to avoid the circular dependent item from showing up in the JSON output, like it is done in XML (because of the @XMLTransient annotation).</p>
<p>Can anyone provide any insight on how I would be able to achieve this?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1810347/nsnull-crashes-my-initwithdictionary0NSNull crashes my initWithDictionaryCanada Dev2009-11-27T19:35:04Z2009-11-27T20:13:03Z
<p>I am parsing a JSON file.</p>
<p>After getting the NSDictionary, I parse the objects in the dictionary into an array of objects. However, for certain JSON files, I get NULL, which should be fine, but it crashes my app for those place where I am expecting something but getting null:</p>
<pre><code>- (id)initWithDictionary:(NSDictionary *)boxDictionary {
if ([self init]) {
// ...
int numberOfBoxes = [[boxDictionary valueForKey:@"box_count"] intValue];
int numberOfItemsInBoxes = [[boxDictionary valueForKey:@"box_items_count"] intValue];
// ..
}
return self;
}
</code></pre>
http://stackoverflow.com/questions/1374178/ip-to-country-city-lat-lang-javascript-service1Ip to country, city, lat, lang javascript serviceEeyore2009-09-03T15:33:45Z2009-11-27T18:45:30Z
<p>What the best/accurate/free service to convert the IP from the following script to country/city/lat/long?</p>
<pre><code>$.getJSON("http://jsonip.appspot.com?callback=?",
function(data){
alert( "Data Returned: " + data.ip);
});
</code></pre>
http://stackoverflow.com/questions/1809531/truncating-unicode-so-it-fits-a-maximum-size-when-encoded-for-wire-transfer3Truncating unicode so it fits a maximum size when encoded for wire transferjhs2009-11-27T16:04:58Z2009-11-27T18:23:59Z
<p>Given a Unicode string and these requirements:</p>
<ul>
<li>The string be encoded into some byte-sequence format (e.g. UTF-8 or JSON unicode escape)</li>
<li>The encoded string has a maximum length</li>
</ul>
<p>For example, the iPhone push service requires JSON encoding with a maximum total packet size of 256 bytes.</p>
<p><strong>What is the best way to truncate the string so that it re-encodes to valid Unicode and that it displays reasonably correctly?</strong></p>
<p>(Human language comprehension is not necessary—the truncated version can look odd e.g. for an orphaned combining character or a Thai vowel, just as long as the software doesn't crash when handling the data.)</p>
<p>See Also:</p>
<ul>
<li>Related Java question: <a href="http://stackoverflow.com/questions/119328/">How do I truncate a java string to fit in a given number of bytes, once UTF-8 encoded?</a></li>
<li>Related Javascript question: <a href="http://stackoverflow.com/questions/1515884/">Using JavaScript to truncate text to a certain size</a></li>
</ul>
http://stackoverflow.com/questions/1684008/simulating-a-form-post-to-asp-net-mvc-with-javascript0Simulating a form POST to ASP.NET MVC with javascriptifwdev2009-11-05T22:12:19Z2009-11-27T18:12:02Z
<p>I've had problems trying to send JSON to ASP.NET MVC Controllers. I don't want to accept one string parameter on each controller method and deserialize manually. I have found that constructing a collection of post variables works reliably, but I don't have a generalized function to do so. I can write one myself if no one has done it already but I find it really hard to believe.</p>
<p>If no one answers this by tomorrow I guess I'll stop being lazy.</p>
<p><em>Edit: To be clear, I'm not asking how to serialize .NET objects to JSON. I'm asking if anyone has written a <strong>javascript</strong> function to do the following:</em></p>
<p><strong>given javascript object:</strong> </p>
<pre><code>{
name: { first: "first", last: "last" },
age: 35,
drinks: [
{ carbonated: false, name: "juice" },
{ carbonated: true, name: "soda" }
]
}
</code></pre>
<p><strong>returns (POST request as object):</strong></p>
<pre><code>name.first : first
name.last : last
age : 35
drinks[0].carbonated : false
drinks[0].name : juice
drinks[1].carbonated : true
drinks[1].name : soda
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/1761028/problem-with-json-and-eval1problem with json and evalgriegs2009-11-19T05:14:09Z2009-11-27T09:50:04Z
<p>I can't seem to find any solution to this within SO so here goes.</p>
<p>I have a call to a WebMethod within the C# of my page like this;</p>
<pre><code>$.ajax({
type: "POST",
url: "MyWebPage.aspx/jQueryMyWebMethod",
data: "{FamilyType:'" + $('.HdnFamilyType').val() + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
var obj = eval('(' + msg + ')');
}
});
</code></pre>
<p>In the code behind I create an object, serialise it and return it like this;</p>
<pre><code>LHCRequiredFormViewModel fvm = new LHCRequiredFormViewModel();
DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(LHCRequiredFormViewModel));
MemoryStream ms = new MemoryStream( );
ser.WriteObject(ms, fvm);
return Encoding.Default.GetString(ms.ToArray());
</code></pre>
<p>However, in the Javascript when I do the eval I get the error;</p>
<p><strong>Expected ']';</strong></p>
<p>At the point of returning the serialised object from C# the data looks like; </p>
<pre><code>"{\"<IsApplicantLHCRequired>k__BackingField\":true,\"<IsPartnerLHCRequired>k__BackingField\":false}" string
</code></pre>
<p>I should mention that the project was .Net 2.0 and I was simply returning a serialised object w/out all the JSON guff and it worked fine.</p>
<p>So I then converted to 3.5 and the problem began. It's then that I used the JsonSerializer but am still getting exactly the same error.</p>
<p>Anyone know what's going on and how to fix it?</p>
http://stackoverflow.com/questions/1807452/i-am-getting-response-from-the-url-but-while-parsing-followng-errors-are-shown-1i am getting response from the url but while parsing followng errors are shownshivank2009-11-27T08:38:23Z2009-11-27T08:38:23Z
<p>i am trying to parse the json data which i obtain as a NSString.
but when i write the code:
NSDictionary *jsonResp =[response JSONFragmentValue];
i get 0 key/value pairs in dictionary and a message in console as follows:
"-JSONFragmentValue failed. Error trace is: (
Error Domain=org.brautaset.JSON.ErrorDomain Code=3 UserInfo=0xf428f0 "Object key string expected",
Error Domain=org.brautaset.JSON.ErrorDomain Code=3 UserInfo=0xf429c0 "Object value expected for key: Training Journal",
Error Domain=org.brautaset.JSON.ErrorDomain Code=3 UserInfo=0xf42a80 "Expected value while parsing array"
)"
can anybody suggest me why is this happening.
and is it necessary to add this header info :"[request addRequestHeader:@"JSON_METHOD_NAME" value: " </p>
http://stackoverflow.com/questions/1444685/symfony-php-framework-and-mongodb-or-any-json-based-database3Symfony (PHP framework) and MongoDB ( or any json-based database)fenderplayer2009-09-18T13:54:03Z2009-11-27T03:59:05Z
<p>I was wondering if its possible to use a json-based schema-free, document-based database like Mongodb or Couchdb on a symfony project like its used for ruby-on-rails websites? And if yes, how can it be done?</p>
http://stackoverflow.com/questions/1785283/cant-deserialize-a-nullable-keyvaluepair-from-json-with-asp-net-ajax1Can't Deserialize a Nullable KeyValuePair from JSON with ASP.NET AJAXNoel2009-11-23T19:06:32Z2009-11-26T23:12:04Z
<p>The following class does not deserialize (but does serialize) using <code>System.Web.Script.Serialization.JavaScriptSerializer</code>.</p>
<pre><code>public class foo {
public KeyValuePair<string, string>? bar {get;set;}
}
</code></pre>
<p>The attempt to deserialize results in a <code>System.NullReferenceException</code> when <code>System.Web.Script.Serialization.ObjectConverter.ConvertDictionaryToObject</code> reaches the <code>bar</code> property. (Note, that is a surmise based on the stack trace.)</p>
<p>Changing the property type to <code>KeyValuePair<string,string></code> fixes the problem, but I'd like to keep the <code>Nullable</code> type if at all possible.</p>
<p>The JSON is exactly what you would expect:</p>
<pre><code>{"foo": {
"bar": {
"Key":"Jean-Luc",
"Value":"Picard"
}
}}
</code></pre>
<p>Help?</p>
http://stackoverflow.com/questions/1805724/firefox-jquery-json-problem0Firefox JQuery JSON Problemmarkpirvine2009-11-26T21:26:20Z2009-11-26T22:35:09Z
<p>Hi,</p>
<p>I'm using the following code to request data from an ASP.net MVC application. I'm also using TcpTrace so that I can see the request/response.</p>
<pre><code>if (isInteger($('#txtDay').val()) && isInteger($('#txtMonth').val()) && isInteger($('#txtYear').val())) {
$.ajax({
type: 'POST',
contentType: 'application/json; charset=utf-8',
url: strApi + 'wip/job/getsummary/' + $('#txtYear').val() + '/' + $('#txtMonth').val() + '/' + $('#txtDay').val(),
data: '{}',
dataType: 'json',
cache: false,
beforeSend: function(XMLHttpRequest) { ShowLoading(); },
success: function(data, textStatus) {
ShowJobSummaryList(data);
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
HideLoading();
ShowStatus('unable to retrieve job summary list');
alert(XMLHttpRequest.statusText);
alert(textStatus);
},
complete: function(XMLHttpRequest, textStatus) {
HideLoading();
}
});
}
</code></pre>
<p>Using IE everything works fine - the content type is correctly set to application/json. However under Firefox 3.5.5, the content type is missing:</p>
<pre><code>OPTIONS /api/wip/job/getsummary/2009/11/25 HTTP/1.1
Host: localhost:8080
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-GB; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-gb,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: keep-alive
Origin: http://localhost
Access-Control-Request-Method: POST
Access-Control-Request-Headers: x-requested-with
</code></pre>
<p>This causes the ASP.net MVC to return XML. Can anyone explain why Firefox does not send the content type?</p>