Examples of EchoSimpleEventsRequest


Examples of edu.indiana.extreme.wsdl.benchmark1.EchoSimpleEventsRequest

    public List<String> sendStrings(int input) throws java.lang.Exception {       
        return port.sendStrings(input);
    }

    public List<SimpleEvent> echoSimpleEvents(List<SimpleEvent> input) throws java.lang.Exception {
        EchoSimpleEventsRequest request = new EchoSimpleEventsRequest();
        ArrayOfSimpleEvent array = new ArrayOfSimpleEvent();
        array.getItem().addAll(input);
        request.setInput(array);
        return port.echoSimpleEvents(request).getEchoSimpleEventsReturn().getItem();
    }
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.