I am a budding Software Developer. I'm stuck in a problem, please help me. The problem goes like this:
I am developing a RESTFul WCF Service which will give response in Json format, but I'm unable to do so. I have developed RESTFul WCF Service which gives response in XML format but when I am changing the Response Format to Json it does not work. I am exhausted with all the resources available on internet. Following is the Code Snippet:
App. Config:
<connectionStrings>
<add name="Entities" connectionString="metadata=res://*/FOASCentrum.csdl|res://*/FOASCentrum.ssdl|res://*/FOASCentrum.msl;provider=System.Data.SqlClient;provider connection string="Data Source=PNEITSH1C2266D\SQLEXPRESS;Initial Catalog=FOASCentrum;Integrated Security=True;MultipleActiveResultSets=True"" providerName="System.Data.EntityClient" />
</connectionStrings>
<system.web>
<customErrors mode="Off"/>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<services>
<service name="FOASCentrum.Core.Infrastructure"
behaviorConfiguration="FOASCentrumThrottlingIssue">
<host>
<baseAddresses>
<add baseAddress="http://localhost:9000/FOASCentrum.Core/Infrastructure/" />
</baseAddresses>
</host>
<endpoint name="webHttpTestPoint" address="http://localhost:9000/FOASCentrum.Core/Infrastructure/" binding="webHttpBinding"
bindingConfiguration="webHttpBindingConfig" behaviorConfiguration="WebEndpointBehavior"
contract="FOASCentrum.Library.IInfrastructureService">
<identity>
<dns value="localhost"/>
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding"
contract = "IMetadataExchange"/>
</service>
</services>
<bindings>
<webHttpBinding>
<binding name="webHttpBindingConfig"
maxReceivedMessageSize="2147483647">
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
maxArrayLength="2147483647" maxBytesPerRead="2147483647"
maxNameTableCharCount="2147483647" />
<security
mode="None">
</security>
</binding>
</webHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="FOASCentrumThrottlingIssue">
<serviceMetadata httpGetEnabled="True"
httpGetUrl="http://localhost:9000/FOASCentrum.Core/Infrastructure/"/>
<serviceDebug includeExceptionDetailInFaults="False" />
<serviceThrottling maxConcurrentCalls="5"/>
</behavior>
</serviceBehaviors>
<endpointBehaviors>
<behavior name="WebEndpointBehavior">
<webHttp />
</behavior>
</endpointBehaviors>
</behaviors>
<standardEndpoints>
<webHttpEndpoint>
<standardEndpoint name=""
helpEnabled="true"
automaticFormatSelectionEnabled="false">
</standardEndpoint>
</webHttpEndpoint>
</standardEndpoints>
</system.serviceModel>
<system.webServer>
<directoryBrowse enabled="true"/>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
Interface:
[ServiceContract]
public interface IInfrastructureService
{
[OperationContract]
[WebGet(BodyStyle = WebMessageBodyStyle.WrappedRequest, UriTemplate = "FetchProducts/ProductName={productName}", ResponseFormat = WebMessageFormat.Json)]
IList<Product> FetchProducts(string productName);
[OperationContract]
[WebGet(BodyStyle = WebMessageBodyStyle.WrappedRequest, UriTemplate = "FetchSubProducts/ProductID={productId}", ResponseFormat = WebMessageFormat.Json)]
IList<SubProduct> FetchSubProducts(string productId);
NOTE: There are no issues in the methods, they are working properly.