0
Eclipse Jee Neonと対話するためにAgileのAPI機能を使用したい場合は、どうすればいいですか?このリンクを作成するために必要なEclipseのステップは何ですか?私は間違って何をしていますか?どこを探していますか?Eclipse Jee Neon Agile PLMのクライアントとしての対話バージョン9.3.0.2(Build 20)
Eclipse Jee Neonと対話するためにAgileのAPI機能を使用したい場合は、どうすればいいですか?このリンクを作成するために必要なEclipseのステップは何ですか?私は間違って何をしていますか?どこを探していますか?Eclipse Jee Neon Agile PLMのクライアントとしての対話バージョン9.3.0.2(Build 20)
接続先の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);
}