DotNetShoutout - Stories tagged with JSON
3
Shouts

C#, Parallel deserialization of JSON stored in database « Daniel Wertheim

published 495 days, 5 hours, 6 minutes ago posted by sedanwersedanwer 498 days, 18 hours, 3 minutes ago
Sunday, January 15, 2012 11:54:38 AM GMT Wednesday, January 11, 2012 10:57:27 PM GMT
A while back ago I had to yield entities constructed by deserializing JSON stored in a database. The first solution just opened a simple single result, sequential reader against the database returning a one column result set containing JSON. This was just yield returned after deserialized to the desired entity. Trying to tweak this I turned to the task parallel library. The idea was to in a separate task, read from the datareade... (more)
category: Architecture | clicked: 34 | 1 comment | | source: daniel.wertheim.se
tags: JSON, ADO.NET, Task Parallel Library, DataReader, C#
2
Shouts

Avoiding Circular Reference for Entity in JSON Serialization - Gil Fink's Blog

posted by gilfgilf 585 days, 7 hours, 40 minutes ago
Monday, October 17, 2011 9:20:31 AM GMT
One problem that I was facing yesterday while working on an ASP.NET MVC application was a JSON serialization issue. The problem was a circular reference caused by the DataContractJsonSerializer because of relations between the entity and other entities. In this post I’ll show you how you can use a simple workaround in order to avoid the problem. (more)
category: Web Dev | clicked: 32 | comment | | source: blogs.microsoft.co.il
tags: ASP.NET MVC, JSON, Serialization, Entity Framework, Code first
4
Shouts

Understanding JSON - DotNetLogix

published 619 days, 9 hours, 16 minutes ago posted by DotNetLogixDotNetLogix 621 days, 8 hours, 33 minutes ago
Tuesday, September 13, 2011 7:44:49 AM GMT Sunday, September 11, 2011 8:27:22 AM GMT
The JavaScript Object Notation, or JSON, is a lightweight format syntax for representing data used for exchanging data between client and server. (more)
category: Web Dev | clicked: 25 | 1 comment | | source: www.dotnetlogix.com
tags: JSON
3
Shouts

Web.NET: Using jQuery to Consume ASP.NET MVC JSON Services

published 677 days, 8 hours, 23 minutes ago posted by http://blog.turlov.com/http://blog.turlov.com/ 681 days, 13 hours, 36 minutes ago
Sunday, July 17, 2011 8:37:44 AM GMT Wednesday, July 13, 2011 3:24:12 AM GMT
...for the last two years the alternative ASP.NET MVC framework has been drawing more and more attention from the development community due to its good implementation of the MVC design pattern and adherence to web standards and bleeding edge web technologies. For many experienced ASP.NET developers accustomed to Web Services especially accompanied with ASP.NET AJAX framework a natural question occurs: how to implement similar approach with ASP.NET MVC framework and its natural JavaScript companion jQuery? (more)
category: Web Dev | clicked: 27 | 2 comments | | source: blog.turlov.com
tags: ASP.NET MVC, JSON, jQuery, JsonResult, json mvc jquery
7
Shouts

Json.NET 4.0 Release 2 – NuGet 1.2 and Dynamic - James Newton-King

published 758 days, 18 hours, 57 minutes ago posted by iftekharahmedamitiftekharahmedamit 762 days, 23 hours, 21 minutes ago
Tuesday, April 26, 2011 10:03:13 PM GMT Friday, April 22, 2011 5:39:20 PM GMT
NuGet is fast becoming the preferred way to install libraries in .NET. NuGet 1.2 was recently released and among other improvements it adds support for the Windows Phone. Json.NET 4.0 Release 2 has been updated to support NuGet 1.2 and Windows Phone – there is nothing you need to do, it should just work. Windows Phone brings Json.NET’s NuGet support up to 7 different frameworks:.NET 4 .NET 4 Client... (more)
category: How To | clicked: 3 | comment | | source: james.newtonking.com
tags: JSON, Json.NET 4.0, Dynamic Support, NuGet
9
Shouts

NuGet Package of the Week #4 - Deserializing JSON with Json.NET - Scott Hanselman

published 778 days, 4 hours, 28 minutes ago posted by iftekharahmedamitiftekharahmedamit 780 days, 20 hours, 17 minutes ago
Thursday, April 07, 2011 12:32:18 PM GMT Monday, April 04, 2011 8:43:18 PM GMT
Hey, have you implemented the NuGet Action Plan? Get on it, it'll take only 5 minutes: NuGet Action Plan - Upgrade to 1.2, Setup Automatic Updates, Get NuGet Package Explorer. NuGet 1.2 is out, so make sure you're set to automatically update! The Backstory: I was thinking since the NuGet .NET package management siteis starting to fill up that I should start looking for gems (no pun intended) in there. You know, really useful stuff that folks might otherwise not find. I'll look for mostly open source pro... (more)
category: Web Dev | clicked: 5 | 2 comments | | source: www.hanselman.com
tags: JSON, JavaScript, Json.NET, NuGet
5
Shouts

