/*
 * ServizioServer.java
 *
 * Created on 12 luglio 2006, 11.37
 *
 * To change this template, choose Tools | Options and locate the template under
 * the Source Creation and Management node. Right-click the template and choose
 * Open. You can then make changes to the template in the Source Editor.
 */

package sandeshaMio;

//package x log4j
import org.apache.log4j.Logger;
import org.apache.log4j.PropertyConfigurator;

/**
 *
 * @author Valerio
 */
public class ServizioServer {
    
    static Logger logger;
    
    
    
    /** Creates a new instance of ServizioServer */
    public ServizioServer() {
        //logger = Logger.getLogger("ServizioServer");
        //PropertyConfigurator.configure("/home/valerio/apache-tomcat-5.5.17/webapps/axis/WEB-INF/classes/log4j.properties");
        System.out.println("ServizioServer");
    }
    
    public void echo(String s) {
        //logger.info(s);
        System.out.println(s);
    }
    
}
