Package com.sun.enterprise.admin.wsmgmt.registry

Examples of com.sun.enterprise.admin.wsmgmt.registry.ConfigHelper


        return port;
    }
   
    String getWSDL(String host, String webServiceName){
        String port = DEFAULT_PORT;
        ConfigHelper ch = ConfigHelper.getInstanceToQueryRegistryLocations();
        port = ch.getInstancePort ();
        if (port == null)
            port = DEFAULT_PORT; // sanity
       
        String wsdl = null;
        String uri = null;
View Full Code Here


     * connector-connection-pool, proceeds further to remove the
     * connector-resource
     * @param jndiNameOfRegistry whose resources are to be removed from the domain
     */
    public void removeRegistryConnectionResources(String jndiNameOfRegistry) {
        ConfigHelper configHelper = ConfigHelper.getInstanceToDeleteRegistryResources();
        configHelper.removeRegistryConnectionResources(jndiNameOfRegistry);
        return;
    }
View Full Code Here

     * {@link com.sun.appserv.management.WebServiceMgr#PASSWORD_KEY}
     *
     */
    public void addRegistryConnectionResources(String jndiName,
            String description, String type, Map<String, String> properties){
        ConfigHelper configHelper = ConfigHelper.getInstanceToDeleteRegistryResources();
        configHelper.addRegistryConnectionResources(jndiName, description, type,
                properties);
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.wsmgmt.registry.ConfigHelper

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.