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

RTC Sandbox connectivity

Hi,
Is it possible to connect to the RTC sandbox via the Jazz API?
If so which url user/pwd should one use?
Using https://jazz.net/sandbox/rtc returns an error about "fetching initialization data".

Thanks

0 votes



2 answers

Permanent link
You have to first create a Sandbox via the Sandbox UI before being able to access anything. Then you should be able to access it in any way your Jazz repo permissions / process permissions allow.

https://jazz.net/sandbox

0 votes


Permanent link
Yes, I understand how to access it via the UI, but I guess the answer to my question is no; one cannot access the sandbox repository via Java APIs.
For instance, this doesn't work:


ITeamRepository repository = TeamPlatform.getTeamRepositoryService().getTeamRepository("https://jazz.net/sandbox/rtc" );
repository.registerLoginHandler(new ITeamRepository.ILoginHandler()
{
public ILoginInfo challenge(ITeamRepository repository)
{
return new ILoginInfo()
{
public String getUserId() {"userName"}
public String getPassword() {"password"}
};
}
});
repository.login(monitor);

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

Question asked: Apr 12 '10, 8:53 a.m.

Question was seen: 6,203 times

Last updated: Apr 12 '10, 8:53 a.m.

Confirmation Cancel Confirm