Beispiel #1
0
  public void testWSDL() throws Exception {
    Service service = (Service) getServiceRegistry().getService("EchoImpl");

    WSDLWriter wsdl = service.getWSDLWriter();

    assertNotNull(wsdl);

    ByteArrayOutputStream out = new ByteArrayOutputStream();
    getXFire().generateWSDL("EchoImpl", out);
  }