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.
[ServiceContract(Namespace = "http://test")]public interface ITestService [OperationContract] [WebGet(UriTemplate = "accounts/{id}")] Account[] GetAccount(string id);POX behavior for REST Plain Old XML
<behavior name="poxBehavior">Endpoints
<service name="TestService"> <endpoint address="soap" binding="basicHttpBinding" contract="ITestService"/> <endpoint address="xml" binding="webHttpBinding" behaviorConfiguration="poxBehavior" contract="ITestService"/>Service will be available at
http://www.example.com/soap http://www.example.com/xml REST requesttry it in browser,
http://www.example.com/xml/accounts/A123
SOAP requestclient endpoint configuration for SOAP service after adding the service reference,
<endpoint address="http://www.example.com/soap" binding="basicHttpBinding" contract="ITestService" name="BasicHttpBinding_ITestService" />in C#
TestServiceClient client = new TestServiceClient();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.