ASP.NET MVC DropDownList PostBack Follow-up

published 780 days, 21 hours, 14 minutes ago posted by KodefuGuruKodefuGuru 784 days, 17 hours, 21 minutes ago
Monday, April 04, 2011 7:46:31 PM GMT Thursday, March 31, 2011 11:38:57 PM GMT
In 2009, I wrote how to do “postbacks” with the ASP.NET MVC DropDownList control. I wrote the post in response to questions in the forums, and lately that particular article has had a lot of traffic. Now, I don’t explain how to do true postbacks, only how to achieve the same effect. What you really do is use jQuery to retrieve the information. It’s a much more elegant solution. This follow-up is necessary because I wrote that article for ASP.NET MVC 1. The code doesn’t work for the later versions, as is... (more)
category: Web Dev | clicked: 3 | 1 comment | | source: www.kodefuguru.com
tags: ASP.NET MVC 3, ASP.NET MVC, JSON, dropdownlist, jQuery
2
Shouts

Advanced Dotnet Tutorial: Use JSON and JavaScript to create a lightweight GridView

posted by learndotnet123learndotnet123 792 days, 12 hours, 36 minutes ago
Thursday, March 24, 2011 4:24:25 AM GMT
This post is going to show you how to use JSON and JavaScript to create a light weight GridView in JavaScript.1. converting data in JSON using JavaScript to create GridView applying paging and sorting to it. converting data in JSON In order to achieve our first goal we'll use the code from which I took from Naveed Akhtar's post, you can read the entire article here; for now I am posting the code here for you now. It uses a DataTable object to create JSON; here it is. public void GetJSONS... (more)
category: Web Dev | clicked: 7 | comment | | source: advanceddotnettutorial.blogspot.com
tags: JSON, JavaScript, lightweight gridview
3
Shouts

Serialization Gotcha on the Windows Phone 7

published 836 days, 22 hours, 50 minutes ago posted by nigel-sampsonnigel-sampson 837 days, 11 hours, 15 minutes ago
Monday, February 07, 2011 6:10:41 PM GMT Monday, February 07, 2011 5:45:29 AM GMT
How to deal with a sneaky performance issue when serializing view models in Windows Phone 7. (more)
category: Metro | clicked: 0 | comment | | source: compiledexperience.com
tags: JSON, Silverlight, Serialization, Windows Phone 7
5
Shouts

Using JSON serialization outside a web context

published 836 days, 22 hours, 50 minutes ago posted by http://jclaes.blogspot.com/http://jclaes.blogspot.com/ 838 days, 1 hour, 50 minutes ago
Monday, February 07, 2011 6:10:41 PM GMT Sunday, February 06, 2011 3:10:48 PM GMT
You usually are in a web context if you are working with JSON, where JSON serialization almost always is encapsulated by the framework. You might accidentally come across scenarios where you want to serialize and deserialize JSON in a non-web context though. (more)
category: Web Dev | clicked: 1 | comment | | source: jclaes.blogspot.com
tags: JSON, Serialization
5
Shouts

ASP.NET: Serializing and deserializing JSON objects

published 876 days, 18 hours, 6 minutes ago posted by gpeipmangpeipman 878 days, 14 hours, 55 minutes ago
Wednesday, December 29, 2010 10:54:37 PM GMT Tuesday, December 28, 2010 2:05:48 AM GMT
ASP.NET offers very easy way to serialize objects to JSON format. Also it is easy to deserialize JSON objects using same library. In this posting I will show you how to serialize and deserialize JSON objects in ASP.NET. (more)
category: Web Dev | clicked: 3 | comment | | source: weblogs.asp.net
tags: JSON, ASP.NET
5
Shouts

SisoDb – An early prototype « Daniel Wertheim

published 960 days, 2 hours, 23 minutes ago posted by sedanwersedanwer 961 days, 22 hours, 36 minutes ago
Thursday, October 07, 2010 2:36:58 PM GMT Tuesday, October 05, 2010 6:24:10 PM GMT
SisoDb, a Simple Structure Oriented Database - a NoSql implementation over Sql-server. (more)
category: Data | clicked: 1 | comment | | source: daniel.wertheim.se
tags: JSON, structure oriented db, SisoDb, SQLServer, NoSQL
6
Shouts

Tying it Together « Composite Code

published 990 days, 15 hours, 36 minutes ago posted by http://compositecode.com/http://compositecode.com/ 993 days, 19 hours, 2 minutes ago
Tuesday, September 07, 2010 1:24:33 AM GMT Friday, September 03, 2010 9:58:15 PM GMT
I’ve been working through a project recently that I ended up creating an interesting abstraction of an assembly/classes between multiple web services projects.  I wrote about it initially in Aggregated Web Services Pt I.  In this blog entry is going to cover a few things, based on a full end-to-end implementation ... (more)
category: Web Dev | clicked: 1 | comment | | source: compositecode.com
tags: ASP.NET MVC, JSON, Web Service, jQuery, Ajax, REST
5
Shouts

jQax – A Simple jQuery Ajax Wrapper with Loading Notification | Benjii Me

