curl 命令行的 Soap wsa:To 规范
Soap wsa:To specification at curl command line
如何编写包含 wsa:To
Soap 规范的 curl
命令行,例如 http://myserver.services.com/Services/ServiceUsers.svc?wsdl
?
好吧,最后这不是我想要的,但我设法实现了我的目标。解决方案是使用 --data
参数,后跟与请求相对应的 xml request
,并在其中放入 wsa:To
header。例如:
curl --location --request POST 'http://myserver.services.com/Services/ServiceUsers.svc' --header 'Content-Type: application/soap+xml; charset=UTF-8' --data '<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tem="http://tempuri.org/"><soap:Header xmlns:wsa="http://www.w3.org/2005/08/addressing"><wsa:Action>http://tempuri.org/IServiceUsers/UsersList</wsa:Action><wsa:To>http://myserver.services.com/Services/ServiceUsers.svc</wsa:To></soap:Header><soap:Body><tem:UsersList/></soap:Body></soap:Envelope>'
感谢@DingPeng 的帮助,您对 .Net 框架的可用性可能是正确的
如何编写包含 wsa:To
Soap 规范的 curl
命令行,例如 http://myserver.services.com/Services/ServiceUsers.svc?wsdl
?
好吧,最后这不是我想要的,但我设法实现了我的目标。解决方案是使用 --data
参数,后跟与请求相对应的 xml request
,并在其中放入 wsa:To
header。例如:
curl --location --request POST 'http://myserver.services.com/Services/ServiceUsers.svc' --header 'Content-Type: application/soap+xml; charset=UTF-8' --data '<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:tem="http://tempuri.org/"><soap:Header xmlns:wsa="http://www.w3.org/2005/08/addressing"><wsa:Action>http://tempuri.org/IServiceUsers/UsersList</wsa:Action><wsa:To>http://myserver.services.com/Services/ServiceUsers.svc</wsa:To></soap:Header><soap:Body><tem:UsersList/></soap:Body></soap:Envelope>'
感谢@DingPeng 的帮助,您对 .Net 框架的可用性可能是正确的