Package org.codehaus.xfire.aegis

Examples of org.codehaus.xfire.aegis.AegisServiceConfiguration


*/
public class AegisConfigurationTest extends AbstractXFireAegisTest {

  public void testServiceConfig() throws Exception {
    ObjectServiceFactory factory = (ObjectServiceFactory) getServiceFactory();
    AegisServiceConfiguration conf = new AegisServiceConfiguration();
    conf.setServiceFactory(factory);
    factory.getServiceConfigurations().add(0, conf);
    Service service = getServiceFactory().create(EchoImpl.class);
        service.setInvoker(new BeanInvoker(new EchoImpl()));
        getServiceRegistry().register(service);
        Document wsdl = getWSDLDocument("EchoImpl");
View Full Code Here

TOP

Related Classes of org.codehaus.xfire.aegis.AegisServiceConfiguration

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.