KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > samples > jaxrpc > hello > HelloBindingImpl


1 /**
2  * HelloBindingImpl.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis WSDL2Java emitter.
6  */

7
8 package samples.jaxrpc.hello;
9
10 public class HelloBindingImpl implements samples.jaxrpc.hello.Hello {
11     public java.lang.String JavaDoc sayHello(java.lang.String JavaDoc name) throws java.rmi.RemoteException JavaDoc {
12         return "A dynamic proxy hello to " + name + "!";
13     }
14
15 }
16
Popular Tags