Package axis.com.ibm.www.xmlns.stdwip.web_services.WS_BaseNotification

Examples of axis.com.ibm.www.xmlns.stdwip.web_services.WS_BaseNotification.SubscribeResponse


      // useNotify == true indicates that the Notification will be wrapped in a wsnt:Notify element.
      request.setUseNotify( new Boolean( true ) );

      // Issue the actual request to subscribe
      SubscribeResponse response = m_stub.subscribe( request );

      return response;
   }
View Full Code Here


         EndpointReferenceType     sensorEpr = endpointReferences[i];
         SensorSoapHttpBindingStub sensor = getSensorService( sensorEpr );

         // build the request to subscribe to the sensor services' change notifications
         Subscribe         subscribeRequest  = buildSubscribe( sensorEpr );
         SubscribeResponse subscribeResponse = sensor.subscribe( subscribeRequest );

         // the subscription request succeeded - remember the EPR to the new subscription in case we need to unsubscribe
         m_subscriptions.add( subscribeResponse.getSubscriptionReference(  ) );
      }

      return;
   }
View Full Code Here

TOP

Related Classes of axis.com.ibm.www.xmlns.stdwip.web_services.WS_BaseNotification.SubscribeResponse

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.