Package axis.org.apache.ws.generated.registry

Examples of axis.org.apache.ws.generated.registry.FindAllServiceNamesResponse


    * @throws RemoteException
    */
   public void testFindAllServiceNames(  )
   throws RemoteException
   {
      FindAllServiceNamesResponse names = m_stub.findAllServiceNames(  );
      Assert.assertNotNull( names );
      Assert.assertEquals( 2, names.getItem(  ).length ); // 2 because there is the Registry WSresource itself too
      Assert.assertTrue( "disk".equals( names.getItem( 0 ) ) || "disk".equals( names.getItem( 1 ) ) );
      Assert.assertTrue( "registry".equals( names.getItem( 0 ) ) || "registry".equals( names.getItem( 1 ) ) );
   }
View Full Code Here

TOP

Related Classes of axis.org.apache.ws.generated.registry.FindAllServiceNamesResponse

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.