Examples of sendBye()


Examples of org.wso2.carbon.discovery.workers.MessageSender.sendBye()

            Parameter discoveryProxyParam = axisConf.getParameter(DiscoveryConstants.DISCOVERY_PROXY);
            if (discoveryProxyParam != null) {
                MessageSender messageSender = new MessageSender();
                try {
                    for (AxisService axisService : axisConf.getServices().values()) {
                        messageSender.sendBye(axisService, (String) discoveryProxyParam.getValue());
                    }
                } catch (DiscoveryException e) {
                    log.error("Cannot send the bye message", e);
                }
            }
View Full Code Here

Examples of org.wso2.carbon.discovery.workers.MessageSender.sendBye()

                    log.debug("Sending WS-Discovery Bye message for the " +
                            "service " + service.getName());
                }

                try {
                    messageSender.sendBye(service, (String) discoveryProxyParam.getValue());
                } catch (DiscoveryException e) {
                    log.error("Cannot send the bye message ", e);
                }
            }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.