I am having few queries regarding WCF.
How many number of endpoints can be defined in a web.config of a wcf service?
What is the difference between a service library and service application?
What are the ways of creating an end point in service library.
Any help from your side is appreciated.
Loading
Resmi SatishPosted Jun 11, 2014, 2:30 AM
Abhishek KumarPosted Jun 5, 2014, 3:34 AM
How many number of endpoints can be defined in a web.config of a wcf service?
No limit
What is the difference between a service library and service application?
The WCF Service Application template can be used to create WCF services with a hosting website created within the project
The WCF Service Library template can be used to create WCF services that are hosted by the WCF Service Host, and these can be tested using the WCF service Test Client.
What are the ways of creating an end point in service library.
- User Edit web config file to create end points.
- by using C# code you can create end points.
Hope this will help.Abhishek