Tag: JSON
-
CRUD operation on ASP.NET Web API from .NET client
In this post we will learn to work with CRUD operation on ASP.NET Web API. We will learn To create CRUD operation on ASP.NET Web API Using Entity model to create model Creating repository to perform CRUD operation Consuming service in .NET Console Client I can draw architecture of this blog post as following, Let…
-
What is JSON?
For some of you this question might be the easiest to answer. But for many developers concept of JSON is not well understood. In my seminars when I use JSON data for demo, I find many developers do not have understanding of JSON. In this post I am trying to address this problem. In simple…
-
ASP.Net Web API Service in Windows Phone: Part 4 of Many
Creating First HTTP Service using ASP.NET Web API: Part1 of Many Consuming ASP.NET Web API Service using HttpClient: Part2 of Many How to Self-Host ASP.Net Web API: Part 3 of Many In this post we will consume ASP.Net Web API HTTP Service in Windows Phone Application. If you do not specify header information in HTTP…
-
Netflix Movie Explorer a Metro Application: Creating Step by Step
Download source code of this article from here In this article we will follow step by step approach to create Netflix Movie Explorer Metro Application. We will use HTML and WinJS to create this application. See the video to understand expected behavior of the application. Some of the features of application are as following Browse…
-
How to create WCF Data Service with $JSONP format
In this post we will create WCF Data Service takes $JSONP in query and returns JSON data as response. For example if we want to fetch data as JSON we can fetch as following, http://localhost:5157/WcfDataService1.svc/People?$format=json To start with, Let us create WCF Data Service on School Database. Open Visual Studio 2010 as administrator and create…
-
How to consume WCF REST Service with JSON in Windows Phone 7
In this post I will show you the way to consume JSON WCF REST Service in Windows Phone 7. This post is divided into four parts. Creating simple WCF REST Service for ADD Consuming JSON REST Service in Windows Phone 7 application. Creating complex WCF REST Service with custom classes and types. Consuming complex JSON…
-
REST service on JSON Message format
Objective How to create REST service for JSON request and response format. How to create SilverLight Client, which will consume a REST service on JSON data format. How to POST data in JSON format from SilverLight client. Working explanation Here, I am trying to insert data in static list and fetch it back at…