WCF Internet Explorer(首发)

时间:2012-01-25 18:34:21

标签: wcf internet-explorer

我创建了一个简单的WCF库,并在具有BasicHttpBinding端点的控制台应用程序中托管服务。

控制台主机正在运行。我试图在IE9 / Firefox中打开服务..... http://localhost:8080/EService/basic。在IE9中它显示错误,在Firefox中它没有显示任何内容。

我正在以管理员身份运行VS 2010

我附上代码 https://rapidshare.com/files/3306100109/ChatSolution.rar

1 个答案:

答案 0 :(得分:1)

问题是您在EvalServiceLibarary和ConsoleChat应用程序中的2个位置定义了服务端点。

从服务库中删除ServiceModel部分,并将其放在ConsoleChat应用程序中。我确实在您的控制台应用程序中尝试了以下配置,它可以工作:

<system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior name="Metadata">
          <serviceMetadata httpGetEnabled="true" />          
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <bindings>
      <wsHttpBinding>
        <binding name="NoSecurityPlusRM">
          <reliableSession enabled="true" />
          <security mode="None" />
        </binding>
      </wsHttpBinding>
    </bindings>
    <services>
      <service behaviorConfiguration="Metadata" name="EvalServiceLibrary.EvalService">
        <endpoint address="basic" binding="basicHttpBinding"
          contract="EvalServiceLibrary.IEvalService" />
        <endpoint address="ws" binding="wsHttpBinding"
          bindingConfiguration="NoSecurityPlusRM" contract="EvalServiceLibrary.IEvalService" />        
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8080/evals"/>
          </baseAddresses>
        </host>
      </service>
    </services>
  </system.serviceModel>

现在只需从浏览器浏览到http://localhost:8080/evals即可看到服务页面。