Difference between revisions of "DIS-HLS-Client"

From Gcube Wiki
Jump to: navigation, search
(New page: <pre> ExtendedGSSCredential cred=null; try { cred = ProxyUtil.loadProxyCredentials("certWithDLRoles"); } catch (IOException e) { e.printStackTrace(); } catch (GSSException e) { e....)
 
Line 12: Line 12:
 
try {
 
try {
 
//null credential and null EPR
 
//null credential and null EPR
riManager=getRunningInstanceManager(null, null);
+
riManager=DISHLSClient.getRunningInstanceManager(null, null);
         pMan= getPropertiesManager(cred, null);
+
         pMan= DISHLSClient.getPropertiesManager(cred, null);
 
} catch (DISHLSClientException e) {
 
} catch (DISHLSClientException e) {
 
       e.printStackTrace();
 
       e.printStackTrace();

Revision as of 13:31, 19 March 2007

ExtendedGSSCredential cred=null;
try {
       cred = ProxyUtil.loadProxyCredentials("certWithDLRoles");
} catch (IOException e) {
	e.printStackTrace();
} catch (GSSException e) {
	e.printStackTrace();
}
RunningInstanceManager riManager=null;
PropertiesManager pMan =null;
try {
	//null credential and null EPR
	riManager=DISHLSClient.getRunningInstanceManager(null, null);
        pMan= DISHLSClient.getPropertiesManager(cred, null);
} catch (DISHLSClientException e) {
       e.printStackTrace();
}
String test= null;
try {
       riManager.getEPRsRIFromClassAndName("InformationSystem", "DIS-Registry", "dililigentproject/informationservice/disregistry/DISRegistryFactoryService", null,null);
       test= pMan.getAllPublishedEntries(cred, null);
} catch (DISHLSClientException e) {
       e.printStackTrace();
} catch (DISHLSCredentialException e) {
       //community changed
       e.printStackTrace();
}