1

我正在开发我的第一个 WCF 服务,但在尝试在 Visual Studio 中启动该服务时出现错误。因此,它将在 Cassini 下运行。

错误是:

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";
        }
    }

我错过了什么?

4

2 回答 2

0

也许我弄错了,但我认为当端点为空或相对并且您不使用 IIS 时,您需要使用服务基址,不是吗?

<host>
   <baseAddresses>
       <add baseAddress="http://localhost:1393/MyService"/>
   </baseAddresses>
</host>

这是一篇关于WCF 寻址的文章

编辑:你应该更详细地检查你得到的错误。我认为有一些内部细节可以帮助您解决此案。可能是您的实现中的某些内容不符合 WCF 规则。

于 2012-08-07T21:13:26.607 回答
0

更改 WCF 配置时,编辑器将所有配置移至 app.config 文件。但是,我阅读的很多文章都引用了 web.config 中的配置。因此,我将它们移至 web.config 并删除了 app.config。一切都开始工作了。然后,我遇到了这个问题,它回答了我关于何时使用 web.config 与 app.config 的问题。

于 2012-08-08T15:10:27.257 回答