如何在wcf中的standardendpoint元素标记中给出端点地址?

时间:2012-02-29 06:00:24

标签: wcf entity-framework

在我的本地机器服务中运行正常。但是在将发布的文件放到其他系统时,服务没有运行。请告诉我。我的web.config文件在下面。请告诉我在哪里给出端点地址。

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.web>
    <compilation debug="true" targetFramework="4.0">
      <assemblies>
        <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
      </assemblies>
    </compilation>
    <customErrors mode="Off" />
  </system.web>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true">
      <add name="UrlRoutingModule" type="System.Web.Routing.UrlRoutingModule, System.Web, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    </modules>
  </system.webServer>
  <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
    <standardEndpoints>
      <webHttpEndpoint>
        <!--
            Configure the WCF REST service base address via the global.asax.cs file and the default endpoint
            via the attributes on the <standardEndpoint> element below
        -->
        <standardEndpoint   name="" helpEnabled="true" automaticFormatSelectionEnabled="true" />
      </webHttpEndpoint>
    </standardEndpoints>
  </system.serviceModel>
  <connectionStrings>
        <add name="TestDataEntities" connectionString="metadata=res://*/AMI.csdl|res://*/AMI.ssdl|res://*/AMI.msl;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=Venkat-PC;Initial Catalog=TestData;User ID=sa;Password=p@ssw0rd;MultipleActiveResultSets=True&quot;" providerName="System.Data.EntityClient" />
  </connectionStrings>
</configuration>

1 个答案:

答案 0 :(得分:0)

您无法为标准端点定义端点地址。标准端点只是应用于真实端点的模板。您的案例中的真实端点应由您的托管Web应用程序(您的应用程序的URL)和Global.asax中定义的路由(您的URL的相对部分)定义。