Skip to content

Instantly share code, notes, and snippets.

@kzk
Created May 3, 2010 13:27
Show Gist options
  • Save kzk/388083 to your computer and use it in GitHub Desktop.
Save kzk/388083 to your computer and use it in GitHub Desktop.
package org.msgpack.rpc;
import java.io.IOException;
import org.msgpack.rpc.client.Client;
public class App
{
public static void main( String[] args )
{
Client c = new Client("localhost", 1985);
try {
c.call("hello", null);
} catch (Exception e) {
e.printStackTrace();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment