2016-07-29 4 views

答えて

0

接続先のAgile PLMのバージョンのAgileAPI.jarファイルへの参照を追加する必要があります。次に、クイックスタートガイドで参照されているような定型文を使用して、Agileインスタンスへの接続を作成します。

private IAgileSession login(String username, String password) throws APIException 
{ 
    //Create the params variable to hold login parameters 
    HashMap params = new HashMap(); 

    //Put username and password values into params   
    params.put(AgileSessionFactory.USERNAME, username); 
    params.put(AgileSessionFactory.PASSWORD, password); 

    // Get an Agile server instance. ("agileserver" is the name of the Agile  
    // proxy server, and "virtualPath" is the name of the virtual path used 
    // for the Agile system.) 

    AgileSessionFactory instance = 
     AgileSessionFactory.getInstance("http://<agileserver>/<virtualPath>"); 

    //Create the Agile PLM session and log in 
    return instance.createSession(params); 
} 
関連する問題