billyChou Posted April 23, 2016 Posted April 23, 2016 can not sure then question happen to . a project use url show data , when update data , system session background auto update, generate the session postion data error. brower firfox, chrome unigui 1287, 1292 componet list db postgres 9.4 unidac 6.2.10 , 6.2.9 ----------------------------------------------------------------------------- //mainform UniEdit1.Text :=UniApplication.Parameters.Values['stu_id']; UniEdit2.Text :=UniApplication.Parameters.Values['stu_pwd']; sUserid := uppercase( UniEdit1.Text ); bRet := q_epo010.Locate('n_stu',VarArrayOf([sUserid]),[]); if bRet then OpenForm('Tfrm_epo010a1'); --------------------------------------------------------------------------- //frm_epo010a1 save if (q_main.State in [dsEdit])then begin q_main.Post; end; test url //-------------------------------------------------- http://localhost:88/?stu_id=C22153800http://localhost:88/?stu_id=H22509432http://localhost:88/?stu_id=K12282104http://localhost:88/?stu_id=K12307438http://localhost:88/?stu_id=K22272621http://localhost:88/?stu_id=K22306275http://localhost:88/?stu_id=L12512204http://localhost:88/?stu_id=L12518306http://localhost:88/?stu_id=M12279221http://localhost:88/?stu_id=N22616961 --------------------------------------------------- Thanks. Quote
Administrators Farshad Mohajeri Posted April 23, 2016 Administrators Posted April 23, 2016 If I understand correctly the urls are called in background. Each time you call a url a new session is created which after a while causes lots of sessions to remain in memory. Sessions will timeout after SessionTimeout period, but in your case you should terminate them by explicitly calling: UniApplication.Terminate(); Quote
billyChou Posted April 23, 2016 Author Posted April 23, 2016 use brower url login many page, locate url parameter and show, when update first page url (01) form data and save, -> data show last page url (10) data. //---------------------------------------------------- 01. http://localhost:88/?stu_id=C221538004 02. http://localhost:88/?stu_id=H225094320 ...... 10. http://localhost:88/?stu_id=N226169615 Thanks. Quote
billyChou Posted April 23, 2016 Author Posted April 23, 2016 how to monitor then same system session background send data list . like db sql monitor. Thanks. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.