01: /**
02: * HelloBindingImpl.java
03: *
04: * This file was auto-generated from WSDL
05: * by the Apache Axis WSDL2Java emitter.
06: */package samples.jaxrpc.hello;
07:
08: public class HelloBindingImpl implements samples.jaxrpc.hello.Hello {
09: public java.lang.String sayHello(java.lang.String name)
10: throws java.rmi.RemoteException {
11: return "A dynamic proxy hello to " + name + "!";
12: }
13:
14: }
|