我是一个完整的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收到)。
答案 0 :(得分:4)
我遇到了同样的问题。 我找不到解决办法。最终我不得不创建整个SOAP消息并通过HTTPWebRequest发送它。
看看here。
答案 1 :(得分:0)
以下是有关如何将身份验证标头发送到soap webservices的示例:Authentication for Web Services (using SOAP headers)
答案 2 :(得分:-1)
XmlDocument ReqDoc = new XmlDocument();
XmlDocument doc = new XmlDocument();
// request message
ReqDoc.Load(@"D:\104Resqurst.xml");
//adding soap headder
XmlElement root = (XmlElement)doc.AppendChild(doc.CreateElement("soapenv", "Envelope", "http://www.w3.org/2001/XMLSchema-instance"));
root.SetAttribute("xmlns", "http://mark.com/services/contracts");
XmlElement header = (XmlElement)root.AppendChild(doc.CreateElement("soapenv", "Header", "http://www.w3.org/2001/XMLSchema-instance"));
XmlElement body = (XmlElement)root.AppendChild(doc.CreateElement("soapenv", "Body", "http://www.w3.org/2001/XMLSchema-instance"));
//assigning the request document to soap header doc
doc.GetElementsByTagName("soapenv:Body")[0].InnerXml = ReqDoc.OuterXml;