Folks, I\'m building a pretty standard workflow that I want exposed via a WCF endpoint - I\'m using the \"WCF Service Application\" project template and I\'ve got a .xamlx
There are no out of the box activities that will allow you to use REST with WF, the Receice is pure SOAP.
You can either build a custom REST Receive activity and use that with your workflow. Depending on your needs this is going to be quite a handful to a lot of work. The easy option is use use a standard REST WCF endpoint and convert the REST data to SOAP, pass rhe request on to the workflow, and do the reverse on the result message.