01: /**
02: * PerfPortSoapBindingImpl.java
03: *
04: * This file was auto-generated from WSDL
05: * by the Apache Axis 1.2beta Apr 25, 2004 (11:19:16 EDT) WSDL2Java emitter.
06: */package samples.perf;
07:
08: public class PerfPortSoapBindingImpl implements
09: samples.perf.PerfService_PortType {
10: public java.lang.String handleStringArray(java.lang.String[] s)
11: throws java.rmi.RemoteException {
12: String returnString;
13: returnString = "array length was - " + s.length;
14: return returnString;
15: }
16:
17: }
|