package com.sanjaya;

import java.io.IOException;
import java.net.URL;
import java.net.MalformedURLException;
import java.util.Date;
import java.math.BigDecimal;

//import org.apache.cocoon.processing.soap.types.test.Order;
/**
 * Class implementing the tests defined at
 * @see http://www.xmethods.net/ilab/ilab.html
 * for a Java SOAP server.
 */
public class EchoService
{
	public EchoService()
	{
		super();
	}

	public void echoVoid()
	{
	}

	public String echoString(String inParm)
	{
		return inParm;
	}


}