5

Currently, i'm working on android project. I have to join a jms server based on openJMS.

i've not found any library, anyone know how to implement JMS client on Android ?

thx.

jeremy.romano
  • 141
  • 2
  • 8
  • I doubt it's possible. There is no support for the `javax.*` packages in Dalvik. Have you considered using a mediator? You could set up a server-side application using a more Android-friendly API to communicate with mobile clients and JMS to communicate with your actual server. – toniedzwiedz Jul 29 '12 at 17:37

2 Answers2

2

Use the Kaazing WebSocket Gateway Android JMS Client API

you can visit Kaazing official website for that.

Thanks!

0

We have also faced same scenario.

You can use the Kaazing WebSocket Gateway to connect Android (and other) clients to JMS over WebSocket

Michel Floyd
  • 18,793
  • 4
  • 24
  • 39
Waqas Ali Razzaq
  • 659
  • 1
  • 5
  • 30