调用www.example.com Web服务的身份验证方法时出现以下错误Stamps.com。
远程服务器返回错误:(500)内部服务器错误。
下面是请求的SOAP 1.1定义。
POST /swsim/SwsimV45.asmx HTTP/1.1
Host: swsim.testing.stamps.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://stamps.com/xml/namespace/2015/05/swsim/swsimv45/AuthenticateUser"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<AuthenticateUser xmlns="http://stamps.com/xml/namespace/2015/05/swsim/swsimv45">
<Credentials>
<IntegrationID>guid</IntegrationID>
<Username>string</Username>
<Password>string</Password>
</Credentials>
</AuthenticateUser>
</soap:Body>
</soap:Envelope>
下面是调用服务的代码。
private void button2_Click(object sender, EventArgs e)
{
CallStampsService();
}
private void CallStampsService()
{
HttpWebRequest request = CreateHTTPWebRequest();
XmlDocument soapEnvelopeXml = new XmlDocument();
soapEnvelopeXml.LoadXml(@"<?xml version=""1.0"" encoding=""utf-8""?>
<soap:Envelope xmlns:soap=""http://schemas.xmlsoap.org/soap/envelope/""
xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance""
xmlns:xsd=""http://www.w3.org/2001/XMLSchema""
xmlns:tns=""http://stamps.com/xml/namespace/2015/05/swsim/swsimv45"">
<soap:Body>
<AuthenticateUser>
<Credentials>
<IntegrationID>my_integration_id</IntegrationID>
<Username>my_username</Username>
<Password>my_password</Password>
</Credentials>
</AuthenticateUser>
</soap:Body>
</soap:Envelope>");
using (Stream stream = request.GetRequestStream())
{
soapEnvelopeXml.Save(stream);
}
using (WebResponse response = request.GetResponse())
{
using (StreamReader rd = new StreamReader(response.GetResponseStream()))
{
string soapResult = rd.ReadToEnd();
MessageBox.Show(soapResult);
}
}
}
public static HttpWebRequest CreateHTTPWebRequest()
{
HttpWebRequest webRequest = (HttpWebRequest)WebRequest.Create(@"https://swsim.testing.stamps.com/swsim/SwsimV45.asmx");
webRequest.Headers.Add(@"SOAPAction: " + @"http://stamps.com/xml/namespace/2015/05/swsim/swsimv45/AuthenticateUser");
webRequest.ContentType = "text/xml;charset=utf-8";
webRequest.Accept = "text/xml";
webRequest.Method = "POST";
return webRequest;
}
}
我联系了Stamps.com,他们的支持人员说他们不能提供太多关于代码的帮助,但表示他们的终端上出现了以下错误。
<faultstring>Server did not recognize the value of HTTP Header SOAPAction: http://stamps.com/xml/namespace/2015/05/swsim/swsimv45.</faultstring>
所以我检查了我的Header对象,得到了这个。
{SOAPAction: http://stamps.com/xml/namespace/2015/05/swsim/swsimv45/AuthenticateUser
Content-Type: text/xml;charset=utf-8
Accept: text/xml
Host: swsim.testing.stamps.com
Content-Length: 580
Expect: 100-continue
Connection: Keep-Alive
}
应用程序在此行失败。
WebResponse响应=请求.GetResponse()
所以我检查了innerXML,得到了这个。
<?xml version=\"1.0\" encoding=\"utf-8\"?>
<soap:Envelope
xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\"
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"
xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"
xmlns:tns=\"http://stamps.com/xml/namespace/2015/05/swsim/swsimv45\">
<soap:Body>
<AuthenticateUser>
<Credentials>
<IntegrationID>my_integrationID</IntegrationID>
<Username>my_username</Username>
<Password>my_password</Password>
</Credentials>
</AuthenticateUser>
</soap:Body>
</soap:Envelope>
我不知道我错在哪里。
2条答案
按热度按时间cczfrluj1#
我感受到了你的痛苦,我已经成功地使用了以下方法:
--开机自检
--标题
--车身
请注意,www.example.com名称空间有很多版本stamps.com,有些很好用,有些则令人沮丧。
7eumitmz2#
是的,Stamps文档非常令人困惑。尤其是在它们的一堆WSDL版本中。但是他们的支持人员的回答令人惊讶地信息丰富。
http://stamps.com/xml/namespace/2015/05/swsim/swsimv45
xmls
引用在错误的位置。但是他们没有告诉你。以及为什么。xmls
引用命名空间类,其中存储了引用它的实体的定义。例如,
<AuthenticateUser xmlns="http://stamps.com/xml/namespace/2015/01/swsim/swsimv42">
表示AuthenticateUser
的定义位于http://stamps.com/xml/namespace/2015/01/swsim/swsimv42
命名空间中。非全局SOAP元素(自定义)位于自定义命名空间中。此处一切正常。或者
<soap:Envelope ... mlns:tns=""http://stamps.com/xml/namespace/2015/05/swsim/swsimv45"">
告诉soap
元素的描述应该从http://stamps.com/xml/namespace/2015/05/swsim/swsimv45
命名空间使用。但是soap:Envelope
元素对于SOAP是全局的。并且本地命名空间没有它的定义。这就是为什么会出现错误。若要解决此问题,您需要在适当的位置引用该命名空间。将其从
<soap:Envelope ...>
移动到〈AuthenticateUser ...〉。您的SOAP信封将正常。P.S.知道,这个问题很老了。但是它没有得到回答,可以帮助那些在谷歌上搜索它的人。