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

Is their a java api into Requirements Management, I wish to list the projects users

I can use the java api to talk to RTC, how do I use it to talk to RM

I login this way to get my team service

    private void login(String url, final String id, final String pass) throws TeamRepositoryException {
        repo = TeamPlatform.getTeamRepositoryService().getTeamRepository(url);
        repo.registerLoginHandler(new ITeamRepository.ILoginHandler() {
            public ILoginInfo challenge(ITeamRepository repository) {
                return new ILoginInfo() {
                    public String getUserId() {
                        return id;
                    }
                    public String getPassword() {
                        return pass;                       
                    }
                };
            }
        });   
        repo.login(MONITOR);
    }

0 votes



One answer

Permanent link
Depending upon your client version (> V405) there are some javascript extensions

https://jazz.net/wiki/bin/view/Main/RMExtensionsMain

For example in V5 there is an api to find the user details

https://jazz.net/wiki/bin/view/Main/RMExtensionsAPI50#UserDetails

0 votes

Comments

ver 4.0.7    any java api interface

I have found that the same "attacks" that one can devise for RTC work equally well with RM except that /jts should be in the URL.     Ralph Schoon has a wiki that has examples of examining, displaying the project(s) in a repository.

e.g.

https://jazz.net/forum/questions/96284/how-to-get-the-real-time-roles-and-team-information-with-the-latest-changes-in-rtc-server 

it seems to work thanks

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

Question asked: Sep 10 '14, 2:50 p.m.

Question was seen: 3,482 times

Last updated: Sep 11 '14, 4:05 p.m.

Confirmation Cancel Confirm