Examples of unpublishFromRegistry()


Examples of com.sun.appserv.management.ext.wsmgmt.WebServiceMgr.unpublishFromRegistry()

            for(Map registry : registriesSelected){
                String registryName = (String) registry.get("RegistryName");
                registries[i++] = registryName;
            }
            WebServiceMgr wsm = (WebServiceMgr)AMXUtil.getDomainRoot().getWebServiceMgr();
            wsm.unpublishFromRegistry(registries, webServiceKey);
        } catch (Exception ex) {
            GuiUtil.handleException(handlerCtx, ex);
        }
    }
   
View Full Code Here

Examples of com.sun.enterprise.admin.wsmgmt.registry.RegistryAccessObject.unpublishFromRegistry()

        boolean unpublished = false;
        try{
            RegistryAccessObject rao = this.getRegistryAccessObject();
            _logger.fine("WebServiceMgrBackEnd.unpublishFromRegistry:" +
                    "unpublishing web service = "+ webServiceName);
            unpublished = rao.unpublishFromRegistry(registryLocations, webServiceName);
            if(unpublished == false){
                String errorMessage =
                        _stringMgr.getString("WebServiceMgrBackend.UnpublishFailure",
                        webServiceName);
               
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.