I am trying to design an event based messaging system which works as follows:
Let us say that there are multiple products in a store, and their prices vary every day. Clients can login to the application, and request to know (via SMS) the price of a particular product on a particular date (say 1 month from the date of login).
How to introduce the concept of events (as described above) when using zeromq? Is OpenDDS better suited for such a scenario?
Reading your use-case its maybe less about 'events' than about having distributed access to the 'state' (in this case the potentially historical price) of a modeled object (in this case your products).
DDS as an open-standard technology directly supports this by offering distributed access to shared data using a smart combination of pub/sub messaging in combination with relational data-modeling. It also standardizes and supports a vast set of Quality of Service (QoS) policies that can be related to both producers/consumers of data as well as the data 'itself'. In your use-case its the 'durability' QoS on the data that would allow the DDS infrastructure to maintain historical data for each uniquely identified 'instance' of a data-object (called a topic in DDS terminology).
What is important in a DDS approach is to determine a proper 'data-model' for a specific usecase and in your case it looks like it can be pretty straightforward i.e. a product having a unique product-code (an ID that will be a 'key-attribute' in DDS, like in a RDBMS), likely a description and then a price. Each time the price changes a new 'instance' of that data-type will be published and as its QoS policy would be defined as PERSISTENT, it would then be maintained by the middleware (typically by one or more 'durability-services' that are part of the DDS implementation)
Applications in DDS take a subscription to these topics and will be provided automatically with the historical data of the product topics. Some DDS implementations allow to specify a refinement for the delivery of historical data based on a combination of content, time and/or volume (amount). In your use-case it would be a selection of the 'right product' (by ID or name) and time.
Finally, assuming your system is 'web-enabled' i.e. should work on an internet-scale, perhaps supporting cloud-based permanent storage of your data for distributed access on PC's, mobile-devices etc. then I'd suggest to take a look at Vortex (www.prismtech.com/vortex). Note that there's also an opensource version of the Vortex OpenSplice product available (www.prismtech.com/dds-community).
Good luck !