Package pl.icedev.rpc.client

Examples of pl.icedev.rpc.client.JSONRPC.call()


    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
Copyright © 2018 www.massapi.com. 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.