Package org.pentaho.test.platform.plugin.services.webservices

Examples of org.pentaho.test.platform.plugin.services.webservices.StubServiceSetup


  private AxisServiceExecutor contentGenerator;

  @Before
  public void setUp() throws Exception {
    StandaloneSession session = new StandaloneSession( "test" );
    StubServiceSetup serviceSetup = new StubServiceSetup();
    serviceSetup.setSession( session );

    AxisConfiguration axisCfg = serviceSetup.getAxisConfiguration();
    ConfigurationContext configContext = new ConfigurationContext( axisCfg );

    serviceSetup.loadServices();

    TransportInDescription tIn = new TransportInDescription( DEAFULT_TRANSPOT_PROTOCOL );
    StubTransportListener receiver = new StubTransportListener();
    tIn.setReceiver( receiver );
    axisCfg.addTransportIn( tIn );
View Full Code Here

TOP

Related Classes of org.pentaho.test.platform.plugin.services.webservices.StubServiceSetup

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.