使用 .NET 4.0 的 REST 式工作流服务
使用 WCF,我们可以创建可以接受 HTTP POST 并简单接受 XElement 作为参数的服务。我想对工作流服务做类似的事情,以便我可以使用 jQuery 将 xml 信息集发布到服务,让它运行一系列规则,然后返回 xml 信息集。
借助 WCF 服务,我可以简单地使用 WebInvoke 装饰操作并继续我的快乐之路。是否可以将 WebInvoke 与工作流服务一起使用?如果可以,我应该如何操作?
With WCF, we can create services that can accept leverage HTTP POST and simple accept an XElement as it's parameter. I'd like to do something similar with a workflow service so that I can use jQuery to post an xml infoset to a service, have it run through a bunch of rules and then return an xml infoset.
With a WCF service, I can simply decorate the operation w/ WebInvoke and go on my merry way. Is it possible to use WebInvoke w/ a Workflow Service and if so, how should I go about?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
工作流服务当前与传统的 WCF SOAP 绑定。目前,您无法将 WCF REST API(即 WebHttp 绑定)与 WF 4 一起使用。
Workflow services are currently tied to traditional WCF SOAP. You cannot use the WCF REST API (i.e., the WebHttp binding) with WF 4 currently.