i am going to use filter in activeMQ based on NMSType of message header
i have two solutions with different names(i.e. namesspace). Both the solutions have two same classes like below
namespace Publisher { public class HitEvent : FloorEvent, IHitEvent { } }
namespace Subscriber { public class HitEvent : FloorEvent, IHitEvent { } }
Created Filter as below for the consumer
//for filter i have to give like below or else filter is not working public const string Filter = "JMSType = 'HitEvent'";
but on the consumer side activemq checking for type with names space. so i am not receiving the messages
can you help me to work with out names spaces