published 1013 days, 6 hours, 40 minutes ago posted by BenjiiBenjii 1015 days, 1 hour, 14 minutes ago
Sunday, August 15, 2010 10:20:17 AM GMT Friday, August 13, 2010 3:46:13 PM GMT
If you just want a simple way of connecting your web page to a .NET web service or page method using ajax, then the following snippet of javascript is for you. By the way, if you place a div with an id of “divLoader” somewhere on your page, it will automatically fade in during loading and fade out when its complete. (more)
category: Web Dev | clicked: 3 | comment | | source: benjii.me
tags: JSON, Serialization, Ajax
7
Shouts

Creating a Gravatar client with jQuery and WCF - Yoav niran

published 1021 days, 2 hours, 28 minutes ago posted by iftekharahmedamitiftekharahmedamit 1024 days, 2 hours, 32 minutes ago
Saturday, August 07, 2010 2:32:10 PM GMT Wednesday, August 04, 2010 2:28:45 PM GMT
A couple of weeks ago I announced the release of the first .NET implementation of the Gravatar API. Gravatar.NET is available for download on Codeplex. What I’d like to show in this article is how to make use of the library using jQuery and WCF to create your own Gravatar client (Ponderi.com style). Th... (more)
category: Web Dev | clicked: 0 | comment | | source: yoavniran.wordpress.com
tags: Gravatar, JSON, .NET, C#, jQuery, Ajax, WCF
4
Shouts

Showing Off bit.ly Clicks of Your Posts With jQuery

posted by MikeMoreMikeMore 1029 days, 19 hours, 27 minutes ago
Thursday, July 29, 2010 9:33:21 PM GMT
bit.ly -the most common URL shortener- provides a simple RESTfull API to lookup short URL’s and their clicks count.. bit.ly has recently released version 3 which added simpler, more efficient methods to query multiple URL’s in one request that we are going to apply in this tutorial. (more)
category: Web Dev | clicked: 0 | comment | | source: aext.net
tags: JSON, bit.ly, RESTful, jQuery, Twitter
4
Shouts

When it Comes to Asp.Net: XMLHTTPJSClass - JSON Class for Ajax Operations

posted by ashishsarda99ashishsarda99 1033 days, 8 hours, 30 minutes ago
Monday, July 26, 2010 8:30:13 AM GMT
Share| In the development of Ajax application many times we may come across following issues. Need to update multiple text boxes simultaneously.Fill more that one dropdown lists.Combination of text boxes, dropdown lists and div tags.Calling different web pages and different webservices Means one event may lead to updating of many html elements. In such cases we will have to send Ajax request in a loop. Again for each request we will have to take care of timeouts and request failures. Here if data is s... (more)
category: Web Dev | clicked: 1 | comment | | source: aspdotnetmatters.blogspot.com
tags: JSON, Web, ASP .NET, JavaScript, web development, Ajax, XMLHttpRequest
10
Shouts

ASP.NET MVC: Using dynamic type to test controller actions returning JsonResult

published 1032 days, 7 hours, 8 minutes ago posted by gpeipmangpeipman 1035 days, 4 hours, 28 minutes ago
Tuesday, July 27, 2010 9:52:03 AM GMT Saturday, July 24, 2010 12:32:37 PM GMT
I wrote unit tests for my ASP.NET MVC application that uses some jQuery AJAX-components. These components load data from server in JSON format. I needed to write tests for these methods to make sure that correct data is returned to client. In this posting I will show you how to use dynamic type to test JSON-based action results and therefore avoid creating DTO classes. (more)
category: Web Dev | clicked: 1 | comment | | source: weblogs.asp.net
tags: ASP.NET MVC, JSON, Testing
11
Shouts

Calling a WCF Data Service From jQuery - Gil Fink on .Net

published 1054 days, 2 hours, 41 minutes ago posted by gilfgilf 1055 days, 11 hours, 41 minutes ago
Monday, July 05, 2010 2:19:17 PM GMT Sunday, July 04, 2010 5:19:44 AM GMT
I’m working on a lecture about OData which I’ll will present next month. One of the things that I want to show is how easy and simple it is to consume a WCF Data Service (OData feed) with the jQuery library. In the post I’ll show you exactly how to do that. (more)
category: Web Dev | clicked: 0 | comment | | source: blogs.microsoft.co.il
tags: JSON, jQuery, WCF Data Services
7
Shouts

How to return multiple formats with WCF including XML, JSON and ATOM | Benjii Me

published 1112 days, 9 hours, 22 minutes ago posted by BenjiiBenjii 1114 days, 1 hour, 56 minutes ago
Saturday, May 08, 2010 7:38:35 AM GMT Thursday, May 06, 2010 3:04:03 PM GMT
One of the cooler features of WCF web services is the ability to return your data in a range of different formats such as XML, JSON and ATOM, but what really sets it apart is just how easy it is to achieve. (more)
category: Web Dev | clicked: 1 | comment | | source: benjii.me
tags: JSON, XML, Atom, WCF, ASP.NET
Previous 1 2 Next