Click here to Skip to main content
15,881,852 members
Articles / Mobile Apps / iPhone
Tip/Trick

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

Rate me:
Please Sign up or sign in to vote.
5.00/5 (8 votes)
31 Mar 2013CPOL 57.6K   1.1K   17   8
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)


Written By
Software Developer NoMad Commerce
Turkey Turkey
Melih Mucuk

Software & Mobile App Developer

Visit my blog: http://melihmucuk.com

Comments and Discussions

 
QuestionGetuser result Pin
Member 1329234612-Aug-17 0:50
Member 1329234612-Aug-17 0:50 
QuestionAbout IOS and WCF Pin
Member 1037441921-Apr-15 19:54
professionalMember 1037441921-Apr-15 19:54 
I am not able get parameters value sent from ios application to wcf post method service.
Questiondoesn't work Pin
progmaher21-Nov-14 12:52
progmaher21-Nov-14 12:52 
QuestionAwesome! Pin
jarice197822-Jan-14 5:57
jarice197822-Jan-14 5:57 
QuestionUriTemplate for Function with parameter Pin
Member 99587611-Apr-13 20:47
Member 99587611-Apr-13 20:47 
AnswerRe: UriTemplate for Function with parameter Pin
Melih Mucuk1-May-13 22:47
Melih Mucuk1-May-13 22:47 
GeneralMy vote of 5 Pin
Halil İbrahim Ayhan1-Apr-13 9:13
Halil İbrahim Ayhan1-Apr-13 9:13 
GeneralRe: My vote of 5 Pin
Melih Mucuk1-Apr-13 9:48
Melih Mucuk1-Apr-13 9:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.