KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsdl > echo > ComplexEchoServiceSoapBindingImpl


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

7
8 package test.wsdl.echo;
9
10 public class ComplexEchoServiceSoapBindingImpl implements Echo{
11     public void echo(test.wsdl.echo.holders.MyComplexTypeHolder myElement) throws java.rmi.RemoteException JavaDoc {
12         myElement.value.setSimpleItem("MY_SIMPLE_ITEM");
13     }
14
15     public test.wsdl.echo.NamedValue[] echo2(test.wsdl.echo.MyComplexType2 options) throws java.rmi.RemoteException JavaDoc {
16         return options.getOptions();
17     }
18
19 }
20
Popular Tags