Package tactic

Examples of tactic.TacticServerStub


public class Example {

    public static void main (String[] args) throws IOException {

        TacticServerStub server = new TacticServerStub();
        server.set_project("project");
        //server.set_protocol("xmlrpc");

        // test server version
        System.out.println( "Test server version" );
        System.out.println( server.get_server_version() );
        System.out.println( server.get_server_api_version() );
        System.out.println( "----" );

        // test ping
        System.out.println( "Test ping" );
        System.out.println( server.ping() );
        System.out.println( "----" );

    }
View Full Code Here

TOP

Related Classes of tactic.TacticServerStub

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.