我是SOAP新手,无法弄清楚问题出在哪里。我看过similar SO post,但很遗憾,它没有帮助。 错误消息是:
WARNING: Interceptor for {http://bbbts/Service}Service#{http://bbbts/Service}ConfirmAStatus has thrown exception, unwinding now
IllegalArgumentException: Part {http://bbbts/Service}parameters should be of type package.ConfirmAStatusResponse, not package.ConfirmAStatus
我在Camel中配置了端点,如下所示:
CxfEndpoint cxfEndpoint = new CxfEndpoint();
cxfEndpoint.setAddress("http://0.0.0.0:8888/aaans/services/Service");
cxfEndpoint.setWsdlURL("Service.wsdl");
cxfEndpoint.setCamelContext(camelContext);
cxfEndpoint.setBus(bus);
cxfEndpoint.setServiceNameString("bbbts:Service");
cxfEndpoint.setDefaultOperationName("ConfirmAStatus");
cxfEndpoint.setDefaultOperationNamespace("http://bbbts/Service");
try {
cxfEndpoint.setServiceClass("package.Service");
} catch (ClassNotFoundException e1) {
}
cxfEndpoint.setDataFormat(DataFormat.POJO);
我已经通过cxf-codegen生成了Service类,它看起来像这样:
@WebService(targetNamespace = "http://bbbts/Service", name = "Service")
@XmlSeeAlso({ObjectFactory.class})
@SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
public interface Service {
@WebMethod(operationName = "ConfirmAStatus", action = "http://aaans/2012/nsv1/ConfirmARecallStatus")
@Action(input = "http://aaans/2012/nsv1/ConfirmProductBatchRecallStatus", output = "http://aaans/2012/nsv1/ConfirmAStatusResponse")
@WebResult(name = "ConfirmAStatusResponse", targetNamespace = "http://aaans/2012/", partName = "parameters")
public ConfirmAStatusResponse confirmAStatus(
@WebParam(partName = "parameters", name = "ConfirmAStatus", targetNamespace = "http://aaans/2012/")
ConfirmAStatus parameters
);
.... ConfirmBStatusResponse ...
我已经继承了WSDL文件,但是我对使用WSDL文件没有任何经验,所以请告诉我哪些部分会有所帮助。 这是wsdl文件中的操作:
<wsdl:operation name="ConfirmAStatus">
<wsdl:input wsaw:Action="http://aaans/2012/nsv1/ConfirmAStatus" message="tns:Service_ConfirmAStatus_InputMessage"/>
<wsdl:output wsaw:Action="http://aaans/2012/nsv1/ConfirmAStatusResponse" message="tns:Service_ConfirmAStatus_OutputMessage"/>
</wsdl:operation>
我很茫然地理解错误消息。该函数的参数类型显然是ConfirmAStatus类型,而不是错误消息中所声明的... StatusResponse。我尝试添加默认操作名称空间,如另一篇SO文章中所述,但无济于事。我什至不知道它是否与名称空间有关。如果有人在我可以解决这个问题的方向上有指针,我将非常感激。
编辑:添加wsdl:message部分
<wsdl:message name="Service_ConfirmAStatus_InputMessage">
<wsdl:part name="parameters" element="q1:ConfirmAStatus" xmlns:q1="hhttp://aaans/2012/"/>
</wsdl:message>
<wsdl:message name="Service_ConfirmAStatus_OutputMessage">
<wsdl:part name="parameters" element="q2:ConfirmAStatusResponse" xmlns:q2="http://aaans/2012/"/>
</wsdl:message>
答案 0 :(得分:1)
错误消息表明参数parameters
的类型为ConfirmAStatus
,但参数类型为ConfirmAStatusResponse
由于您的实现需要类型ConfirmAStatus
ConfirmAStatus parameters
我怀疑WSDL中输入消息的定义是错误的,但是您的问题中未包含该部分。
您可能有这样的消息定义
<wsdl:message name="Service_ConfirmAStatus_InputMessage">
<wsdl:part name="NameOfTheElement" element="ReferenceToTheSchemaElementThatRepresentsThisMessagePart"/>
</wsdl:message>
在此示例中,ReferenceToTheSchemaElementThatRepresentsThisMessagePart
的XML模式定义似乎是ConfirmAStatus
类型,而不是ConfirmAStatusResponse