Pablo La Greca
2012-06-27 16:48:55 UTC
Hi,
<br /><br />
Your request-reply configuration doesn't make sense. If you want to sent a message through jms and read it with your mule app you must have another flow with an inbound endpoint reading in the jms queue you are putting the message.
<br /><br />
So, you should have something like:
<br /><br />
<code>
<br />
<flow name="flows1Flow1" doc:name="flows1Flow1">
<br />
<http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8090" path="GETY" transformer-refs="TheRequest" responseTransformer-refs="TheResponse" keep-alive="true" doc:name="HTTP"/>
<br />
<jms:outbound-endpoint queue="eir"/> <!-- default MEP for jms is one-way-->
<br />
</flow>
<br /><br />
<flow name="flowProcessingJmsMessage">
<br />
<jms:inbound-endpoint queue="eir"/>
<br />
<http:outbound-endpoint exchange-pattern="one-way" address="http://localhost/test/dump.php" mimeType="text/plain" doc:name="HTTP"/>
<br />
</flow>
<br />
</code>
<br /><br />
HTH, Pablo.
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email
<br /><br />
Your request-reply configuration doesn't make sense. If you want to sent a message through jms and read it with your mule app you must have another flow with an inbound endpoint reading in the jms queue you are putting the message.
<br /><br />
So, you should have something like:
<br /><br />
<code>
<br />
<flow name="flows1Flow1" doc:name="flows1Flow1">
<br />
<http:inbound-endpoint exchange-pattern="request-response" host="localhost" port="8090" path="GETY" transformer-refs="TheRequest" responseTransformer-refs="TheResponse" keep-alive="true" doc:name="HTTP"/>
<br />
<jms:outbound-endpoint queue="eir"/> <!-- default MEP for jms is one-way-->
<br />
</flow>
<br /><br />
<flow name="flowProcessingJmsMessage">
<br />
<jms:inbound-endpoint queue="eir"/>
<br />
<http:outbound-endpoint exchange-pattern="one-way" address="http://localhost/test/dump.php" mimeType="text/plain" doc:name="HTTP"/>
<br />
</flow>
<br />
</code>
<br /><br />
HTH, Pablo.
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email