I have noticed that there is no given API for fortran to access rabbitmq.
I am considering using C#/.NET as bride to rabbitmq; what would be the most sensible way to bridge Fortran to the C# API? Other suggestions?
The rabbitmq client will trigger events and the fortran client will have to listen to them and process the information.
Any idea?
Thank you very much in advance,
GL
There are various C Bindings/Clients available on http://www.rabbitmq.com/devtools.html. I'd use the one of those which suites you best and use the ISO_C_Binding to couple it with your Fortran code.