0

ラバのフローからrpc/literalスタイルのWebサービスにアクセスしています。

wsdlのバインディング部分は次のようになります。

<binding name="AppWebServiceBinding" type="interface:AppWebService">
    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"   />
    <operation name="submitApplication">
        <soap:operation soapAction="" style="rpc"  />
        <input name="submitApplicationRequest"  >
            <soap:body
                encodingStyle="http://xml.apache.org/xml-soap/literalxml"
                namespace="http://tempuri.org/fsg.ejb.webservice.AppWebService"
                parts="ele" use="literal" type="soap:tBody"  />
        </input>
        <output name="submitApplicationResponse">
            <soap:body
                encodingStyle="http://xml.apache.org/xml-soap/literalxml"
                namespace="http://tempuri.org/fsg.ejb.webservice.AppWebService" use="literal"/>
        </output>
    </operation>
</binding>

次に、expectedobjectをcxf:jaxws-clientを使用してhttp:outboundに渡します。

    <http:outbound-endpoint exchange-pattern="request-response"
        address="http://serviceapp:9080/service_war/servlet/rpcrouter"   
        doc:name="Generic">
        <cxf:jaxws-client clientClass="com.fsg.generated.AppWebServiceService"
            wsdlLocation="com/fsg/generated/AppWebServiceService.wsdl"              
            operation="submitApplication"   port="AppWebServicePort"                 
            doc:name="SOAP">                
            <cxf:inInterceptors  >
            <spring:bean id="inLogger" 
                class="org.apache.cxf.interceptor.LoggingInInterceptor" />                  
            </cxf:inInterceptors>
            <cxf:outInterceptors>
            <spring:bean id="outLogger"
                class="org.apache.cxf.interceptor.LoggingOutInterceptor" />
        </cxf:outInterceptors>              
        </cxf:jaxws-client>
    </http:outbound-endpoint>

しかし、ログを調べてメッセージがアウトバウンドに送信されていることを確認すると、その中にsoap:encodingStyle属性が表示されません。これがないとサービスはメッセージを処理できないため、これが問題の原因です。

以下に、ログに表示されるアウトバウンドメッセージを示します。

    Outbound Message
---------------------------
ID: 1
Address: http://serviceapp:9080/service_war/servlet/rpcrouter
Encoding: UTF-8
Content-Type: text/xml
Headers: {SOAPAction=[""]}
Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Header>
<mule:header xmlns:mule="http://www.muleumo.org/providers/soap/1.0">
<mule:MULE_CORRELATION_ID>dfd31e6c-6575-11e2-9b8a-b1b06bd39882</mule:MULE_CORRELATION_ID>   <mule:MULE_CORRELATION_GROUP_SIZE>-1</mule:MULE_CORRELATION_GROUP_SIZE>
<mule:MULE_CORRELATION_SEQUENCE>-1</mule:MULE_CORRELATION_SEQUENCE>
</mule:header>
</soap:Header>
<soap:Body>
<ns1:submitApplication xmlns:ns1="http://tempuri.org/fsg.ejb.webservice.AppWebService">
<ele>
<MyApp xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mysample.org">  
  <UserAuth>  ............

名前空間はwsdlから選択されていますが、encodingStyleからは選択されていないことがわかります。

期待される出力は

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Header>
<mule:header xmlns:mule="http://www.muleumo.org/providers/soap/1.0">
.......
</mule:header>
</soap:Header>
<soap:Body>
<ns1:submitApplication xmlns:ns1="http://tempuri.org/fsg.ejb.webservice.AppWebService"  soap:encodingStyle="http://xml.apache.org/xml-soap/literalxml" >
<ele>
<MyApp xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://mysample.org">  
  <UserAuth>  ............

これでsoap:encodingStyle属性を設定するにはどうすればよいですか?

4

2 に答える 2

1

動作していないことがわかりました。XSLTトランスフォーマーを試して、入力にエンコードスタイルを追加し、それを処理することができます。これは単なる回避策です。

于 2013-02-22T14:42:37.513 に答える
-1

あなたの問題は、encodingStyle属性情報がbody要素に表示されず、子にのみ表示されることだと思います。

于 2013-02-06T01:54:41.510 に答える