我有一个应用程序可以从java更改为wpf。我已经有了Web服务,并且正在尝试在wpf项目中进行一些测试。但是,当我从Web服务访问功能时,出现此错误'提供的URI方案'http'无效;预期的“ https”。参数名称:“通过” 。 我尝试了与互联网不同的操作,例如修改app.config,但没有用。 这就是我的WPF测试项目的app.config的样子:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="UpdateWebServiceSoap">
<security mode="Transport">
<transport clientCredentialType="None" />
</security>
</binding>
</basicHttpBinding>
</bindings>?
<client>
<endpoint address="http://localhost:1391/..."
binding="basicHttpBinding" bindingConfiguration="UpdateWebServiceSoap"
contract="UpdateService.UpdateWebServiceSoap" name="UpdateWebServiceSoap" />
</client>
</system.serviceModel>
</configuration>