我有一个我正在努力克服的问题,我离开了,这是可能的,但我不确定如何。
我的服务中有以下配置
<configuration>
<system.serviceModel>
<bindings>
<customBinding>
<binding name="CustomBinding_MyDataService">
<binaryMessageEncoding />
<httpTransport maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" />
</binding>
</customBinding>
</bindings>
<client>
<endpoint address="http://mywebsite.com/vdir/Services/MyDataService.svc"
binding="customBinding" bindingConfiguration="CustomBinding_MyDataService"
contract="HBDataLayer.MyDataService" name="CustomBinding_MyDataService" />
</client>
</system.serviceModel>
问题是端点地址,我将地址设置为实际发布的位置,但是当我尝试在本地调试时,我遇到了跨域策略问题。我必须不断更新在 localhost 和网站之间切换的配置文件。
有人告诉我,它可以配置它,所以你没有这个问题。
有谁知道怎么做?