.svc file is a text file. This file is similar to our .asmx file in web services. This file contains the details required for WCF service to run it successfully. This file contains following details : 1. Language (C# / VB) 2. Name of the service 3. Where the service code resides Example of .svc file <%@ ServiceHost Language="C#/VB" Debug="true/false" CodeBehind="Service code files path" Service="ServiceName"
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
This file contains the details required for WCF service to run it successfully.
This file contains following details :
1. Language (C# / VB)
2. Name of the service
3. Where the service code resides
Example of .svc file
<%@ ServiceHost Language="C#/VB" Debug="true/false" CodeBehind="Service code files path" Service="ServiceName"