| Author |
Code setup to use WebSphere APIs
|
Syed Hasan
Greenhorn
Joined: Apr 09, 2004
Posts: 1
|
|
I am trying to write some code using WebSphere APIs specifically trying to get a list of application Servers. I believe I have not set things up correctly in WSAD as I am getting an exception in the first line of code. Any ideas on what I need to do to get this code to work. Thanks. /* * Created on Apr 9, 2004 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ /** * @author shasan * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ import com.ibm.websphere.management.application.AppManagement; import com.ibm.websphere.management.application.AppManagementProxy; import com.ibm.websphere.management.application.AppConstants; import com.ibm.websphere.management.application.AppManagementProxy; import java.util.Vector; import java.util.Hashtable; import java.util.Locale; public class CRoot { private AppManagement appMgmt = null; public CRoot() { try{ appMgmt = AppManagementProxy.getLocalProxy (); } catch(Throwable t) { System.out.println(t.getMessage()); }/* catch(Exception e) { System.out.println(e.getMessage()); }*/ } public Vector getInstalledApplications() { Vector appsList = null; try { Hashtable prefs = new Hashtable(); prefs.put(AppConstants.APPDEPL_LOCALE, Locale.getDefault()); appsList = appMgmt.listApplications(prefs, null); } catch(Exception e) { System.out.println("Problem Admin"); } return appsList; } public static void main(String [] args) { try { CRoot root = new CRoot(); System.out.println(root.getInstalledApplications().toString()); } catch(Exception e) { System.out.println("Wassup" + e.getMessage()); } } } Any help will be much appreciated. Ali Hasan
|
 |
 |
|
|
subject: Code setup to use WebSphere APIs
|
|
|