0

这将是一个愚蠢的问题,但是:

当我在 vs 2012 中创建 WCF 服务库时,在 app.config 中我可以找到有关该服务的信息,如下所示。

<system.serviceModel>
    <services>
      <service name="WcfServiceLibrary1.Service1">
        <host>
          <baseAddresses>
            <add baseAddress = "http://localhost:8733/Design_Time_Addresses/WcfServiceLibrary1/Service1/" />
          </baseAddresses>
        </host>
        <!-- Service Endpoints -->
        <!-- Unless fully qualified, address is relative to base address supplied above -->
        <endpoint address="" binding="basicHttpBinding" contract="WcfServiceLibrary1.IService1">

但是当我创建一个 azure wcf 项目(托管在 webrole 中)时,我在 web.config 中找不到任何关于此的信息。我在哪里可以找到它们?启动服务的线路在哪里?

谢谢你的回答,对不起我的英语。

4

2 回答 2

0

可能它应该类似于在 Windows Azure 中使用 WCF 的指南

<ServiceDefinition name="MyService" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceDefinition">
   <WebRole name="WebRole1">
      …
      <Endpoints>
         <InputEndpoint name="HttpIn" protocol="http" port="80" localPort="80" />
      </Endpoints>
   </WebRole>
   …
</ServiceDefinition>
于 2013-04-26T06:38:35.297 回答
0

查看位于您创建的 WCFWebRole 根目录中的 web.config。

于 2013-04-25T21:36:10.630 回答