How to add JSONP support in .NET 3.5 WCF REST JSON

I just created a WCF REST JSON service for .NET 4 that uses crossdomainscriptaccessenabled ( http://msdn.microsoft.com/en-us/library/system.servicemodel.webhttpbinding.crossdomainscriptaccessenabled.aspx ). Unfortunately, for me, the service should be used in Azure, and Azure STILL does not support anything other than .NET 3.5. So my question is: how can I most easily add JSONP support to my .NET 3.5 WCF REST JSON service?

0
source share
1 answer

Someone I know found this MSDN article that solves my problem:

http://msdn.microsoft.com/en-us/library/cc716898%28VS.90%29.aspx

+3

Source: https://habr.com/ru/post/1765258/


All Articles