我是Spring-WS的新手,我必须为我的项目创建一个WebService。 所以,为了尝试一些例子,我从http://code.google.com/p/spring-webservices-samples/
下载了spring-webservices-samples当我部署war文件并使用SoapUI进行测试时;我在响应消息中得到奇怪的字符(如 ce,1a,0 ),并且“CalculateResponse”元素为空。
<ns2:CalculateResponse xmlns:ns2='http://www.marvelution.com/samples/schemas/CalculatorServiceSchema'/>
没有例外。我试着调试但没有运气。
请帮我解决这个问题。我真的很感激任何意见。
我使用的是JBoss 4.2.3,Java 1.6(64位)。
我尝试在Tomcat-7.0.29中部署相同的war文件,但它确实有效。但我必须让我的WebService在JBoss 4.2.3中运行
请求使用TCPMon捕获:
POST /annotated-payload-endpoint/calculatorService HTTP/1.1
Accept-Encoding: gzip,deflate
Content-Type: text/xml;charset=UTF-8
SOAPAction: "http://www.marvelution.com/samples/definitions/CalculatorService/Add"
Content-Length: 377
Host: 127.0.0.1:9999
Connection: Keep-Alive
User-Agent: Apache-HttpClient/4.1.1 (java 1.5)
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:cal="http://www.marvelution.com/samples/schemas/CalculatorServiceSchema">
<soapenv:Header/>
<soapenv:Body>
<cal:Add>
<!--2 or more repetitions:-->
<cal:number>1</cal:number>
<cal:number>2</cal:number>
</cal:Add>
</soapenv:Body>
</soapenv:Envelope>
使用TCPMon捕获的响应:
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
X-Powered-By: Servlet 2.4; JBoss-4.2.3.GA (build: SVNTag=JBoss_4_2_3_GA date=200807181417)/JBossWeb-2.0
SOAPAction: ""
Content-Type: text/xml;charset=UTF-8
Transfer-Encoding: chunked
Date: Fri, 20 Jul 2012 01:47:23 GMT
ce
<env:Envelope xmlns:env='http://schemas.xmlsoap.org/soap/envelope/'><env:Header></env:Header><env:Body><ns2:CalculateResponse xmlns:ns2='http://www.marvelution.com/samples/schemas/CalculatorServiceSchema'/>
1a
</env:Body></env:Envelope>
0
端点:CalculatorEndpoint.java
@PayloadRoot(namespace = "http://www.marvelution.com/samples/schemas/CalculatorServiceSchema", localPart = "Add")
public CalculateResponse add(Add numbers) {
CalculateResponse res = wrapResult(calculator.add(numbers.getNumber()));
System.out.println("Response before sending:"+res.getResult());
return res;
}
返回响应之前的System.out.println正在打印。我不确定这些字符的添加位置以及响应不完整的原因。
谢谢, JEG
答案 0 :(得分:0)
我发现了问题所在。 JBoss提供的SAAJ实现存在一些问题。 (即此默认JBoss实现&#34; org.jboss.ws.core.soap.MessageFactoryImpl&#34;有问题) 因此,解决方案不是使用JBoss实现,而是使用其他实现。
示例:使用以下实现之一: com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessage Factory1_1Impl org.apache.axis2.saaj.MessageFactoryImpl
<bean id="messageFactory" class="org.springframework.ws.soap.saaj.SaajSoapMessageFactory">
<property name="messageFactory">
<bean class="org.apache.axis2.saaj.MessageFactoryImpl"/>
</property>
</bean>
此问题已在此处报告:网址:http://static.springsource.org/sprin...tml#saaj-jboss