c# – 添加自定义SoapClient标头
作者:互联网
我是一个完整的C#新手,并且一直试图破解这几个小时但没有成功……
我需要构建一个在C#上使用的SoapClient …我一直在尝试将现有的php客户端移植到c#.
基本上:我需要使用包含用户和密码的Soap头发出请求,这是我应该发送的xml的一个例子.
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://webservices.paymentmanager.mycheck.com">
<soapenv:Header xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<wsse:UsernameToken>
<wsse:Username>test</wsse:Username>
<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">pass</wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
</soapenv:Header>
<SOAP-ENV:Body>
<ns1:testws>
<ns1:x>1</ns1:x>
</ns1:testws>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
我使用Visual Studio’添加服务参考…’当我完成
该服务运行良好,因为使用PHP它的工作非常出色.
我已经认识的C#:
namespace ConsoleApplication1
{
class Program
{
const String VENDOR_ID = "8723";
const String VENDOR_PASS = "test";
const String VENDOR_USER = "pass";
static void Main(string[] args)
{
try
{
PaymentManager.PaymentManagerPortTypeClient test = new PaymentManager.PaymentManagerPortTypeClient();
int num = test.testws(5);
Console.WriteLine(num);
}
catch( Exception e)
{
Console.WriteLine(e.ToString());
}
}
}
}
显然,我不知道如何实现Soap头,因此它抛出了“Missing SOAP Headers”异常(从WebService收到).
解决方法:
我有同样的问题.
我找不到解决办法.最终我不得不创建整个SOAP消息并通过HTTPWebRequest发送它.
看看here.
标签:c,soap,soap-client,soapheader 来源: https://codeday.me/bug/20190630/1333351.html