I have a message with following fields:
orderNumbers,productNames and the ordered number off goods that are purchased.
There a multiple messages from that type that are being sent to a msmq from the warehouse where all the goods are stored.
example:
order001,radio,3
order002,radio,4
order003,car,1
I get messages back from the warehouse into the msmq with JUST the productname and quantity:
radio,7
car,1
how do I correlate these messages on my sent port to the msmq and the receiving port.
Greetings