Package org.codehaus.xfire.jaxws

Source Code of org.codehaus.xfire.jaxws.AbstractJAXWSHttpTest

package org.codehaus.xfire.jaxws;

import org.codehaus.xfire.server.http.XFireHttpServer;

/**
* Starts and Stops the XFireHttpServer.
*
* @author Dan Diephouse
*/
public class AbstractJAXWSHttpTest
    extends AbstractJAXWSTest
{
    private XFireHttpServer server;

    @Override
    protected void setUp()
        throws Exception
    {
        super.setUp();
       
        server = new XFireHttpServer();
        server.setPort(8191);
        server.start();
    }
   
    @Override
    protected void tearDown()
        throws Exception
    {
        server.stop();
       
        super.tearDown();
    }
}
TOP

Related Classes of org.codehaus.xfire.jaxws.AbstractJAXWSHttpTest

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.