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

File: [Pegasus] / pegasus-JavaCIMClient / cimclient / tests / ClientUnitTests / Test09.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

//
// Test09.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 Test09.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;
import org.snia.wbem.cim.*;

public class Test09 {

    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;
		
	if (args.length==3) {
	    hostName=args[0];
	    nameSpace=args[1];
            portNo=Integer.parseInt(args[2]);
	} else if (args.length!=0) {
	    System.err.println("SetClass [hostname namespace portNo]");
	    System.exit(1);
	}
	
	System.err.println("Connecting to "+hostName+
			    " for namespace "+nameSpace);
	hostURL="http://"+hostName+":"+portNo;
	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");

    
    //
     // returns a sample QualifierType ("association")
     //
     //CIMNameSpace localNameSpace = new CIMNameSpace(hostURL, nameSpace);
     //Enumeration enumQl = cc.enumQualifierTypes(globalNamespace);
     //while (enumQl.hasMoreElements())
     //

System.err.println("\n **********Enumerate QualifierType on association");
     try
     {
          CIMObjectPath pa9 = new CIMObjectPath("Association");
          Enumeration enumQl = cc.enumQualifierTypes(pa9);
          while (enumQl.hasMoreElements())
          {
             CIMQualifierType qt =(CIMQualifierType)(enumQl.nextElement());
             if (qt !=null)  
             {
               System.out.println("\npa 09: " + (String)(qt.toXml()));
               //System.out.println("\npa 09: " + qt);
               //System.out.println("\npa 09: " + qt.getType());
               //System.out.println("\npa 09: " + qt.getType().toString());
             }
           }
     }
     catch (MalformedURLException me) { }
     catch (CIMException ce)
     {
         System.err.println("Failed to fetch enumeration of qualifier types:"+ce);
         ce.printStackTrace();
         System.exit(1);
     } 

System.err.println("\n **********Test getQualifiers() on CIM_Process");
     try
     {
          CIMObjectPath pa10 = new CIMObjectPath("CIM_Process");

          CIMClass  cclass = cc.getClass(pa10, true);
          Vector qualifiers=  cclass.getQualifiers();     // CIMQualifier
          for(int i=0;i<qualifiers.size();i++) 
          {
             CIMQualifier qt= (CIMQualifier)qualifiers.elementAt(i);
             System.err.println("Loaded qualifier:"+qt.getName());
          }
     }
     catch (CIMException ce)
     {
         System.err.println("Failed to fetch enumeration of qualifier types:"+ce);
         ce.printStackTrace();
         System.exit(1);
     } 

     System.out.println("done:");
   }

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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2