Package org.jboss.ws.extensions.eventing.jaxws

Examples of org.jboss.ws.extensions.eventing.jaxws.Unsubscribe


      AddressingProperties requestProps =
            buildFollowupProperties(response, EventingConstants.UNSUBSCRIBE_ACTION, eventSourceURI.toString());
      setRequestProperties((BindingProvider)managerPort, requestProps);

      Unsubscribe unsubscribeRequest = new Unsubscribe();
      managerPort.unsubscribeOp(unsubscribeRequest);

      AddressingProperties responseProps = getResponseProperties((BindingProvider)managerPort);
      assertEquals(responseProps.getAction().getURI().toString(), EventingConstants.UNSUBSCRIBE_RESPONSE_ACTION);
View Full Code Here


      //SysmonUtil.printSubscriptionDetails(subscribeResponse);

      // addressing correlation
      AddressingProperties unsubscribeProps = SysmonUtil.buildFollowupProperties(subscribeResponse, EventingConstants.UNSUBSCRIBE_ACTION, eventSourceURI);
      SysmonUtil.setRequestProperties((BindingProvider)managementPort, unsubscribeProps);
      managementPort.unsubscribeOp(new Unsubscribe());

      AddressingProperties getStatusProps = SysmonUtil.buildFollowupProperties(subscribeResponse, EventingConstants.GET_STATUS_ACTION, eventSourceURI);
      SysmonUtil.setRequestProperties((BindingProvider)managementPort, getStatusProps);

      try
View Full Code Here

TOP

Related Classes of org.jboss.ws.extensions.eventing.jaxws.Unsubscribe

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.