骡子 - 选择组件问题

时间:2013-05-17 15:45:01

标签: http mule mule-studio

当我运行流程时,我收到以下错误“

<org.apache.cxf.staxutils.DepthXMLStreamReader>
  <reader class="org.mule.module.cxf.support.StreamClosingInterceptor$1">
    <reader class="com.ctc.wstx.sr.ValidatingStreamReader">
      <mXml11>false</mXml11>
      <mInputBuffer>xmlns:ns2=&quot;http://wsdouane/&quot;&gt;&lt;return&gt;&lt;douanePK&gt;&lt;idConteneurId&gt;ctr1&lt;/idConteneurId&gt;&lt;idCritereId&gt;C11&lt;/idCritereId&gt;&lt;/douanePK&gt;&lt;valeurId&gt;oui&lt;/valeurId&gt;&lt;/return&gt;&lt;/ns2:findResponse&gt;&lt;/S:Body&gt;&lt;/S:Envelope&gt;&#x0;&#x0;.................

我们可以从<mInputBuffer>开始看到正确的肥皂反应,有没有办法只获得肥皂反应?

这是我的流程

 <flow name="SOAPWebService" doc:name="SOAPWebService">
    <http:inbound-endpoint exchange-pattern="request-response" address="http://localhost:8088/esb" doc:name="HTTP"/>
    <object-to-string-transformer doc:name="Object to String"/>
    <choice doc:name="Choice">
        <when expression="#[payload.contains('C22')]">
            <set-variable variableName="paramCtr" value="#[message.inboundProperties['ctr']]" doc:name="conteneur"/>
            <set-variable variableName="paramC" value="#[message.inboundProperties['c']]" doc:name="critere"/>
            <component class="com.example.components.SampleComponent" doc:name="Java"/>
            <mulexml:xslt-transformer  maxIdleTransformers="2" maxActiveTransformers="5" xsl-file="C:\MuleStudio\SandBox\resources\PrepareRequestXMLPort.xsl" doc:name="XSLT">
                <mulexml:context-property key="paramCtr" value="#[flowVars['paramCtr']]" />
                <mulexml:context-property key="paramC"  value="#[flowVars['paramC']]" />
            </mulexml:xslt-transformer>
            <cxf:proxy-client payload="body" enableMuleSoapHeaders="true" doc:name="SOAP"/>
            <http:outbound-endpoint exchange-pattern="request-response" address="http://localhost:8080/ClientsDB/port" doc:name="PortWS"/>
            <byte-array-to-string-transformer   doc:name="Byte Array to String" />
        </when>
        <otherwise>
            <set-variable variableName="paramCtr" value="#[message.inboundProperties['ctr']]" doc:name="conteneur"/>
            <set-variable variableName="paramC" value="#[message.inboundProperties['c']]" doc:name="critere"/>
            <component class="com.example.components.SampleComponent" doc:name="Java"/>
            <mulexml:xslt-transformer maxIdleTransformers="2" maxActiveTransformers="5" xsl-file="C:\MuleStudio\SandBox\resources\PrepareRequestXMLDouane.xsl" doc:name="XSLT">
                <mulexml:context-property key="paramCtr"  value="#[flowVars['paramCtr']]" />
                <mulexml:context-property key="paramC"  value="#[flowVars['paramC']]" />
            </mulexml:xslt-transformer>                
            <cxf:proxy-client payload="body" enableMuleSoapHeaders="true" doc:name="SOAP"/>
            <http:outbound-endpoint exchange-pattern="request-response" address="http://localhost:8080/ClientsDB/douane" doc:name="DouaneWS"/>
            <byte-array-to-string-transformer doc:name="Byte Array to String"/>
        </otherwise>
    </choice>
    <xm:object-to-xml-transformer doc:name="Object to XML"/>
    <file:outbound-endpoint path="C:\MuleStudio\SandBox\output" outputPattern="#[function:datestamp:dd-MM-yy]_#[function:systime].xml " responseTimeout="10000" doc:name="Outgoing File"/>
</flow>
谢谢。

1 个答案:

答案 0 :(得分:1)

此表达式#[payload.contains('c22')]无效,因为有效负载为InputStream。您是不是在Mule的日志中看到了堆栈跟踪?

在任何情况下,请尝试在<object-to-string-transformer />之前添加choice,看看它是否解决了问题。

修改

问题是您正在使用XStream(在xm:object-to-xml-transformer中)将CXF响应对象(org.apache.cxf.staxutils.DepthXMLStreamReader)序列化为XML。不应该忽略CXF响应,并且应该在流的响应阶段由cxf:proxy-client处理。 xm:object-to-xml-transformer路由器之后的file:outbound-endpointchoice可能会扰乱此机制。尝试将它们包装在response路由器上方的choice元素中,然后在响应阶段执行它们。

请注意,我已经在您的其他问题https://stackoverflow.com/a/16615537/387927中向您提供了此建议,但您没有对此做出反应。

此外,我认为byte-array-to-string-transformer没有做任何事情:http:outbound-endpoint之后的消息有效负载应为org.apache.cxf.staxutils.DepthXMLStreamReader,以防止此转换器触发。