REST / SOAP endpoints for a WCF service - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T05:39:07Z http://stackoverflow.com/feeds/question/186631 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/186631/rest-soap-endpoints-for-a-wcf-service 14 REST / SOAP endpoints for a WCF service Wessam Zeidan 2008-10-09T10:11:30Z 2008-10-09T12:12:40Z <p>Hi, I have a WCF service and I want to expose it as both a RESTfull service and as a SOAP service. Anyone has done something like this before?</p> http://stackoverflow.com/questions/186631/rest-soap-endpoints-for-a-wcf-service/186695#186695 31 Answer by codemeit for REST / SOAP endpoints for a WCF service codemeit 2008-10-09T10:39:29Z 2008-10-09T12:12:40Z <p>You can expose the service in two different endpoints. the SOAP one can use the binding that support SOAP e.g. basicHttpBinding, the RESTful one can use the webHttpBinding. I assume your REST service will be in JSON, in that case, you need to configure the those two endpoints with the following behaviour configuration</p> <pre><code>&lt;endpointBehaviors&gt; &lt;behavior name="jsonBehavior"&gt; &lt;enableWebScript/&gt; &lt;/behavior&gt; &lt;/endpointBehaviors&gt; </code></pre> <p>An example of endpoint configuration in your scenario is </p> <pre><code>&lt;services&gt; &lt;service name="TestService"&gt; &lt;endpoint address="soap" binding="basicHttpBinding" contract="ITestService"/&gt; &lt;endpoint address="json" binding="webHttpBinding" behaviorConfiguration="jsonBehavior" contract="ITestService"/&gt; &lt;/service&gt; &lt;/services&gt; </code></pre> <p>so, the service will be available at</p> <ul> <li><a href="http://www.example.com/soap" rel="nofollow">http://www.example.com/soap</a></li> <li><a href="http://www.example.com/json" rel="nofollow">http://www.example.com/json</a></li> </ul> <p>Apply [WebGet] to the operation contract to make it RESTful. e.g.</p> <pre><code>public interface ITestService { [OperationContract] [WebGet] string HelloWorld(string text) } </code></pre> <p>Note, if the REST service is not in JSON, parameters of the operations can not contain complex type.</p> <h2>Reply the the post for SOAP and RESTful POX(XML)</h2> <p>For plain old XML as return format, this is an example that would work both for SOAP and XML.</p> <pre><code>[ServiceContract(Namespace = "http://test")] public interface ITestService { [OperationContract] [WebGet(UriTemplate = "accounts/{id}")] Account[] GetAccount(string id); } </code></pre> <p><strong>POX behavior for REST</strong> Plain Old XML</p> <pre><code>&lt;behavior name="poxBehavior"&gt; &lt;webHttp/&gt; &lt;/behavior&gt; </code></pre> <p><strong>Endpoints</strong></p> <pre><code>&lt;services&gt; &lt;service name="TestService"&gt; &lt;endpoint address="soap" binding="basicHttpBinding" contract="ITestService"/&gt; &lt;endpoint address="xml" binding="webHttpBinding" behaviorConfiguration="poxBehavior" contract="ITestService"/&gt; &lt;/service&gt; &lt;/services&gt; </code></pre> <p>Service will be available at</p> <ul> <li><a href="http://www.example.com/soap" rel="nofollow">http://www.example.com/soap</a></li> <li><a href="http://www.example.com/xml" rel="nofollow">http://www.example.com/xml</a></li> </ul> <p><strong>REST request</strong> try it in browser,</p> <blockquote> <p><a href="http://www.example.com/xml/accounts/A123" rel="nofollow">http://www.example.com/xml/accounts/A123</a></p> </blockquote> <p><strong>SOAP request</strong> client endpoint configuration for SOAP service after adding the service reference,</p> <pre><code> &lt;client&gt; &lt;endpoint address="http://www.example.com/soap" binding="basicHttpBinding" contract="ITestService" name="BasicHttpBinding_ITestService" /&gt; &lt;/client&gt; </code></pre> <p>in C#</p> <pre><code>TestServiceClient client = new TestServiceClient(); client.GetAccount("A123"); </code></pre> <p>Another way of doing it is to expose two different service contract and each one with specific configuration. This may generate some duplicates at code level, however at the end of the day, you want to make it working.</p> http://stackoverflow.com/questions/186631/rest-soap-endpoints-for-a-wcf-service/186731#186731 0 Answer by Wessam Zeidan for REST / SOAP endpoints for a WCF service Wessam Zeidan 2008-10-09T10:53:36Z 2008-10-09T10:53:36Z <p>My REST service is using XML. Anyway, the thing is that I'm using UriTemplate to map different urls to different methods in the service. So for example, I have www.example.com/service.svc/accounts mapped to the GetAccounts method. The problem I'm having is that when I add another endpoint and configure it using basicHttpBinding, the url that's used to access the soap endpoint interferes with the REST endpoint urls. So when I try to access the SOAP endpoint using www.example.com/service.svc/soap, I get Service Endpoint not found error.</p>