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