这篇文章与我的问题最接近。但是,没有说明问题是如何解决的,也没有说明问题出在哪里。
我尝试了一个非常基本的配置来消除任何潜在的问题。
我的 spring-ws-context.xml 是这样的:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:sws="http://www.springframework.org/schema/web-services"
xmlns:oxm="http://www.springframework.org/schema/oxm"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/web-services http://www.springframework.org/schema/web-services/web-services-2.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/oxm http://www.springframework.org/schema/oxm/spring-oxm-3.2.xsd">
<context:component-scan base-package="test" />
<sws:annotation-driven marshaller="marshaller" unmarshaller="marshaller" />
<sws:dynamic-wsdl id="person" portTypeName="Person"
locationUri="/personService/" targetNamespace="http://myschema/person/definitions">
<sws:xsd location="classpath:person.xsd" />
</sws:dynamic-wsdl>
<sws:interceptors>
<bean
class="org.springframework.ws.soap.server.endpoint.interceptor.SoapEnvelopeLoggingInterceptor">
<property name="logRequest" value="true"></property>
<property name="logResponse" value="true"></property>
</bean>
</sws:interceptors>
<oxm:jaxb2-marshaller id="marshaller">
<oxm:class-to-be-bound name="test.request.GetPersonRequest" />
</oxm:jaxb2-marshaller>
我的 GetPersonRequest.java 是这个
@XmlRootElement(name = "GetPersonRequest", namespace = PersonEndpoint.NAMESPACE_URI)
@XmlAccessorType(XmlAccessType.FIELD)
public class GetPersonRequest {
@XmlElement
private Integer id;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
}
我的端点是这样的:
@Endpoint
public class PersonEndpoint {
public static final String NAMESPACE_URI = "http://myschema/person/schemas";
@Autowired
PersonService service;
@PayloadRoot(namespace = NAMESPACE_URI, localPart="GetPersonRequest")
public @ResponsePayload GetPersonResponse handleGetPersonRequest(@RequestPayload Element request) {
System.out.println("handleGetPersonRequest()");
// TODO: Go to service.getPerson(request)
return new GetPersonResponse();
}
}
我想指出,整个服务已启动并运行良好,没有错误。到目前为止,这是可以的(根据上面的说明):
1) Endpoint 可以向soapui 和浏览器显示wsdl。
2)soap xml可以无错误提交。
3) 日志文件显示正在发送的 xml 正文。
但是对于我的生活,@RequestPayload GetPersonRequest 请求是空白的!它只有一个用于 chrissakes 的字段,甚至不会设置!
现在,如果我不使用 JAXB 作为请求对象,而是使用 org.w3c.dom.Element,我可以看到我提交的所有数据都在那里。
我错过了什么?我忍不住想我错过了一些完全简单的东西。
顺便说一下,这是示例输入(至少日志显示的内容):
<sch1:GetPersonRequest xmlns:sch1="http://myschema/person/schemas">
<sch1:id>1</sch1:id>
</sch1:GetPersonRequest>