I have a WPF solution that also needs to support receiving of messages from Queue1 and sending messages to Queue2. I set this all up and it worked find in early testing.
But when I combined the input and output projects (so I have both projects assemblies in the output folder) I get the following error:
Host doesn't support hosting of multiple endpoints. Endpoint classes found: MySolution.Queue1.EndpointConfig, MyProject.Queue1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null,
MySolution.Queue2.EndpointConfig, MyProject.Queue2, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null You may have some old assemblies in your runtime directory.
Try right-clicking your VS project, and selecting 'Clean'.
Am I going about this wrong? Can my WPF process only deal with one queue? (Doesn't seem too robust if that is the case.)
Maybe I am going about this the wrong way. Should I just send and receive from the same queue? (Does that even work right? Can a queue deal with more than one message type?)