We are using Amazon EC2 and have a pub/sub system setup. I can't seem to
get the messages to work across EC2 machines.
I have a publisher that publishes messages and subscribes to messages from
subscribers and a subscriber that subscribes to messages from the publisher.
My configuration is as follows:
publisher:
<castle>
<facilities>
<facility id="rhino.esb">
<bus threadCount="4"
numberOfRetries="5"
endpoint="msmq://localhost/publisher"
/>
<messages>
<add name="Messages" endpoint="msmq://myec2machineip/worker"/>
</messages>
</facility>
</facilities>
</castle>
and my Subscriber config:
<castle>
<facilities>
<facility id="rhino.esb">
<bus threadCount="4"
numberOfRetries="5"
endpoint="msmq://localhost/worker"
/>
<messages>
<add name="Messages"
endpoint="msmq://myotherec2machineip/publisher"/>
</messages>
</facility>
</facilities>
</castle>
Also I have my EC2 machines set up with security groups and these instances
have permissions to each other.
When my apps start up I can see that the subscriptions get added into each
others queues, but when I publish messages they don't seem to get consumed,
nor can I find them in any of the queues.
Thoughts?
--
You received this message because you are subscribed to the Google Groups
"Rhino Tools Dev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rhino-tools-dev?hl=en.