Package bm.net.rpc

Examples of bm.net.rpc.RemoteCall


    public static int checkNetwork()
    {
        try
        {
            // 1. Call basemovil server ping service
            final RemoteCall rc = new RemoteCall( "LoginHandler", "ping", 0 );
            rc.invoke();
            return NET_STATUS_OK;
        }
        catch( RemoteCallException e )
        {
            return NET_STATUS_NO_SERVER;
View Full Code Here

TOP

Related Classes of bm.net.rpc.RemoteCall

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.