(file) Return to Test02EE.java CVS log (file) (dir) Up to [Pegasus] / pegasus-JavaCIMClient / cimclient / tests / ClientUnitTests

File: [Pegasus] / pegasus-JavaCIMClient / cimclient / tests / ClientUnitTests / Test02EE.java (download)
Revision: 1.1, Thu Jul 17 17:32:55 2003 UTC (20 years, 11 months ago) by kumpf
Branch: MAIN
CVS Tags: test, pegasus25BeforeLicenseUpdate, local, TEST, SLPPERFINST-root, SLPPERFINST-branch, RELEASE_2_4_FC_CANDIDATE_1, RELEASE_2_4_1-BETA3, RELEASE_2_4_1-BETA2, RELEASE_2_4_1-BETA1, RELEASE_2_4_1, RELEASE_2_4_0-RC3, RELEASE_2_4_0-RC2, RELEASE_2_4_0, RELEASE_2_4-root, RELEASE_2_4-branch, RELEASE_2_3_2-testfreeze, RELEASE_2_3_2-root, RELEASE_2_3_2-releasesnapshot, RELEASE_2_3_2-branch-freeze, RELEASE_2_3_2-branch, RELEASE_2_3_1-root, RELEASE_2_3_1-branch, RELEASE_2_3_0-root, RELEASE_2_3_0-msg-freeze, RELEASE_2_3_0-branch, PRE_LICENSE_UPDATE_2003, POST_LICENSE_UPDATE_2003, PEP217_PRE_BRANCH, PEP217_POST_BRANCH, PEP217_BRANCH, PEP214ROOT, PEP214BRANCH, PEP214-root, PEP214-branch, PEP213_SIZE_OPTIMIZATIONS, PEP-214B-root, PEG25_IBM_5_16_05, MONITOR_CONSOLIDATION_2_5_BRANCH, IBM_241_April1405, HPUX_TEST, HEAD, CQL_2_5_BRANCH, CHUNKTESTDONE_PEP140, BUG2493_BINREP-root, BUG2493_BINREP-branch
Branch point for: pep_88
HP-BAPU: PEP-64 CIM Client and CIM Listener Java Interface

//
// Test02EE.java
//
// The contents of this file are subject to the SNIA Public License Version 1.0
// (the "License"); you may not use this file except in compliance with the
// License. You may obtain a copy of the License at
//
//	http://www.snia.org/resources/openSource.html
//
// Software distributed under the License is distributed on an "AS IS" basis,
// WITHOUT WARRANTY OF ANY KIND, either express or implied. See the 
// License for the specific language governing rights and limitations
// under the License.
//
// The Original Code is Test02EE.java
// 
// The Initial Developers of the Original Code are Bapu Patil 
//
//
// Revision 1.1  2002/05/15 09:36:59 bpatil
// Initial revision
//


package tests.ClientUnitTests;

import java.util.Enumeration;
import java.util.Vector;
import java.rmi.*;
import java.rmi.server.*;
import java.rmi.Naming;
import java.rmi.Remote;
import java.net.*;
import org.snia.wbemcmd.utils.SimpleEnum;
import org.snia.wbem.client.CIMClient;
import org.snia.wbem.cim.CIMNameSpace;
import org.snia.wbem.cim.CIMObjectPath;
import org.snia.wbem.cim.CIMClass;
import org.snia.wbem.cim.CIMProperty;
import org.snia.wbem.cim.CIMInstance;
import org.snia.wbem.cim.CIMValue;
import org.snia.wbem.cim.CIMQualifierType;
import org.snia.wbem.cim.CIMException;

public class Test02EE {

    public void example(String args[])
    {

	CIMNameSpace clientNameSpace;
	String hostName = "localhost";		// host for cimom
	String nameSpace = "root/cimv2";		// namespace
	CIMClient cc=null;
	int portNo=CIMNameSpace.DEFAULT_PORT;
	String hostURL;
        String isSSL = null;

        if (args.length>=3) {
            hostName=args[0];
            nameSpace=args[1];
            portNo=Integer.parseInt(args[2]);
        } else if (args.length!=0) {
            System.err.println("Test02EE [hostname namespace portNo [ssl]]");
            System.exit(1);
        }

        if (args.length==4 && args[3].equalsIgnoreCase("ssl") )
        {
            isSSL=args[3];
        }
        if ( isSSL != null )
            hostURL="https://"+hostName+":"+portNo;
        else
            hostURL="http://"+hostName+":"+portNo;
	
	
	System.err.println("Connecting to "+hostName+
			    " for namespace "+nameSpace);
	try {
	    clientNameSpace = new CIMNameSpace(hostURL, nameSpace);  
	    cc = new CIMClient(clientNameSpace, "guest", "guest", CIMClient.XML);
	} catch (CIMException e) {
	    System.err.println("Failed to access CIMOM: "+e);
	    System.exit(1);
	}
	
	System.err.println("Client created");


     //
     // should return an instance
     //   - Gets an instance for the specified object path
     //
     //
System.err.println("\n **********Enumerate Namespaces with Deep: root");
     try 
     {
        //CIMObjectPath pa1=new CIMObjectPath("root", (Vector)null);
        CIMObjectPath pa1=new CIMObjectPath("root", "root");
        Enumeration enum = cc.enumNameSpace(pa1, true);

        while (enum.hasMoreElements()) 
        {
	   String nsString = (String) enum.nextElement();
           System.out.println("NameSpace:"+ nsString);
        }
     }
     catch (CIMException ce) {
	 System.err.println("Failed to fetch namespaces:"+ce);
	 System.exit(1);
    }
System.err.println("\n **********Enumerate Namespaces with Deep: root/myNameSpace");
     try 
     {
        CIMObjectPath pa1=new CIMObjectPath("root/myNameSpace", (Vector)null);
        Enumeration enum = cc.enumNameSpace(pa1, true);

        while (enum.hasMoreElements()) 
        {
	   String nsString = (String) enum.nextElement();
           System.out.println("NameSpace:"+ nsString);
        }
     }
     catch (CIMException ce) {
	 System.err.println("Failed to fetch namespaces:"+ce);
	 System.exit(1);
    }
System.err.println("\n **********Enumerate Namespaces with Deep: null namespace");
     try 
     {
        CIMObjectPath pa1=new CIMObjectPath("", (Vector)null);
        Enumeration enum = cc.enumNameSpace(pa1, true);

        while (enum.hasMoreElements()) 
        {
	   String nsString = (String) enum.nextElement();
           System.out.println("NameSpace:"+ nsString);
        }
     }
     catch (CIMException ce) {
	 System.err.println("Failed to fetch namespaces:"+ce);
	 System.exit(1);
    }
System.err.println("\n **********Enumerate Namespaces with Deep: EMPTY");
     try 
     {
        CIMObjectPath pa1=new CIMObjectPath(" ", (Vector)null);
        Enumeration enum = cc.enumNameSpace(pa1, true);

        while (enum.hasMoreElements()) 
        {
	   String nsString = (String) enum.nextElement();
           System.out.println("NameSpace:"+ nsString);
        }
     }
     catch (CIMException ce) {
	 System.err.println("Failed to fetch namespaces:"+ce);
	 System.exit(1);
    }
     
     System.out.println("done:");
   }

   
   public Test02EE() {
   }
   
    public static void main(String args[]){
	Test02EE ea=new Test02EE();
	ea.example(args);
    }
}

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2