I'm developing a system that receives messages related to patient activity in a hospital, parses and stores this data (HL7 2.x messages). Some messages may contain basic patient information, other messages could contain lab results, transcribed documents, etc.
I'd like to use an asynchronous reliable messaging system to do this (such as WCF + MSMQ or Apache Camel + ActiveMQ. It seems like these technologies would be a good fit.
I'm having trouble understanding how to apply these technologies to solve the problem though. If a message comes in and something goes wrong when parsing and storing data for a patient I need to halt processing of incoming messages for this patient until the problem is resolved.
I don't really want to stop processing messages for all patients if a problem occurs, just messages for the single patient that has a problem.
Is there a design pattern or some method of handling situations like this that I'm missing?
I'll most likely use a database to store the messages and keep track of individual patient queues. If an error occurs I can lock the patient so messages will no longer be processed until the problem is resolved.
I'm just looking for a sanity check. Is there an easier way to do this, or is manually managing queues and patients in the database a reasonable way to solve this problem?
