user298549
user298549

Reputation: 81

Silverlight and Windows Workflow Foundation

Can I make a Silverlight application communicate with a Windows Workflow Foundation (WF) application? If yes, how can I do that?

I tried to add a reference from my Silverlight application to a WF application and it doesn't work.

Upvotes: 1

Views: 806

Answers (1)

mikehole
mikehole

Reputation: 11

If your application was a service application, then yes.

Silverlight won't host a workflow, but it could call a workflow service if the workflow you need to run is hosted within a service rather than an application.

It should be a matter of adding the service reference within the Silverlight application.

Upvotes: 1

Related Questions