我的C#Web服务客户端向基于Java的Web服务发送以下soap消息:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<getData>
<request>
<requestParameters xmlns="http://b...">
<equals>
...
</equals>
</requestParameters>
</request>
</getData>
</soap:Body>
</soap:Envelope>
和基于Java的Web服务返回错误:
500 Internal Server Error ... Cannot find dispatch method for {}getData ...
用Java编写的客户端可以发送以下消息:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<ns2:getData xmlns:ns2="http://a...">
<ns2:request>
<ns3:requestParameters xmlns:ns3="http://b...">
<ns3:equals>
...
</ns3:equals>
</ns3:requestParameters>
</ns2:request>
</ns2:getData>
</soap:Body>
</soap:Envelope>
在C#中有一种简单的方法可以像Java客户端发送的那样发送SOAP消息:使用名称空间前缀吗?
以下是发送消息的C#代码:
// class MyService is auto-generated using wsdl.exe tool
MyService service = new MyService();
RequestMessage request = new RequestMessage();
...
ResponseMessage response = service.getData(request);
...
更新:
这是RequestMessage类:
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("svcutil", "3.0.4506.2152")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://uri.etsi.org/02657/v1.5.1#/RetainedData")]
public partial class RequestMessage
{
private byte[] requestPriorityField;
private RequestConstraints requestParametersField;
private string deliveryPointHIBField;
private string maxHitsField;
private NationalRequestParameters nationalRequestParametersField;
private System.Xml.XmlElement anyField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(DataType="hexBinary", Order=0)]
public byte[] requestPriority
{
get
{
return this.requestPriorityField;
}
set
{
this.requestPriorityField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Order=1)]
public RequestConstraints requestParameters
{
get
{
return this.requestParametersField;
}
set
{
this.requestParametersField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Order=2)]
public string deliveryPointHIB
{
get
{
return this.deliveryPointHIBField;
}
set
{
this.deliveryPointHIBField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=3)]
public string maxHits
{
get
{
return this.maxHitsField;
}
set
{
this.maxHitsField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute(Order=4)]
public NationalRequestParameters nationalRequestParameters
{
get
{
return this.nationalRequestParametersField;
}
set
{
this.nationalRequestParametersField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlAnyElementAttribute(Order=5)]
public System.Xml.XmlElement Any
{
get
{
return this.anyField;
}
set
{
this.anyField = value;
}
}
}
更新#2:
基于Java的Web服务不喜欢我的C#客户端生成SOAP消息的原因并不是省略名称空间前缀,而是因为getData元素中遗漏了xmlns,所以如果我的消息看起来像这样:
...
<getData xmlns="http://a...">
...
</getData>
...
它有效!
我设法通过在wsdl.exe生成的源代码中手动编辑SoapRpcMethodAttribute将xmlns放在getData中。这是摘录:
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Web.Services.WebServiceBindingAttribute(
Name="AxxxPortTypeBinding", Namespace="http://a...")]
public partial class AxxxService
: System.Web.Services.Protocols.SoapHttpClientProtocol {
...
/// <remarks/>
[System.Web.Services.Protocols.SoapRpcMethodAttribute(
"http://a.../getData",
RequestNamespace = "http://a...",
ResponseNamespace = "http://a...",
Use = System.Web.Services.Description.SoapBindingUse.Literal)]
[return: System.Xml.Serialization.XmlElementAttribute("response")]
public ResponseMessage getData(RequestMessage request) {
object[] results = this.Invoke("getData", new object[] {
request});
return ((ResponseMessage)(results[0]));
}
...
}
在我改变之前,SoapRpcMethodAttribute有以下构造函数:
[System.Web.Services.Protocols.SoapRpcMethodAttribute(
"", RequestNamespace = "", ResponseNamespace = "",
Use = System.Web.Services.Description.SoapBindingUse.Literal)]
现在,问题是:在WSDL文件中放入什么,以便SoapRpcMethodAttribute首先在构造函数中使用这些字符串(由wsdl.exe工具填充)?
答案 0 :(得分:1)
在生成服务代码之前WSDL.exe工具没有正确引入命名空间之前,我已经看到过这个问题。检查生成的代码中的request
对象定义。我的猜测是XmlRootAttribute
对象的类定义中没有定义request
属性。
将属性[XmlRootAttribute(Namespace "http://a...")]
添加到request
对象的类定义中可以解决此问题。
作为旁注,我建议使用部分类定义在单独的代码文件中添加此附加属性。在单独的文件中定义属性将允许您在必要时使用WSDL.exe重新生成Web服务代码,而不会覆盖修复程序以正确设置根元素的命名空间。
答案 1 :(得分:0)
生成的代理类应该具有正确的命名空间。我推荐两件事:
1)从命令行运行WSDL.EXE并注意是否有任何错误或警告。如果是,请编辑您的问题以包含它们。
2)除非您使用.NET 2.0,否则应尝试使用“添加服务引用”或等效的“SVCUTIL.EXE”来创建代理类,这些将使用客户端上的现代WCF基础结构,更有可能已经修复以解决这个问题。
答案 2 :(得分:-1)
我遇到了同样的问题并解决了它更改了 System.Web.Services.Protocols.SoapDocumentMethodAttribute 属性中属性使用的值,这些属性与每个Web服务方法相对应。 System.Web.Services.Description.SoapBindingUse。 Literal 默认值已替换为System.Web.Services.Description.SoapBindingUse。编码。