使用soap 1.2的WCF服务

问题描述 投票:0回答:1

我有这个WCF服务使用soap1正常工作。我正在尝试将其更改为在soap1.2中运行,但我无法进行。

我尝试在Web配置中更改不同的内容。

首先,我更改了wsHttpBinding的basicHttpBinding。我也改变了协议,删除soap1.1并添加肥皂1.2

如何才能使我的WCF Web服务在soap1.2中运行?

我在配置文件中尝试的一些代码:

<webServices>
  <protocols>
    <add name="HttpSoap" />
    <add name="HttpSoap12" />
  </protocols>
</webServices> 

<protocolMapping>
  <remove scheme="http" />
  <add scheme="http" binding="wsHttpBinding" />
</protocolMapping> 
c# web-services wcf
1个回答
0
投票

问题不在于项目。我正在使用Soap UI来调用该服务。我确实知道我必须修改Soup UI WS-Addressing设置才能工作。我将Must understand选项设置为true并检查添加默认wsa To:选项。有了这个服务使用汤ui工作正常

© www.soinside.com 2019 - 2024. All rights reserved.