oData + Regular SVC?
HI Steve,As other members mentioned, if you want to return JSON format data in WCF, building a REST service(through webHttpBinding) is the way to go. Here are some further reference on WCF REST...
View ArticleoData + Regular SVC?
As Yi-Lun mentoined, your requirement is REST and not SOAP.1-In VS, Create WebApplication of any kind. 2- Temporary set the project to .NET 3.5 (default ist .NET 4.0) 3-Click on AddNewItem and type...
View ArticleoData + Regular SVC?
Hello, if you use SOAP services, you cannot return JSON. You have to return SOAP. So you need a REST service. You can use either WCF or ASP.NET Web API to build REST services. You can also build a WCF...
View ArticleoData + Regular SVC?
I have an oData.svc which is working great, but I want another .svc to just be a regular simple WCF service to return some JSON...is that possible? When I add a new .svc I can't get it to do anything...
View Article