Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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=&quot;Data Source=PNEITSH1C2266D\SQLEXPRESS;Initial Catalog=FOASCentrum;Integrated Security=True;MultipleActiveResultSets=True&quot;" 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.

share|improve this question
1  
What is the error that you get when you try to return them as JSON? – carlosfigueira Jul 27 '11 at 14:03
The error is-Internet Explorer cannot display the webpage. It is not happening in XML format, so it can not be a connection problem. – Hardeep Jul 29 '11 at 4:10
IE (and most other browsers) cannot display JSON content. You can try Fiddler (which can) to see if the service is returning the appropriate content. – carlosfigueira Jul 29 '11 at 4:15
Okay, i'll try....Thanks for help. – Hardeep Jul 29 '11 at 4:17
I used Fiddler2, but its showing Error- ReadResponse() failed: The server did not return a response for this request. Concurrently, the same is not happening for Xml format, since I am getting response in XML. – Hardeep Jul 29 '11 at 7:10
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.