Package sample.rmi.client

Source Code of sample.rmi.client.TestService4

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package sample.rmi.client;

import sample.rmi.server.Service4Interface;
import sample.rmi.server.dto.ChildClass;
import sample.rmi.server.dto.ParentClass;
import org.apache.axis2.rmi.Configurator;
import org.apache.axis2.rmi.client.RMIClientProxy;
import org.apache.axis2.AxisFault;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.HashMap;


public class TestService4 {

    private Configurator configurator;

    public TestService4() {

        this.configurator = new Configurator();
        this.configurator.addPackageToNamespaceMaping("sample.rmi.server", "http://sample/service");
        this.configurator.addPackageToNamespaceMaping("sample.rmi.server.dto", "http://sample/service/types");
        this.configurator.addExtension(ParentClass.class);
        this.configurator.addExtension(ChildClass.class);
    }

    public void testMethod11() {

        try {
            Service4Interface proxy =
                    (Service4Interface) RMIClientProxy.createProxy(Service4Interface.class,
                            this.configurator,
                            "http://localhost:8080/axis2/services/Service4");
            Object result = proxy.method1(null);
        } catch (Exception e) {
            e.printStackTrace();
        }

    }

    public void testMethod12() {

        try {
            Service4Interface proxy =
                    (Service4Interface) RMIClientProxy.createProxy(Service4Interface.class,
                            this.configurator,
                            "http://localhost:8080/axis2/services/Service4");
            Object result = proxy.method1("test string");
            System.out.println("Got the string " + result);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public void testMethod13() {

        try {
            Service4Interface proxy =
                    (Service4Interface) RMIClientProxy.createProxy(Service4Interface.class,
                            this.configurator,
                            "http://localhost:8080/axis2/services/Service4");

            ParentClass parentClass = new ParentClass();
            parentClass.setParam1("test string");
            parentClass.setParam2(3);
            ParentClass result = (ParentClass) proxy.method1(parentClass);
            System.out.println("Param 1 ==>" + result.getParam1());
            System.out.println("Param 2 ==>" + result.getParam2());
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public void testMethod3() {
        try {
            Service4Interface proxy =
                    (Service4Interface) RMIClientProxy.createProxy(Service4Interface.class,
                            this.configurator,
                            "http://localhost:8080/axis2/services/Service4");
            String[] result = proxy.method3("Param1","Param2","Param3");
            System.out.println("Object 1 ==>" + result[0]);
            System.out.println("Object 2 ==>" + result[1]);
            System.out.println("Object 3 ==>" + result[2]);

        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public void testMethod2() {
        try {
             Service4Interface proxy =
                    (Service4Interface) RMIClientProxy.createProxy(Service4Interface.class,
                            this.configurator,
                            "http://localhost:8080/axis2/services/Service4");

            List param1 = new ArrayList();
            param1.add(new ChildClass());
            param1.add(new Integer(2));

            List param2 = new ArrayList();
            param2.add(new ParentClass());
            param2.add(new Float(2.34f));

            List result = proxy.method2(param1,param2);
            System.out.println("Object 1 ==>" + result.get(1));
            System.out.println("Object 3 ==>" + result.get(3));

        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public void testMethod4(){

        try {
            Service4Interface proxy =
                      (Service4Interface) RMIClientProxy.createProxy(Service4Interface.class,
                              this.configurator,
                              "http://localhost:8080/axis2/services/Service4");
            Map param1 = new HashMap();
            ParentClass parent = new ParentClass();
            parent.setParam1("param1");
            parent.setParam2(5);
            param1.put("key1",parent);
            param1.put("key2","value2");
            param1.put("key3",new Integer(6));

            Map result = proxy.method4(param1);
            ParentClass resultParent = (ParentClass) result.get("key1");
            System.out.println("Parent param1 ==> " + resultParent.getParam1());
            System.out.println("Parent param2 ==> " + resultParent.getParam2());
            System.out.println("Key 2 ==> " + result.get("key2"));
            System.out.println("Key 3 ==> " + result.get("key3"));
        } catch (AxisFault axisFault) {
            axisFault.printStackTrace();
        }


    }

    public static void main(String[] args) {

        TestService4 testService4 = new TestService4();
        testService4.testMethod11();
        testService4.testMethod12();
        testService4.testMethod13();
        testService4.testMethod2();
        testService4.testMethod3();
        testService4.testMethod4();
    }
}
TOP

Related Classes of sample.rmi.client.TestService4

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.