cancel
Showing results for 
Search instead for 
Did you mean: 

XS Engine Session Timeout?

Former Member
0 Kudos

Hi,

Anyone know if it is possible to set the XS Engine Session Timeout at the server side (say I want my sessions to last no more then 2 minutes before the user has to login again). I do not seem to find a global setting for that, or should I just do that in the code?

thx.

S.

Accepted Solutions (0)

Answers (2)

Answers (2)

colm_noonan
Explorer
0 Kudos

Hi,

Is there a maximum value for sessiontimeout'? Because I'm setting it to a very large number and its not working for me as expected.

Thanks,

Colm

nha_nguyen2
Explorer
0 Kudos

Hi Steven,

you can set xs session timeout by:

Hana Studio > Administrator perspective > Configuration > xsengine.ini > httpsever > set or add 'sessiontimeout' parameter = 120

This parameter is an integer in seconds.

BR,

Nha

0 Kudos

Hi,

how can I read back the sessiontimeout value?

In which table is it stored?

Thanks,

Justus

niranjanraju
Advisor
Advisor
0 Kudos

select "KEY" as "SESSION_KEY", "VALUE" as "SESSION_VALUE" from "PUBLIC"."M_INIFILE_CONTENTS" where "KEY" like '%sessiontime%'

Former Member
0 Kudos

Hello,

I am not able to see this entry at all. Should I do something to get the session time entry into this view?

0 Kudos

Hi,

the entry is only available once you have set it manually like Nha described it above.

The standard session timeout is 300 seconds.

Former Member
0 Kudos

Yes i did that and it works now.

Thank you so much

Former Member
0 Kudos

Here the sql command that sets this to 24 hours

alter system alter configuration ('xsengine.ini','SYSTEM') set ('httpsever','sessiontimeout')='86400' with reconfigure;

Former Member
0 Kudos

Hi Nha,

I am not able to see sessiontimeout parameter as you have mentioned above. Is there any special privilege required for the same.

Thanks,

Abhishek

colm_noonan
Explorer
0 Kudos

Hi,

If its not there, then you should consider creating it yourself (as the SYSTEM user).

Cheers

Colm