I try to run an example from http://activemq.apache.org/cms/cms-api-overview.html, so pasted the main.cpp
code to my qt creator
added apr
and activemq
libraries and compiled with success, but nothing happened after. I mean the console printed:
============================================
Starting the example
--------------------------------------------
and nothing else. I noticed by simply printing couts that
std::cout <<"START" <<std::endl;
connection->start();
std::cout <<"AFTER START" <<std::endl;
console didn't print the second cout so it must be a problem with connection->start();
Could u help me?