我有一个silverlight 应用程序,它运行良好并且可以访问托管在silverlight 应用程序本身中的WCF 服务。它使用的端口是 1794。
当我部署到其他服务器(开发或测试或登台)时,应用程序无法访问 WCF 服务。
这是我的 ServiceReference.ClientConfig 的一个片段,看起来像
<endpoint address="http://localhost:1794/MyWebService.svc"
binding="customBinding" bindingConfiguration="CustomBinding_MyWebService"
contract="ConfigMgmtServiceReference.MyWebService"
name="CustomBinding_MyWebService" />
我的根文件夹也包含 clientaccesspolicy.xml 文件。
我怎样才能解决这个问题?