WCF配置 - HTML5

时间:2013-12-19 10:34:09

标签: wcf

我正在使用WCF在MVC中工作。我需要从我的MVC应用程序以及HTML5页面连接WCF服务。请告诉我正确的配置WCF服务以连接两者的方法。

如果我正在使用 HttpGetEnabled = true ,那么我可以从MVC项目访问,但不能从HTML访问。

帮我解决这个问题

这是我的WCF的web.config文件,

<?xml version="1.0"?>
<configuration>  
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<behaviors>
  <serviceBehaviors>
    <behavior>          
      <serviceMetadata httpGetEnabled="true"/>          
      <serviceDebug includeExceptionDetailInFaults="true"/>
    </behavior>
  </serviceBehaviors>
</behaviors>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>

0 个答案:

没有答案