首页 > 其他分享 >调用WebService异常:提供的 URI 方案“https”无效,应为“http”。 (Parameter 'via')

调用WebService异常:提供的 URI 方案“https”无效,应为“http”。 (Parameter 'via')

时间:2024-12-11 16:45:06浏览次数:4  
标签:via http WebService binding URI https Parameter

解决办法:

var binding = new BasicHttpBinding();
binding.Security.Mode = BasicHttpSecurityMode.Transport;

<bindings>
          <customBinding>
                <binding name="ZWS_CUST">
                    <mtomMessageEncoding messageVersion="Soap11WSAddressing10" />
                    ---<httpTransport authenticationScheme="Basic" />
                     <httpsTransport authenticationScheme="Basic" />
                </binding>
            </customBinding>
 </bindings>      

 

<ws2007HttpBinding>
<binding maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">
  <readerQuotas maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxDepth="100" maxNameTableCharCount="2147483647" maxStringContentLength="2147483647"/>
  <security mode="None"/>
</binding>
</ws2007HttpBinding>


change to 
 

<ws2007HttpBinding>
    <binding name="ws2007https" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647">
        <readerQuotas maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxDepth="100" maxNameTableCharCount="2147483647" maxStringContentLength="2147483647" />
        <security mode="Transport">
          <transport clientCredentialType="None"/>
        </security>
    </binding>
</ws2007HttpBinding>                      

标签:via,http,WebService,binding,URI,https,Parameter
From: https://www.cnblogs.com/jchblog/p/18599893

相关文章

  • Rust 世界中主流的异步运行时性能测试 Tokio/Tokio-uring/MonoIO/GlommIO
    太长不看在ping-pong场景下,Tokio-uring、MonoIO和GlommIO(基于thread-per-core和io-uring模型)并未表现出比Tokio显著更强的性能。Tokio展现了强大的生态能力,具有高度的稳定性、丰富的文档、健壮的语法以及出色的可读性。MonoIO展现了相当的潜力,但其当前的生态支持......
  • Abp-VNext用户权限管理系列文章09---集成webservice
    1、dBridge.WmsService.Host、Bridge.Wms.HttpApi中引用soapcore 2、WmsServiceHostModule中注入服务ConfigureServices方法中//注入WebServicecontext.Services.AddSoapCore(); OnApplicationInitialization方法中app.UseSoapEndpoint<IOrderWebService>("/Orde......
  • Tauri 和 Electron 在后端、前端、引擎安装包资源占用方面的对比,使用表格呈现:
    Tauri是一个开源框架,用于构建桌面应用程序,使用Web技术(HTML、CSS、JavaScript)构建前端,同时利用Rust语言构建后端。它的目标是为开发者提供一种轻量级、快速、跨平台的方式来构建桌面应用程序。怎么样:Tauri提供了极小的应用包体积和高性能,因为它将应用逻辑处理交给Rust,前端......
  • Sigrity Power DC Package Thermal Characterization模式提取封装基板热阻参数-Multi-
    SigrityPowerDCPackageThermalCharacterization模式提取封装基板热阻参数-Multi-DiePackageThermalParameterSigrityPowerDCPackageThermalCharacterization模式是用于提取封装基板的热阻参数的,下面根据JEDECMulti-DiePackageThermalParameter标准介绍如何......
  • 解决 java.lang.SecurityException: Media projections require a foreground service
    我在Android8.0上增加的截屏功能,也声明了响应权限,但是在Android11上就报权限错误。原来在Android10以后启动前台服务时候有第三个参数。低版本我们调用publicfinalvoidstartForeground(intid,Notificationnotification)即可但是在Android10以后需要调用publicfinal......
  • CE235 Computer Security Bitcoin
    Assignment2:BlockchainandMiningwithProof-of-workforBitcoinCE235ComputerSecurityIntroduction1.1BitcoinMiningBitcoinisacryptocurrency.IntheBitcoinsystemBitcoinsareminedthroughproof-of-workmechanism.Bitcoinminersaregiven......
  • [Tricks-00006]CF1558E 如何处理无向图中的任意环?tourist 题,太神啦。
    题意:自己看去。不过有个限制别忘了:每个点的度数都至少为\(\geq2\)。我写这些Trick题解还是要说清思考方法。不过这个题确实有点难以观察到了/ll还是从简单到难地去讲吧:第一件事。如果没有后面那个不能返回的条件的限制。那么其实可能有很多种想法,不过大体思路都是统一的:每......
  • Daiwa Securities Co. Ltd. Programming Contest 2024(AtCoder Beginner Contest 383)-C
    题目大意一个\(H\)行和\(W\)列的网格图。\((i,j)\)表示从上到下第\(i\)行和从左到下第\(j\)列的单元格。每个单元格用字符\(S_{i,j}\)表示。如果\(S_{i,j}\)为#,则该单元格有一个障碍物;如果\(S_{i,j}\)是.则该单元格是空的;如果\(S_{i,j}\)为H,则该单元网格图......
  • 综述Security and Privacy Challenges of ✌Large Language Models A Survey
    文章较长,阅读时长警告⏰!欢迎大家多多支持&推荐!......
  • Spring Security集成JWT
    1.JWT基础1.1.JWT是什么:JWT(JSONWebToken)是一种用于在不同系统之间安全地传递信息的无状态令牌。它通常用于身份验证和授权,尤其在现代Web应用和API中非常常见。JWT是通过对传输的数据进行编码和签名来确保其完整性和安全性。JWT的特点:无状态:JWT不需要在服务器端保存状......