当我尝试在 Visual Studio 2012 中运行我的 wcf 时,我收到以下错误
用法:WcfSvcHost.exe /service:<PathToServiceDLL> /config:<PathToServiceConfig> [/client:<pathToClientApp>][/clientArgs:<argumentsToBePassedToClientApp>]
我读过一些博客,这些博客暗示环境可能有问题,但我可以成功运行不同的项目。
我的 app.config文件重要设置:
<endpoint address="" binding="wsHttpBinding" contract="Sac.Business.Interfaces.IManufacturer">
<service name="Sac.Business.Logic.ManufacturerLogic" behaviorConfiguration="ManufactuerBehave">
<behavior name="ManufactuerBehave">
我在另一个项目中的svc文件:
<%@ ServiceHost Language="C#" Debug="true" Service="Sac.Business.Logic.ManufacturerLogic" %>
<%@ Assembly Name="Sac.Business.Logic" %>
我不确定我可能会错过什么。