is it possibile read session timeout by api plain?
hello guys
i need to know if exists any way to read session timeout of RTC server using Java Api Plain. in my project login to platform is very slowly, for this reason i need session hold on. in this forum i find info about how to read timeout param from web.xml but unfortunately i don't have access to this file and i wanto build a strong application that can run also RTC master change this parameter. tnx at all bye Vincenzo |
3 answers
Yes, here is how I set the timeout
srcServer = TeamPlatform.getTeamRepositoryService().getTeamRepository(Properties.get(SourceServerURL)); // setup for login srcServer.registerLoginHandler(new LoginHandler(Properties.get(SourceUserID), userpw)); // and set the connection timeout, has to be set before login // in seconds srcServer.setConnectionTimeout(master_connection_timeout); // login, will throw error if not authorized srcServer.login(null); |
tnx
but i read on javadoc "Returns the connection timeout used for contacting the repository" i don't understand if this param is about api or server. also this param is in second but the setting timeout in server side is in minute. i think this parameter is timeout of client platform. bye V Comments
sam detweiler
commented Nov 06 '14, 9:16 a.m.
You asked for Plain java, which is client.
|
there is no 'server side' timeout..then only way to logged out my java client is by explicit logout method. is right? Comments
sam detweiler
commented Nov 06 '14, 9:29 a.m.
there are two approaches..
|
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.