在lan上访问wcf时没有定义端点

时间:2014-07-17 05:47:19

标签: c# wcf wcf-binding wcf-endpoint

这是我的app.config代码:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>

  <configSections>
    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
      <section name="HelloWorldService.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    </sectionGroup>
  </configSections>
  <appSettings>
    <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
  </appSettings>
  <system.web>
    <compilation debug="true" />
  </system.web>
  <!-- When deploying the service library project, the content of the config file must be added to the host's 
  app.config file. System.Configuration does not support config files for libraries. -->
  <system.serviceModel>
    <services>
      <service name="HelloWorldService.HelloWorld">
        <endpoint address="" binding="basicHttpBinding" contract="HelloWorldService.IHelloWorld">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8733/Design_Time_Addresses/HelloWorldService/HelloWorld/" />
          </baseAddresses>
        </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!-- To avoid disclosing metadata information, 
          set the values below to false before deployment -->
          <serviceMetadata httpGetEnabled="True" httpsGetEnabled="True"/>
          <!-- To receive exception details in faults for debugging purposes, 
          set the value below to true.  Set to false before deployment 
          to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="False" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>

  <applicationSettings>
    <HelloWorldService.Properties.Settings>
      <setting name="conString" serializeAs="String">
        <value>Data Source=192.168.1.1,1433;Initial Catalog=Cock;Integrated Security = false;user=ok;password=123;</value>
      </setting>
    </HelloWorldService.Properties.Settings>
  </applicationSettings>
</configuration>

以下是访问wcf服务时出现的错误。

  

没有端点在http:// *:8080 / HelloWorld.svc上监听   可以接受这个消息。这通常是由错误的地址引起的   或SOAP动作。

1 个答案:

答案 0 :(得分:0)

您似乎已经在8733端口上托管了服务。

尝试使用以下网址访问服务。

http://localhost:8733/Design_Time_Addresses/HelloWorldService/HelloWorld/HelloWorld.svc

http://localhost:8733/Design_Time_Addresses/HelloWorldService/HelloWorld.svc