2013-05-17 72 views
1

我試圖用這個流程騾子 - 變量未發現

<flow name="SOAPWebService" > 

    <http:inbound-endpoint address="http://localhost:8088/" exchange-pattern="request-response">   
    </http:inbound-endpoint> 

    <set-variable value="#[message.inboundProperties['id']]" variableName="paramId"></set-variable> 
    <set-variable value="#[message.inboundProperties['type']]" variableName="paramType"></set-variable> 

    <component class="com.example.components.SampleComponent" ></component> 

    <mule-xml:xslt-transformer 
     maxIdleTransformers="2" maxActiveTransformers="5" 
     xsl-file="C:\WorkSpace\MyProject\src\main\resources\xslt\PrepareRequestXML.xsl"> 
     <mule-xml:context-property key="paramId" 
      value="#[flowVars['paramId']]" /> 
     <mule-xml:context-property key="paramType" 
      value="#[flowVars['paramType']]" /> 
    </mule-xml:xslt-transformer> 

    <cxf:proxy-client payload="body" 
     enableMuleSoapHeaders="true">   
    </cxf:proxy-client> 
    <http:outbound-endpoint exchange-pattern="request-response" 
     address="http://localhost:8080/ClientsDB/douane" doc:name="HTTP"> 
    </http:outbound-endpoint> 

    <byte-array-to-string-transformer doc:name="Byte Array to String" />  
    <file:outbound-endpoint ....... .. /> 
</flow> 

這裏找回從GET HTTP請求的一些變量,如

http://localhost:8088/?id=xxx&type=yyyy 

是XSLT樣式表

<xsl:stylesheet version="2.0" 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
    xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 
    xmlns:wsd="http://wsdouane/"> 
    <xsl:output method="xml" indent="yes" /> 
    <xsl:param name="paramType"></xsl:param> 
    <xsl:param name="paramId"></xsl:param> 

    <xsl:template match="*" > 
     <xsl:element name="wsd:find" namespace="http://wsdouane/"> 
     <xsl:element name="entity"> 
     <xsl:element name="id"> 
      <xsl:value-of select="$paramId"/> 
     </xsl:element> 
     <xsl:element name="type"> 
      <xsl:value-of select="$paramType"/> 
     </xsl:element> 
     </xsl:element>   
     </xsl:element> 
    </xsl:template> 

    <xsl:template match="text()|processing-instruction()|comment()"> 
     <xsl:copy> 
      <xsl:apply-templates select="@*|node()" /> 
     </xsl:copy> 
    </xsl:template> 
</xsl:stylesheet>  

但是當我運行流程時出現以下錯誤:

INFO 2013-05-17 10:10:10,839 [[mediation_mod].connector.http.mule.default.receiver.04] org.mule.transformer.simple.AddFlowVariableTransformer: Variable with key "paramId", not found on message using "#[message.inboundProperties['id']]". Since the value was marked optional, nothing was set on the message for this variable 
INFO 2013-05-17 10:10:10,841 [[mediation_mod].connector.http.mule.default.receiver.04] org.mule.transformer.simple.AddFlowVariableTransformer: Variable with key "paramType", not found on message using "#[message.inboundProperties['type']]". Since the value was marked optional, nothing was set on the message for this variable 
INFO 2013-05-17 10:10:10,895 [[mediation_mod].connector.http.mule.default.receiver.04] org.mule.transport.service.DefaultTransportServiceDescriptor: Loading default outbound transformer: org.mule.transport.http.transformers.ObjectToHttpClientMethodRequest 
INFO 2013-05-17 10:10:10,895 [[mediation_mod].connector.http.mule.default.receiver.04] org.mule.transport.service.DefaultTransportServiceDescriptor: Loading default response transformer: org.mule.transport.http.transformers.MuleMessageToHttpResponse 
INFO 2013-05-17 10:10:10,895 [[mediation_mod].connector.http.mule.default.receiver.04] org.mule.transport.service.DefaultTransportServiceDescriptor: Loading default outbound transformer: org.mule.transport.http.transformers.ObjectToHttpClientMethodRequest 
INFO 2013-05-17 10:10:10,895 [[mediation_mod].connector.http.mule.default.receiver.04] org.mule.lifecycle.AbstractLifecycleManager: Initialising: 'connector.http.mule.default.dispatcher.28622115'. Object is: HttpClientMessageDispatcher 
INFO 2013-05-17 10:10:10,896 [[mediation_mod].connector.http.mule.default.receiver.04] org.mule.lifecycle.AbstractLifecycleManager: Starting: 'connector.http.mule.default.dispatcher.28622115'. Object is: HttpClientMessageDispatcher 
INFO 2013-05-17 10:10:10,921 [[mediation_mod].connector.http.mule.default.receiver.04] org.mule.lifecycle.AbstractLifecycleManager: Initialising: 'connector.file.mule.default.dispatcher.27894808'. Object is: FileMessageDispatcher 
INFO 2013-05-17 10:10:10,921 [[mediation_mod].connector.http.mule.default.receiver.04] org.mule.lifecycle.AbstractLifecycleManager: Starting: 'connector.file.mule.default.dispatcher.27894808'. Object is: FileMessageDispatcher 
INFO 2013-05-17 10:10:10,923 [[mediation_mod].connector.http.mule.default.receiver.04] org.mule.transport.file.FileConnector: Writing file to: C:\MuleStudio\SandBox\output\17-05-13_1368778210922.xml 

它給出一個空值而不是通過http傳遞的值。

任何想法?

回答

1

使用以下http入站。

<http:inbound-endpoint address="http://localhost:8088" exchange-pattern="request-response">   
</http:inbound-endpoint> 

這應該與你的

http://localhost:8088/?id=xxx&type=yyyy 
+0

發佈請求的工作是通過使用一個請求地址如http解析://本地主機:8088/ESB /不僅HTTP://本地主機:8088/ 所以請求變成http:// localhost:8088/esb /?id = xxx&type = yyyy –