KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > wsdl > date > TestdateSoapBindingImpl


1 /**
2  * TestdateSoapBindingImpl.java
3  *
4  * This file was auto-generated from WSDL
5  * by the Apache Axis 1.2alpha Dec 06, 2003 (10:46:24 EST) WSDL2Java emitter.
6  */

7
8 package test.wsdl.date;
9
10 import java.util.*;
11
12 public class TestdateSoapBindingImpl implements test.wsdl.date.MyService{
13     public test.wsdl.date.MyBean getInfo() throws java.rmi.RemoteException JavaDoc {
14         MyBean b = new MyBean();
15         Calendar xmas = new GregorianCalendar(1998, Calendar.DECEMBER, 25);
16         Date date = xmas.getTime();
17         b.setDate(new Date());
18         return b;
19     }
20
21 }
22
Popular Tags