luis
luis

Reputation: 11

WCF workflow service with Ajax

I have a WCF Service, and I need know it ,is possible consume form an ajax client?

The extension of the workflow files that I intend to consume are of type .xaml

Upvotes: 1

Views: 44

Answers (1)

Anuj Kumar
Anuj Kumar

Reputation: 81

WCF Xaml-based WF Services are exposed as SOAP based services, so ajax client can work out, but it would be very difficult to construct the payload. I would recommend to create a thin layer of webapi that can accept json and interact with WCF service.

Upvotes: 1

Related Questions