I'm designing an application that will be reading messages from an SQL Queue. This is a requirement. I must use their queue. The problem is how to read their queue. I would like to use it just like an MSMQ but it doesn't look possible. I need to read messages in FIFO order one at a time. To read one at a time I would have to make each message a conversation but then they would not necessarily be in FIFO order. I can use one never ending conversation to maintain order but then I believe I have to read everything in the queue. Not just one message. Has anyone built an application to perform the way I need it to? Is it impossible? Any other suggestions?
Thanks in advance.
Donald Hofferber