为 Excel 数据实现发布/订阅加载项
我想实现一个 Excel 插件,它允许我沿着 JMS 发布-订阅模型发布单元格中的数据,或者订阅数据并将其填充到单元格中。
有没有任何示例代码可以做到这一点?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于第二部分(订阅),通常使用 RTD 功能。也许 MSDN 文档 是最好的起点。您需要构建一个实现预定义接口 (IRtdServer) 的 RTD 服务器(COM 自动化服务器)。
对于第一部分(发布),您可以尝试通过 VBA 和通常由供应商提供的库访问消息传递层(非常确定您可以使用 Tibco RV 来完成)。如果没有合适的库可用 - 您将需要构建一个。
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.