0

我是 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 正在打印。我不确定这些字符是在哪里添加的,以及为什么响应不完整。

谢谢,杰格

4

1 回答 1

0

我发现了问题所在。JBoss 提供的 SAAJ 实现存在一些问题。(即这个默认的 JBoss 实现“org.jboss.ws.core.soap.MessageFactoryImpl”有问题)因此解决方案不是使用 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>

此问题已在此处报告: URL:http ://static.springsource.org/srin...tml#saaj-jboss

于 2012-08-11T15:56:35.873 回答