Package org.apache.geronimo.axis

Examples of org.apache.geronimo.axis.GeronimoWsDeployContext


    public EWSTest(String testName) {
        super(testName);
    }

    public void testEchoPOJO() throws Exception {
        GeronimoWsDeployContext deployContext =
                new GeronimoWsDeployContext(getTestFile("target/samples/echo.war"),
                        outDir + "/echo-war");
        Ws4J2ee ws4j2ee = new Ws4J2ee(deployContext, null);
        ws4j2ee.generate();
        File out = new File(outDir + "/echo-war", "echo-ewsimpl.jar");
        assertTrue(out.exists());
View Full Code Here

TOP

Related Classes of org.apache.geronimo.axis.GeronimoWsDeployContext

Copyright © 2018 www.massapicom. 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.