Package de.fzj.unicore.uas.client

Examples of de.fzj.unicore.uas.client.StorageFactoryClient


    // TODO: remove it afterwards
    if(userName != null) {
      secProps.getETDSettings().getRequestedUserAttributes2().put("xlogin", new String[]{userName});
    }
   
    StorageFactoryClient sfc = new StorageFactoryClient(sfEpr, secProps);
   
    if (log.isDebugEnabled()){
      log.debug("Using storage factory at <"+sfc.getUrl()+">");
    }
   
    StorageClient sc = null;
    try{
      sc=sfc.createSMS(getCreateSMSDocument());
     
      String addr=sc.getEPR().getAddress().getStringValue();
      log.info(addr);
     
    }catch(Exception ex){
View Full Code Here


    // TODO: remove it afterwards
    if(userName != null) {
      secProps.getETDSettings().getRequestedUserAttributes2().put("xlogin", new String[]{userName});
    }
   
    StorageFactoryClient sfc = new StorageFactoryClient(sfEpr, secProps);
   
    if (log.isDebugEnabled()){
      log.debug("Using storage factory at <"+sfc.getUrl()+">");
    }
   
    StorageClient sc = null;
    try{
      sc=sfc.createSMS(getCreateSMSDocument());
     
      String addr=sc.getEPR().getAddress().getStringValue();
      log.info(addr);
     
    }catch(Exception ex){
View Full Code Here

TOP

Related Classes of de.fzj.unicore.uas.client.StorageFactoryClient

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.