A DDP client written in java for the Meteor framework (https://github.com/meteor/meteor)
Based on the node-js project by Alan Sikora, built on the java WebSocket of Nathan Rajlich and references the gson library
Download the entire source as a java project or just add the jar file as a dependency to your project
Examples located in 'examples' package of java project or can be used as simple as in the snippet below:
DdpClient client = new DdpClient("localhost", 3000);
client.connect();
Meteor project - https://github.com/meteor/meteor
Based on node-js_ddp-client project - https://github.com/alansikora/node-js_ddp-client
Underlying java WebSocket - https://github.com/TooTallNate/Java-WebSocket - Copyright (c) 2010-2012 Nathan Rajlich
Referenced gson Java library - http://code.google.com/p/google-gson/ - http://www.apache.org/licenses/LICENSE-2.0