It's all about the answers!

Ask a question

RTC Sandbox connectivity


EclipseTalk . (32736161) | asked Apr 12 '10, 8:53 a.m.
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

2 answers



permanent link
Bill Higgins (4562523) | answered Apr 13 '10, 10:55 a.m.
JAZZ DEVELOPER
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

permanent link
EclipseTalk . (32736161) | answered Apr 13 '10, 11:09 a.m.
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);

Your answer


Register or 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.