Click here to Skip to main content
15,890,381 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have a WCF service contract defined as follows:

[OperationContract]
    [WebGet(
        UriTemplate =
            "HubContent/{language}?apptype={appType}"
        ,
        ResponseFormat = WebMessageFormat.Json)]
    HubResults GetHubContent(string language, string appType);



In the implmentation of this contract in the service, I return a List of objects that gets parsed out in JSON. However whenever one of the properties of the objects is a URL or any string that contains forward slashes the JSON that is returned by the service in the browser escapes the forward slashes. So this url:- http://www.xxx.com/test/site will look like this

http\/\/www.xxx.com\/test\/site.

Is there something I need to specify maybe in the contract related to formatting to rectify this ?
Posted

1 solution

I just found out that a JSON parser will read the above URL just fine. Problem solved.
 
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