I would like to implement an Excel addin which allows me to publish the data in a cell, or subscribe to data and populate that into a cell, along the JMS Publish-Subscribe Model.
Is there any sample code which does that?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For the second part (subscription) the RTD function is usually used. Probably MSDN documentation is the best starting point. You will need to build an RTD server (COM automation server) which implements a predefined interface (IRtdServer).
For the first part (publishing) you can try to access messaging layer via VBA and a library usually provided by a vendor (pretty sure that you can do it with Tibco RV). If there is no appropriate library available – you will need to build one.