views:

10

answers:

1

Hi,

I'm working on few WCF tutorials and I would like to understand the difference between WCF Service Library, WCF Service Application and WCF Workflow Service Application.

Do you have any examples on when I should use service library and service application?

Thank you

+1  A: 

WCF Service Application hosts the service directly in IIS. WCF Service Library you have to handle the hosting yourself. WCF Workflow Service Application does the same as the WCF Service Application except for Workflow services (WF).

RonaldV
Thanks a lot!!!
vikp