error while running the WCF application
Hello all when i am trying to run the application i am getting error like this one..
The service.svc file has the following code..
<%@ ServiceHost Language="C#" Debug="true" Service="prod开发者_StackOverflowcuts.ProductServiceImpl" CodeBehind="~/App_Code/ProductsService.cs" %>
Please help me.. Thankyou
WCF is trying to load a type from your application that doesnt exist. On first look it looks like a typo - did you mean to use the name "Products" rather than "prodcuts"?
精彩评论