-1

I have just been introduced to the WebSocket Application Messaging Protocol WAMP http://wamp.ws/ and on googling I found the Crossbar.io implementation of the protocol.

I installed it by following http://crossbar.io/docs/Quick-Start/ and http://crossbar.io/docs/Getting-started-with-Java/ .

My goal is to wire a Java server publishing real time messages to be displayed on a web browser. Could you point me in the right direction? Once I have that setup, I can proceed with structuring the data using Ext JS or similar JavaScript frameworks.

General Grievance
  • 4,555
  • 31
  • 31
  • 45
aditya
  • 112
  • 1
  • 10
  • Please read this for how to ask an [On Topic Question](http://stackoverflow.com/help/on-topic) – RiggsFolly Dec 04 '14 at 09:04
  • Thanks. Looks like this is not a forum for seeking guidance to getting introduced to new technologies and alternatives. – aditya Dec 04 '14 at 18:31
  • Your question if fine, since it is about a "specific programming problem": how to publish real-time events from Java via WAMP. – oberstet Dec 05 '14 at 08:49

1 Answers1

1

The Getting Started with Java has all you need. Write your server-side program using the former. This component will then connect to Crossbar.io which does all the hard work of dispatching events in real-time to clients.

oberstet
  • 21,353
  • 10
  • 64
  • 97