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.
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.
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.