tags:

views:

37

answers:

1

I am trying to use the integrated message queue binding with the class Message.

void HandleMessage(Message msg)

However the binding does not work, this works with other bindings. Is this a limitation on this specific binding?

A: 

I suspect there is a naming ambiguity between System.Messaging.Message and your own Message class.

Try void HandleMessage(Your.Namespace.Message msg) or rename your class.

Filburt