inline

On Mon, Jan 19, 2009 at 10:43 AM, chrisortman <[email protected]> wrote:

>
> Is it correct to say that a Discarded message is any message that
> arrives at an endpoint but has no consumers registered for it?
>

yes
another option is that this is a saga message that doesn't have a saga
instance to orchestrate it.


>
> I am also not understanding why messages have their own endpoint or
> when they should share the same endpoint as the bus?
>
> I am running the trunk right now, and when I use this as my config
> <facility id="rhino.esb" >
>                        <bus threadCount="1"
>           numberOfRetries="5"
>
> logEndpoint="msmq://localhost/my.log"
>           endpoint="msmq://localhost/rhino"
>             />
>                        <messages>
>                                <add name="MyMessageAssembly"
>             endpoint="msmq://localhost/my.subscriptions"/>
>                        </messages>
> </facility>
>
> I get errors because the my.subscriptions queue doesn't exist.


The problem that you have is that you are trying to send the message to a
non existing bus.

The reason that you have to specify an endpoint several times is that the
bus' endpoint says what queue the bus listen on.
The message endpoint specify what is the owner of a particular set of
messages.

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

Reply via email to