1 package test.wsdl.qname; 2 3 import java.rmi.RemoteException ; 4 5 public class MyServiceImpl implements MyServiceInterface { 6 public MyServiceImpl() { 7 } 8 9 public String Hello(String pName) throws java.rmi.RemoteException { 10 return "Hello, " + pName; 11 } 12 13 public String HelloAgain(int pName) throws java.rmi.RemoteException { 14 return "Hello Again, " + Integer.toString(pName); 15 } 16 17 } | Popular Tags |