A number of years ago I implemented an asynchronous peer-to-peer Message-Oriented-Middle-ware that was very friendly to use in Excel VBA, and I find myself again needing to do lots of calculations which could be trivially distributed, if I had the mechanism.
I could re-implement the MOM layer, but I'd prefer to use a third party product if one existed.
My requirements are these:
- to be able to send messages easily from Excel VBA and VB6,
- to have a resource discovery mechanism to find the calculation services,
- to have asynchronous message sends (I don't want to lock up Excel while the calculation is being done),
- to provide a queuing mechanism so I can have multiple servers doing the work easily,
- to have low admin for setup
Can anyone suggest anything?
Many thx
-- DM