Example #1
0
  @Before
  public void setUp() throws Exception {
    super.setUp();

    Server s = createService(ExceptionService.class, new ExceptionServiceImpl(), null);
    s.getEndpoint().getService().setInvoker(new BeanInvoker(new ExceptionServiceImpl()));
  }
 @Before
 public void setUp() throws Exception {
   super.setUp();
   Server server = createService(IInterfaceService.class);
   Service service = server.getEndpoint().getService();
   service.setInvoker(new BeanInvoker(new InterfaceService()));
 }