2013-05-17 1 views
1

Я пытаюсь получить некоторые переменные из запроса GET HTTP, какMule - переменная не найдена

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

, используя этот поток

<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> 

вот таблицы стилей 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 

он дает значение null вместо значения, переданного через 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 –

 Смежные вопросы

  • Нет связанных вопросов^_^