Does anyone know how to connect RabbitMQ with COBOL?

Viewed 517

Does anyone know how to connect RabbitMQ with COBOL? I tried the documentation in RabbitMQ site but the examples make calls to programs like "RMQ_CONNECT" that don't exists.

1 Answers

From the looks of it, RMQ_CONNECT is not a program, but an entry point in a library. Try using Call "RMQ_CONNECT" and make sure the rabbitMQ library is properly linked for your environment.

Related