Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

List all ProcessAreas of a repository

I want to list all the projects of a repository. I use this code to login:

public class TestDriver {


public static String JAZZ_SERVER = "https://localhost:9443/ccm";

public static void main (String[] args) {

try {
Login login = new Login(JAZZ_SERVER);
ITeamRepository repo = login.loginUser("TestUser", "123456");


} catch (AuthenticationException e1) {
System.out.println(e1.getMessage());
} catch (TeamRepositoryException e2) {
e2.printStackTrace();
} finally {
TeamPlatform.shutdown();
}
}



}


But now I don't know what to do. Can anyone help

0 votes



One answer

Permanent link
I want to list all the projects of a repository. I use this code to login:

But now I don't know what to do. Can anyone help


I saw your post on https://jazz.net/forums/viewtopic.php?p=66448#66448

That is the correct way to get the project area list

Dancy

0 votes

Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details
× 10,943

Question asked: Oct 10 '11, 4:14 p.m.

Question was seen: 5,849 times

Last updated: Oct 10 '11, 4:14 p.m.

Confirmation Cancel Confirm