Hello Friends,
I have installed rabbit mq & erlang executable in my windows system.
I have used rabbit mq in c#. i want to implement in cpp also.
But i am not able implement in correct way.
1. I have installed AMQP-CPP library from nuget package in visual studio 2017. I have implement it also but i am not getting desired response.
Please suggest me where i did wrong.
i have visited this solution also:
// create an instance of your own connection handler
MyConnectionHandler myHandler;
// create a AMQP connection object
AMQP::Connection connection(&myHandler, AMQP::Login("guest","guest"), "/");
// and create a channel
AMQP::Channel channel(&connection);
// use the channel object to call the AMQP method you like
channel.declareExchange("my-exchange", AMQP::fanout);
channel.declareQueue("my-queue");
channel.bindQueue("my-exchange", "my-queue", "my-routing-key");
But i am not able to connect with ,y rabbit mq after executing this program,
2. I have install SimpleAmqpClient from nuget package in visual studio 2017.
When i am using simpleamqpclient.h header file it showing some dll missing . i did download that dll and move to executable folder then to i am getting other error.
Please suggest me correct way to do in windows.
I am new in rabbit mq in cpp.
My English in not good :(
Thanks in advance.