1 7 8 package test.wsdl.gateway; 9 10 public class GatewaySoapBindingImpl implements test.wsdl.gateway.Gateway{ 11 public java.lang.String test1(test.wsdl.gateway.MyClass myClass) throws java.rmi.RemoteException { 12 String [][] textArray=myClass.getValues(); 13 return "value of 1,1 = "+textArray[0][0]; 14 } 15 16 public test.wsdl.gateway.MyClass test2() throws java.rmi.RemoteException { 17 String [][] param=new String [2][]; 18 param[0]=new String [1]; 19 param[0][0]="0,0"; 20 param[1]=new String [3]; 21 param[1][0]="1,0"; 22 param[1][1]="*1,1"; 23 param[1][2]="1,2"; 24 MyClass myClass=new MyClass(); 25 myClass.setValues(param); 26 return myClass; 27 } 28 29 public java.lang.String [][] test3() throws java.rmi.RemoteException { 30 return null; 31 } 32 33 public java.lang.String test4(java.lang.String [][] in0) throws java.rmi.RemoteException { 34 return null; 35 } 36 37 } 38 | Popular Tags |