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?
|
|
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
An example of endpoint configuration in your scenario is
so, the service will be available at Apply [WebGet] to the operation contract to make it RESTful. e.g.
Note, if the REST service is not in JSON, parameters of the operations can not contain complex type. Reply the the post for SOAP and RESTful POX(XML)For plain old XML as return format, this is an example that would work both for SOAP and XML.
POX behavior for REST Plain Old XML
Endpoints
Service will be available at REST request try it in browser, SOAP request client endpoint configuration for SOAP service after adding the service reference,
in C#
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. |
|||
|
|
|
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. |
||
|
|
