Package org.codehaus.xfire.generator

Source Code of org.codehaus.xfire.generator.WeatherTest

package org.codehaus.xfire.generator;

import org.codehaus.xfire.gen.Wsdl11Generator;

public class WeatherTest
    extends GenerationTestSupport
{
    public void testEchoServiceIntf() throws Exception
    {
        Wsdl11Generator generator = new Wsdl11Generator();
        generator.setWsdl(getTestFilePath("src/wsdl/WeatherForecast.wsdl"));
        generator.setOutputDirectory(getTestFilePath("target/test-services"));
        generator.setDestinationPackage("weather");
        generator.setOverwrite(true);
       
        generator.generate();       
    }
}
TOP

Related Classes of org.codehaus.xfire.generator.WeatherTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.