MessageQueue message information

  • Thread starter Thread starter Edward Diener
  • Start date Start date
E

Edward Diener

Is it possible to get the name of the sending message queue when receiving a
message ? I could not find any information in the System.Messaging.Message
itself which gives this information.
 
I'm not sure that this is available to you, but one workaround is to add it
to the message as a special field. Then you can read the field on the
deserialization

--
Regards,
Alvin Bruney

Coming this month
The Microsoft Office Web Components Black Book with .NET
http://tinyurl.com/27cok
 
Alvin Bruney said:
I'm not sure that this is available to you, but one workaround is to add
it to the message as a special field. Then you can read the field on the
deserialization

A good idea. Thanks !
 
Did you check out the ResponseQueue property, it has to be set on the sending
side to utilize it.
 
Tim said:
Did you check out the ResponseQueue property, it has to be set on the
sending
side to utilize it.

This can be set to any queue but I guess it can be used as the address of
the sending queue. Thanks for pointing it out.
 
Back
Top