Package axis.com.xyz

Examples of axis.com.xyz.DiskSoapHttpBindingStub


    */
   private MessageElement[] getComplexProperty( QName  prop,
                                                String resourceID )
   throws Exception
   {
      DiskSoapHttpBindingStub binding = getStub(  );
      binding.setResourceId( resourceID );
      return binding.getResourceProperty( prop ).get_any(  );
   }
View Full Code Here


    */
   private DiskSoapHttpBindingStub getStub(  )
   throws ServiceException
   {
      // get the service stub to the HTTP endpoint
      final DiskSoapHttpBindingStub stub =
         (DiskSoapHttpBindingStub) new DiskWsdmServiceLocator(  ).getdisk( getAxisWebServiceWsdlUrl( ExampleConstants.SERVICE_NAME ) );

      assertNotNull( "disk stub is null.", stub );

      // ensure that we will time out after a minute
      stub.setTimeout( CALL_TIMEOUT );

      return stub;
   }
View Full Code Here

TOP

Related Classes of axis.com.xyz.DiskSoapHttpBindingStub

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.