sunbot-http
Plugin to turn your Suneidesis Chatbot into a HTTP server
How to use it
Parser bot = new EchoBox(); // Use your own box
SunbotHttp http = new SunbotHttp();
http.port(11883);
http.addBox(bot);
http.init();
Sending messages
You can use the Sunbot HTTP Client or any other HTTP tool:
Curl
curl -XPOST -d '{"message":"Hello World!"}' localhost:11883