Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Mobile / iPhone

Creating a WCF Service with JSON Data and Using it on iOS

5.00/5 (8 votes)
31 Mar 2013CPOL 58.5K   1.1K  
Creating a WCF Service with JSON data for use on iOS

Introduction

Web services are very important for mobile development. In this tip, we will learn to create a WCF service which returns JSON data. We will also learn to generate request to this service on iOS side in this article.

Background

I assume you already have a WCF service that you created. If you didn't create it, please create a new "WCF Service Application".

Using the Code

First of all, let's make the necessary import operations.

VB.NET
//Interface 
Imports System.ServiceModel

//Implement
Imports System.Web.Script.Serialization
Imports System.ServiceModel.Activation
Imports System.ServiceModel
Imports System.ServiceModel.Web  

After this, you should define some function and class in the interface side.

For example:

VB.NET
<OperationContract()>
    <WebGet(UriTemplate:="GetUser", RequestFormat:=WebMessageFormat.Json, _
    ResponseFormat:=WebMessageFormat.Json, BodyStyle:=WebMessageBodyStyle.Wrapped)> _
    Function GetUser() As List(Of Users)

<DataContract()>
    Class Users
        <DataMember>
        Public Property ID As Integer
        <DataMember>
        Public Property NAME As String
        <DataMember>
        Public Property SURNAME As String
    End Class

As you see, we should set the RequestFormat to JSON. We should also set the ResponseFormat to JSON.

Then, we need to implement this function.

VB
Public Function GetUser() As List(Of IService1.Users) Implements IService1.GetUser
    Dim users As New List(Of IService1.Users)
    Dim user As New IService1.Users
    user.ID = 1
    user.NAME = "Melih"
    user.SURNAME = "Mucuk"
    users.Add(user) 
    Return users 
End Function 

We created a list and returned it.

Also the Web.config file must be arranged.

XML
<?xml version="1.0"?>
<configuration>
  <system.web>
    <compilation debug="true" strict="false" explicit="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>
    <services>
      <service name="WcfService1.Service1" behaviorConfiguration="BehConfig">
        <endpoint address="" binding="webHttpBinding" 
                contract="WcfService1.IService1" behaviorConfiguration="web">
        </endpoint>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="BehConfig">
          <serviceMetadata httpGetEnabled="true"/>
          <serviceDebug includeExceptionDetailInFaults="false"/>
        </behavior>
      </serviceBehaviors>
      <endpointBehaviors>
        <behavior name="web">
          <webHttp/>
        </behavior>
      </endpointBehaviors>
    </behaviors>
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
    <directoryBrowse enabled="true"/>
  </system.webServer>
</configuration> 

That's it. WCF Service is ready. Let's see how to generate a request to this service on iOS side.

C++
- (void)viewDidLoad 
{ 
    [super viewDidLoad]; 
    NSString *request = [NSString stringWithFormat:
    		@"http://localhost:portnumber/Service1.svc/GetUser"]; 
    NSURL *URL = [NSURL URLWithString:
    	[request stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]]; 
    NSError *error = nil; 
    NSData *data = [NSData dataWithContentsOfURL:URL options:NSDataReadingUncached error:&error]; 
    if(!error)
    { 
        NSDictionary *json = [NSJSONSerialization
                              JSONObjectWithData:data
                              options:NSJSONReadingMutableContainers
                              error:&error]; 
        NSMutableArray *array= [json objectForKey:@"GetUserResult"]; 
        for(int i=0; i< array.count; i++)
        { 
            NSDictionary *userInfo= [array objectAtIndex:i]; 
            NSInteger *id = [userInfo objectForKey:@"ID"]; 
            NSString *name = [userInfo objectForKey:@"NAME"]; 
            NSString *surname = [userInfo objectForKey:@"SURNAME"]; 
            NSLog(@"ID: %d NAME: %@ SURNAME: %@", id,name,surname);
        } 
    } 
} 

Everything is ready. Run it and enjoy it. Smile | <img src=

Points of Interest

Attention:

For UriTemplate:

C++
RequestFormat:=WebMessageFormat.Json, ResponseFormat:=WebMessageFormat.Json // For Json 

For Web.config:

C++
service name="WcfService1.Service1" // Application_Name.Implement_Class
C++
contract="WcfService1.IService1" //Application_Name.Interface_Class
C++
binding="webHttpBinding" // for  web request 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)