0

Agile の API 機能を使用して Eclipse Jee Neon とやり取りしたい場合。どうすればそうすることができますか。このリンクを作成するために必要な Eclipse の手順は何ですか。私は何を間違っていますか?どこを見ればいいですか?

4

1 に答える 1

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);
}
于 2016-07-29T21:28:04.973 に答える