I need to use RabbitMQ in one of my projects. On googling I got to know that the library for RabbitMQ is not compatible with BlackBerry. In some posts in StackOverFlow itself someone has suggested to use STOMP protocol in J2ME as RabbitMQ supports STOMP upon adding some plugins. But I couldn't find a library for STOMP in J2ME as well.
Has anyone used RabbitMQ in Blackberry? Any help will be much appreciated.
Thank you very much in advance.
I converted the Gozirra Stomp Java Client code for J2ME you can download it from
https://github.com/rifatdover/RabbitMQStompConnectorForBlackberry
Build a more traditional web interface for RabbitMQ, then have the BlackBerry client code talk to the web interface.
Related
Can anybody help me in implementing rabbitmq client for ESP32(NodeMCU Lua)..?
Actually I'm having little knowledge on MQTT I've implemented basic publish and subscribe with Mosquitto broker on ESP32(NodeMCU Lua) which is already available in NodeMCU documentation.
Now I want to work with Rabbitmq but I don't know how to work with that, where to start and there's no much available resources for guiding how to use rabbitmq in NodeMCU Lua and any efforts towards this will be appreciated.
I'm having doubts like can I able to implement with the existing API's (module) provided by NodeMCU (https://nodemcu.readthedocs.io/en/dev-esp32/modules/mqtt) or need to implement a dedicated client for Rabbitmq please help me to get solution for this maze and also please provide me any sources.
Abhi - if this is still an issue for you then perhaps I can help:
you do NOT need any RabbitMQ plugins or other code on the NodeMCU device.
you DO need your NodeMCU firmware compiled to include the MQTT module.
you DO need to enable the rabbitmq_mqtt plugin on your server.
For help with NodeMCU stuff look at https://nodemcu.readthedocs.io/en/release/modules/mqtt/
And for the RabbitMQ plugin: https://www.rabbitmq.com/mqtt.html#enabling-plugin
Cheers
Sean
Is there any way to implement MQTT protocol on Ingenico's POS devices? I am currently working on iCT220 on which I want to implement IOT project. In this project, I will be sending some bytes (may be 400-1000 bytes) of data to the broker (server).
There are lots of source codes for the library available in the internet, but all make use of Linux or Windows socket libraries, where as Ingenico's devices come with proprietary libraries.
Have anyone implemented similar project on the same devices? Can anyone guide me to the process of implementation?
Thanks in advance,
Pankaj
Surely, you will need to build it from source.
I had a look at several client libraries and it looks that dependencies come mostly from IP stack, so there's very little to be implemented to have it running.
You should expect the proprietary OS issues to be thing of the past in short time - newer terminal lines are based on linux.
I'm trying to write an IOS app using Xamarin that sends data to PC using TCP. I want it to do this with Cable or WiFi. I have been researching around the net for sometime now. But couldn't find any good tutorials. I'am aware that I should be using NSNet and Bonjour Windows SDK but I couldn't find anything more than that. Any suggestions or directions on how to achieve this would be very helpful. Thanks in advance.
If you are using Xamarin then the more preferred choice would be to write things using System.Net.Sockets namespace. This way you can reuse the code with other C# clients, including Android (if needed).
Plenty of examples on TcpClient/TcpServer.
https://msdn.microsoft.com/en-us/library/vstudio/system.net.sockets.tcpclient(v=vs.110).aspx
How do you implement the server side in iOS using thrift? Using the thrift wiki, I was able to figure out how to write a client using thrift, but there seems to be no documentation in writing the server. Any example code would be greatly appreciated.
AFAIK You can't have the server in Objective C as only the client bindings are supported. You can however use the C/C++ server bindings. What is your use case? It seems odd to have the server on an iOS device.
Here is the link to the C++ usage docs.
Need assistance to develop background service on Blackberry with C#, how to?
Please help, i would really appreciate any assistance.
Thank you very much in advance.
You can't develop for BlackBerry in C#. At present you're only option is Java Micro Edition with BlackBerry Extensions.