<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
<bindings>
<customBinding>
<binding name="QQGame.SilverlightWCF.customBinding0">
<binaryMessageEncoding/>
<httpTransport/>
</binding>
</customBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="QQGame.ServiceForSliverlightBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
<behavior name="QQGame.SilverlightWCFBehavior">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service behaviorConfiguration="QQGame.SilverlightWCFBehavior"
name="QQGame.SilverlightWCF">
<endpoint address="" binding="customBinding" bindingConfiguration="QQGame.SilverlightWCF.customBinding0"
contract="QQGame.SilverlightWCF" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
</service>
</services>
</system.serviceModel>
silverlight+WCF的一个项目。WCF在新建的时候已经选择了启用silverlight的WCF服务,在VS2010中调试没有问题。但是发布到IIS7.5以后,WCF的调用就没有反应。需要如何解决?