1

Wss4jSecurityInterceptor を使用した PayloadRootQNameEndpointMapping のために、以下の構成を使用しています

<bean id="endpointMapping" class="org.springframework.ws.server.endpoint.mapping.PayloadRootQNameEndpointMapping">
    <property name="mappings">
        <props>
            <prop key="{http://com/clickandbuy/mywebservice/}employeeById_Request">serviceEndPoint</prop>
            <prop key="{http://com/clickandbuy/mywebservice/}employeeByFile_Request">serviceEndPoint</prop>
            <prop key="{http://com/clickandbuy/mywebservice/}employeeBySecurity_Request">serviceEndPoint</prop>
        </props>
    </property>
    <property name="interceptors">
        <list>
            <bean class="org.springframework.ws.soap.server.endpoint.interceptor.SoapEnvelopeLoggingInterceptor"/>
            <ref local="wsSecurityInterceptor"/> 
        </list>
    </property>
</bean>

<bean id="wsSecurityInterceptor" class="org.springframework.ws.soap.security.wss4j.Wss4jSecurityInterceptor">
    <property name="validationActions" value="UsernameToken" />
    <property name="validationCallbackHandler" ref="springSecurityHandler" />
</bean>

<bean id="springSecurityHandler"
  class="org.springframework.ws.soap.security.wss4j.callback.SpringPlainTextPasswordValidationCallbackHandler">
    <property name="authenticationManager" ref="authenticationManager"/>
</bean>

インターセプターが提供されていない場合、

 <!--<ref local="wsSecurityInterceptor"/> -->

それは正常に動作します。ただし、上記の行がアクティブな場合、つまりインターセプターが提供されている場合、エラーが発生します

.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder:316||||>> Starting to process SOAP          1.1 message 
<<||2013-07-13 22:36:57,922||http-apr-8080-exec-      35|DEBUG|org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder:273||||>> Build the    OMElement Envelope by the StaxSOAPModelBuilder 
<<||2013-07-13 22:36:57,923||http-apr-8080-exec-35|DEBUG|org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder:273||||>> Build the OMElement Header by the StaxSOAPModelBuilder 
<<||2013-07-13 22:36:57,923||http-apr-8080-exec-35|DEBUG|org.apache.axiom.soap.impl.builder.StAXSOAPModelBuilder:273||||>> Build the OMElement Security by the StaxSOAPModelBuilder 
<<||2013-07-13 22:36:57,924||http-apr-8080-exec-35|DEBUG|org.springframework.ws.server.MessageDispatcher:273||||>> Testing endpoint adapter [org.springframework.ws.server.endpoint.adapter.MessageEndpointAdapter@6e369c05] 
<<||2013-07-13 22:36:57,925||http-apr-8080-exec-35|DEBUG|org.apache.axiom.soap.impl.llom.SOAPHeaderImpl:426||||>>     org.apache.axiom.soap.SOAPProcessingException: An attempt was made to add a normal OMEl    ement as a child of a SOAPHeader.  This is not supported.  The child should be a   SOAPHeaderBlock.
at org.apache.axiom.soap.impl.llom.SOAPHeaderImpl.addChild(SOAPHeaderImpl.java:423)

何か問題がある場合、または Wss4jSecurityInterceptor で spring-ws PayloadRootQNameEndpointMapping を構成する適切な方法がある場合は共有してください

ありがとう

4

1 に答える 1

0

spring-ws 1.5.6 バージョンで何らかのエラーが発生したと思います。バージョン 2.0.0 に切り替えたところ、正常に動作しました。

于 2013-07-19T08:06:52.993 に答える