Click here to Skip to main content
15,891,703 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am getting fiddler 504 error when am calling wcf rest service using fiddler. But it is working fine when i change the response format to xml.



anybody resolve the problem.

XML
The source code given below.

<pre><pre lang="c#"><pre lang="xml">[OperationContract]
[WebInvoke(
        ResponseFormat = WebMessageFormat.Json,
        RequestFormat = WebMessageFormat.Json,
        BodyStyle = WebMessageBodyStyle.Bare,
        UriTemplate = &quot;GetApplicationInfo&quot;, Method = &quot;GET&quot;)]
IEnumerable&lt;ApplicationTypeData&gt; GetApplicationInfo();</pre>
</pre></pre>



Service Implementation is

C#
public IEnumerable<ApplicationTypeData> GetApplicationInfo()
       {
           List<ApplicationTypeData> applicationTypeDataList = new List<ApplicationTypeData>();

           using (TelerikDMV6HawaiiEFEntities1 entity=new TelerikDMV6HawaiiEFEntities1())
           {
               var appTypeList = entity.ApplicationTypes;
               foreach (var item in appTypeList)
               {
                   ApplicationTypeData appTypeData = new ApplicationTypeData();
                   appTypeData.ApplicationTypeID = item.ApplicationTypeID;
                   appTypeData.ApplicationTypeName = item.ApplicationTypeName;
                   appTypeData.ApplicationTypeDescription = item.ApplicationTypeDescription;

                   applicationTypeDataList.Add(appTypeData);
               }
           }
           return applicationTypeDataList;
       }



And the service url is http://localhost:3536/RestService.svc/IApplicationModule/GetApplicationInfo"

when i was calling from fiddler 504 error was coming.

Anybody solve this problem
Posted

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

  Print Answers RSS
Top Experts
Last 24hrsThis month


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