Reputation: 1
I am having two mule flows. VM is outbound for one and inbound for one. When the first flow sends the message to VM outbound, this process is not triggering the second flow in which VM is inbound.on
Exception Message :
org.mule.api.transport.DispatchException: Failed to route event via endpoint: DefaultOutboundEndpoint{endpointUri=vm://messaging-path?connector=.vm.connector, connector=VMConnector
{
name=vm.connector
lifecycle=start
this=4d4b2560
numberOfConcurrentTransactedReceivers=4
createMultipleTransactedReceivers=true
connected=true
supportedProtocols=[vm]
serviceOverrides=<none>
}
Upvotes: 0
Views: 240
Reputation: 26
Please ensure followings: 1. Queue name should be same at both endpoints. 2. Try with Action as None. 3. Make sure exchange pattern for both are set as one-way.
Upvotes: 0
Reputation: 11
Generally these kind of issues occur when the second mule flow's initial State is defined as Stopped. Please remove this attribute and see.
Upvotes: 1