我正在开发我的第一个WCF服务,尝试在Visual Studio中启动该服务时遇到错误。因此,它将在卡西尼号下运行。
错误是:
Error: Cannot obtain Metadata from http://localhost:1393/BEService.svc
这是我的配置
<behaviors>
<serviceBehaviors>
<behavior name="metadataBehavior">
<serviceMetadata httpGetEnabled="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service behaviorConfiguration="metadataBehavior" name="DataServices.BEService">
<endpoint address="" binding="basicHttpBinding" contract="DataServices.IBEService" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:1393" />
</baseAddresses>
</host>
</service>
</services>
这是我定义服务协定的接口:
[ServiceContract]
public interface IBEService
{
[OperationContract]
string Get271EDI(string EDI, DDKSLib.Enums.EDIRequestor requestor);
}
这是实现它的类:
public class BEService : IBEService
{
public string Get271EDI(string EDI, Enums.EDIRequestor requestor)
{
return "this is a test";
}
}
我错过了什么?
也许我弄错了,但我认为当端点为空或相对且不使用 IIS 时,您需要使用基址进行服务,不是吗?
<host>
<baseAddresses>
<add baseAddress="http://localhost:1393/MyService"/>
</baseAddresses>
</host>
下面是一篇关于 WCF 寻址的文章
编辑:您应该更详细地检查您得到的错误。我认为有一些内部细节可以帮助您解决案件。可能是实现中的某些内容不符合 WCF 规则。
更改 WCF 配置时,编辑器将所有配置移动到 app.config 文件中。但是,我阅读的很多文章都引用了web.config中的配置。因此,我将它们移动到web.config并删除了app.config。一切都开始工作了。然后,我遇到了这个问题,它回答了我关于何时使用 web.config 与 app.config 的问题。