Click here to Skip to main content
15,896,154 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
Hi,

I have developed couple of WCF services in C# with return type as JSON below is the structure of interface

C#
[OperationContract]
[WebGet(UriTemplate = "/userRegestration/{Username}/{Password}/{Email}/{DeviceMecId}/{DeviceType}/", ResponseFormat = WebMessageFormat.Json)]


I am not able to consume this WCF service on Iphone even it is working fine in WCFClient, please help me out how to run WCF service with Iphone to save the data to the server.

Any help will be highly appreciated.

With Regards,

Balwant
Posted
Updated 28-Feb-13 22:15pm
v2

1 solution

Service in JSON format and works with IPhone App.
Web.Config Settings

XML
<system.servicemodel>
      <services>
        <service name="AppWCFService.GreatDealService">
          <endpoint address="">
                    binding="webHttpBinding"
                    contract="AppWCFService.IGreatDealService"
                    behaviorConfiguration="Web"/>
        </endpoint></service>
      </services>
      <behaviors>
        <servicebehaviors>
          <behavior>
            <servicemetadata httpgetenabled="true" />
            <servicedebug includeexceptiondetailinfaults="false" />
          </behavior>
        </servicebehaviors>
        <endpointbehaviors>
          <behavior name="Web">
            <webhttp />
          </behavior>
        </endpointbehaviors>
      </behaviors>
      <servicehostingenvironment multiplesitebindingsenabled="false" aspnetcompatibilityenabled="true" />
    </system.servicemodel>


Service Contact should be

C#
[OperationContract]
        [WebInvoke(Method = "POST", UriTemplate = "/Products_Detail/{ProductID}", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
        clsGreatDeal ProductDetail(String ProductID);


Thats it.
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900