Package pl.icedev.rpc.client

Examples of pl.icedev.rpc.client.JSONRPC


import java.io.IOException;

public class ClientTest {

    public static void main(String[] args) throws IOException {
        JSONRPC rpc = new JSONRPC("localhost", 6949);
        rpc.setAuthKey("test");

        Object resp = rpc.call("createUser", "Example");

        System.out.println(resp);

        rpc.close();
    }
View Full Code Here

TOP

Related Classes of pl.icedev.rpc.client.JSONRPC

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.