/**
 * ServiceImpl.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
 */

package com.name.webservice.server;

import javax.xml.rpc.ServiceException;

import com.name.webservice.server.impl.PersonService;

public class ServiceImpl implements com.name.myapp.websevice.axis.MyAppServicePort, 
																		javax.xml.rpc.server.ServiceLifecycle
{
    public com.name.myapp.websevice.axis.PersonType getPerson(java.lang.String personReq) throws java.rmi.RemoteException {
      PersonService service = new PersonService(personReq);
      return service.getPersonType();
    }
    
    // TODO here it works not!
  	public void init(Object arg0) throws ServiceException {
  		System.out.println("ServiceImpl - init");
  	}

  	public void destroy() {
  		System.out.println("ServiceImpl - destroy");
  	}
}