Reset after some predefined time of no activity.

Hi, we are setting up Firefox as a Kiosk application.
CU is asking the session would be reset (=firefox restart) after a predefined time of no activity by the user, so whatever page the browser is left, after some amount of inactivity it returns to its home page.
One way to do that could be to add some extensions to Firefox (https://addons.mozilla.org/it/firefox/addon/616), but I am guessing if there is any timeout value I can set on Sun Ray Server and which is the recommended way to do that.
MTIA

Thanks for your answers.
I've been tracing the execution and I've found out that I don't get that exception (sorry, when I said I got it, it was due to a different matter). In fact I don't get any exception at all, but it doesn't work out.
I've been checking my code and don't close the socket myself at any point and the other end doesn't close it, either. I have no clue about what the reason of the problem is: it just stop answering.
I'm working on sending PING messages to the client so it isn't inactive so long. Perhaps this will solve the problem, but I still wonder what the cause is.
Can you give any advice?

Similar Messages

  • After running Appstore, the iphone cannot auto shutdown after the predefined time

    After running Appstore, the iphone cannot auto shutdown after the predefined time.

    Pressing the Home button only quits the selected application only. Doing so with Safari available will quit Safari, but this does not reset the iPhone.
    The only way to Reset an iPhone is by pressing and holding the Home button and the Sleep/Wake button simultaneously until you see the Apple logo and then release.
    No apple stores in the area but my sister and mom are going to an area where there is one so I guess I'll give it to them to take along and see if they can swap it out for another or fix it.
    You must make an appointment at an Apple Store, so unless you are able to do so and unless you are able to go with them (especially if an exchange might be involved), I suggest giving AppleCare a call instead.

  • SSRS 2012 report integrated with SharePoint 2013 issue :Report refreshing after some idle time

    we have SSRS 2012 report integrated with SharePoint 2013  , when we click on any toggle item after some idle time of 60 secs and try again to expand
    another toggle item then  complete report is getting refreshed and  if we are in child report it is redirecting to parent report. . we didn’t set any refreshing property at report level. I hope there will be some idle time setting at sharepoint site
    level.
    what we observed.
    1. there is no problem when we expand toggle items without any idle time.
    2. when we open the report and expand few toggles and keep idle for 60 seconds and try
    again to expand another toggle item then  complete report is getting refreshed (all toggle items are collapsing).
    3. If you keep idle for 60 minutes and if you didn’t do any action like expanding toggle
    items it is not refreshing.
    why it is happening and how to stop that complete refresh.
    Surendra Thota

    Hi Surendra,
    I have tested on my local environment and the issue can be caused by the session time out ,the time out of the report precessing, database timeout,DataSet query execution timeout and so on.
    I would like to confirm that the refresh you have mentioned is the page refresh or the report reloading?
    Please reference to the setting below to don't limit the timeout values if you got the report reloading:
    Point to a report in the library.
    Click the down arrow, and select Manage processing options.
    In Processing Time-out, select Do not time out report processing or
    Limit report processing in seconds if you want to override that value with no time-out or different time-out values.
    If you got the session timeout that refresh the page, please reference to the setting in below article:
    http://msdn.microsoft.com/en-us/library/gg492284.aspx#bkmk_session_settings_section
    Details information in the article below about the timeout setting for your reference:
    Set Processing Options (Reporting Services in SharePoint Integrated Mode)
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • MVC 5 - After some idle time, users are prompted to enter windows credentials on [allowanonymous] controller

    I have set up a web application using windows authentication and have two views for allowanonymous access. In the two views I also have partial views and have function which gets a list of items by calling the enumerable function in the model class.
    Everything all seems fine when accessing the allowanonymous view pages but after some idle time I get prompted to enter username and password. It is consist across different environment DEV, UAT so I am very worried it will happen in Production environment.
    And it seems to go to the home page (http://localhost/home} after failing the credentials.
    See the following configuration I have. Please help.
    in web.config
      <location path="SomeControllerName">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>
    In controller
    namespace namespace.Controllers
        [AllowAnonymous]
        public class SomeControllerNameController : Controller
    In IIS
    Anonymous Authentication setting
    Status : Enabled
    Anonymous User identity: IUSR
    Windows Authentication setting
    status:Enabled
    Extended Protection:Accept
    Enable Kernel mode authentication: ticked
    Provider:NTLM
    ASP.Impersnation :disable
    basic authentication :disabled
    Form authentication:disabled

    You put allowanonymous so everyone has the right. It will not be authenticated.
    Anyway you should post this in http://forums.asp.net.
    chanmm 
    chanmm

  • Io exception: Connection reset - after some time interval

    Hi,
    We are facing a problem in connection while implementing connection pooling using OracleDataSource .
    Application is running with out any issue if it is called continuously.
    If we call the application after some time interval, connection is being reset. We are able to get the connection instance but connection reset exception is thrown while calling callableStatement.execute().
    If application called after application restart it is working fine.This issue is happening only for the first few calls made after some time interval.(after 1 hr)
    After that call is proceeding without any issue.
    Environment Details
    Application is accessing 4 oracle databases and the versions are viz., 9.2.0.8,10.2.0.3,10.2.0.4 and 9.2.0.1.
    Driver : ojdbc14.jar
    App Server : tomcat
    jdk version: 1.5
    OracleDataSource is being used for connection pooling.
    propCache.setProperty("ConnectionWaitTimeout",10); // caching parms
    ods.setConnectionCachingEnabled(true);
    ods.setLoginTimeout(intLoginTimeout);
    propCache.setProperty("MinLimit","5");
    propCache.setProperty("MaxLimit", "20");
    propCache.setProperty("InitialLimit","5");
    propCache.setProperty("ValidateConnection", "true");
    propCache.setProperty("AbandonedConnectionTimeout", "10");
    The exception details are as follows
    java.sql.SQLException: Io exception: Connection reset
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:987)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1170)
    at oracle.jdbc.driver.OracleStatement.doScrollExecuteCommon(OracleStatement.java:4043)
    at oracle.jdbc.driver.OraclePreparedStatement.doScrollPstmtExecuteUpdate(OraclePreparedStatement.java:10826)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3337)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3445)
    at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4394)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
    at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:834)
    at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:640)
    at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1286)
    at java.lang.Thread.run(Unknown Source)
    Any suggestion to resolve this issue is greatly appreciated.
    Thanks.

    Hi,
    try to utilize OracleDataSource#setConnectionCacheProperties() with property InactivityTimeout equals to 1800 (30 minutes in seconds).

  • After some running time I cannot download large files via any browser.

    I am running OS X 10.9.2 on a 27inch iMac 2013 model.
    If I keep it running (without sleeping) for some time, perhaps a week, I can no longer download any large files via any browser. It will start and after a very short time go down to 0 B/s, stall there and at the end aboft with an "Unknown network error" or something similar.
    Has anyone seen similar problems?

    Open router set up using http://192.168.1.1  .....you will see username & password .....leave username blank & in password use admin...............
    Click status tab..........check firmware version .......download the latest firmware from http://linksys.com/download ..........
    Udate the firmware ....reset the router for 20-30 seconds ........ later on reconfigure the router ........

  • G5 60g must reset after short off time, intermitantly

    Hi I have a 2 month old g5 60gb video ipod at level 1.1. What happens is this, I use the ipod to listen to music, a podcast or an audible book makes no difference. I turn off for a short time maybe an hour or two. When I turn back on everything looks and acts normal except when I try to play something I get one of 2 senarios. 1 is the play > icon comes on and the time does not increment and no sound. The other is the play > icon comes on and the time does increment and no sound.
    I then have to reset (hold on then off menu and select together) then all returns to normal. I have updated to 1.1 and I have done a restore. no change.
    This is my third pod so I feel I'm using it correctly. when the above first happened I thought I maybe had a phone jack issue, but I can do the reset without ever touching or reseating the phone jack and it comes right back after the reset.
    Any ideas? I was really hoping going to 1.1 would fix this as its REAL annoying.
    Thanks

    Sounds like you need the repair shop to me. Continuously needing to do a reset is just not correct.
    Are you sure the pod was back to 1.0 by looking on the pod under About>? This just started before any update to 1.0 or after?

  • Question: howto end a gui transaction after some nonactivity time?

    Hi guru's,
    Our users are using TMW (trx PTMW) on a regular basis for entering time data.  It would be real nice to encourage them to close their TMW screens when they have done.
    It would be real nice if the TMW gui (or any other program they leave idle, example PA30) would get cancelled after X minutes of idle time.  Any pending non saved changes may get lost.
    I' ve looked at the rdisp/gui_auto_logout parameter.  But this cancels the whole session and so they need to log on again.  We'd just like it if they return to their easy access startmenu.
    Any suggestions how to do this? (a system parameter? repair of TMW? job that ends idle gui's?)  I'll reward any usefull suggestion
    Kr,
    Jonathan

    I would be interested to know what the solution for this is. Could you please let me know?

  • Safari keep shutting down after some time browsing.-

    Hello, I would like to knowif this is happenning to more people, after some random time of browsing Safari closes with a memory dump window and asking me if it can report the problem.
    This has happened 6 times in less than two hours and I have tried restarting the laptop, deleting cookies and resetting Safari, no success.
    This is annoying because this is the first time this happens and I'm using my MacBook for more than 3 weeks now.
    Thank you guys if you share ideas on this!

    after some random time of browsing Safari closes with a memory dump window and asking me if it can report the problem.
    That's not a memory dump, it's a crash report. You need to post that crash report before we can determine the problem.
    Mulder

  • TPM Error ID 13 and 516 occuring after some time

    Hi all,
    on my TP X301 a TPM error occurs always after some up-time. I get error IDs 13 and 516 in the Windows Error Protokolls. This is leading to an unusuable  Client Security Password Manager. Client Security then tells me that the communication with the TPM-chip is blocked...
    The Windows online Help for these IDs suggest me to replace the TPM hardware. I do not believe it is a hardware problem since fingerprint reader is working fine....?
    Anybody got a suggestion on this?
    I got vista x64 running.
    The error information in German is:
    TPM Error ID 13: "Beim Gerätetreiber für das Trusted Platform Module (TPM) ist ein nicht behebbarer Fehler in der TPM-Hardware aufgetreten, der die Verwendung der TPM-Dienste (z. B. Datenverschlüsselung) verhindert. Wenden Sie sich an den Computerhersteller, um weitere Hilfe zu erhalten."
    TBS Error ID 516: "Fehler bei der Kommunikation mit dem TPM. Vom Treiber wurde 0x8007045d zurückgegeben."
    ThanX a lot in advance.
    St.

    Here is an explanation of the failure:
    1. Prioritized replication was introduced with DS6.0;
    2. When a suffix at a DS6 instance is initialized from a DS5 instance, and then an operation is performed at the DS6 instance that uses prioritized replication, replication fails;
    3. By default, password policy uses prioritized replication to propagate auth-failure-lockout state updates (e.g., adding a pwdFailureTime attribute value on a failed bind attempt);
    A work-around:
    Disable DS6 supplying auth-failure lockout state using prioritized replication. In any password policy having auth-failure-lockout enabled, set
    pwdIsLockoutPrioritized:FALSE
    Note that DS6 enables prioritized lockout by default, in particular, it enables this feature when migrating a password policy received from a DS5 instance. Hence, for this workaround to be effective, the prioritized lockout feature must be disabled in any DS6 password policy that has auth-failure lockout enabled, which could include:
    1. The default password policy at any DS6 instance (cn=password policy,cn=config);
    2. Any password policy originating at a DS5 instance, including those in data imported into a DS6 instance, received via replication total update initialization, or added at the DS5 instance subsequent to the DS6 instance initialization;
    3. Any password policy added to a DS6 instance.
    Additionally, do not set any prioritized replication rules for other attributes.
    It is possible the bug can still be triggered in the case of a DS6-only topology that was initialized from DS5 data.
    Contact Sun support for the status of a fix for the bug. The CR is 6645742.

  • Break a sequence after predefined time

    Hi,
    I have a situation where in i need to break my sequence, running in an infinite loop, after a predefined time. Is there a way to do this in TestStand 4.2?
    Regards,
    Ramjee

    You can try performing Execution.Break
    Regards
    Ray Farmer

  • Is there a feature in Adobe Acrobat that allows me to create a PDF that has a 'self destruct' capability?  We have a situation where we need to allow people to download PDF files, but after a set time (48 hours), the file can't be opened and read (e.g., s

    Can Acrobat create PDF files that once downloaded - can't be opened after some preset time (48 hours)?

    Hi Edward lkeda,
    I am not very sure of that however as per my knowledge , you can use Adobe send service and provide public link to your users and then after 48 hrs you can delete the file from server and make File-link inaccessible.
    Hope that helps,
    Please revert back for any further query. I will try my best to help you with your problem.
    Regards,
    Rahul Tyagi

  • Some songs in my Ipod classic get get off after a few seconds of playing, but they work fine in ITunes and other Ipods.  I have reset the classic several times and same issue happens, any ideas?

    Some songs in my Ipod classic get get off after a few seconds of playing, but they work fine in ITunes and other Ipods.  I have reset the classic several times and same issue happens, any ideas?

    I have that exact same problem! It plays albums fine. But individual songs including ones downloaded from iTunes either skip or play the music of another totally different song. All play fine on iTunes and my iPhone... Got this one to replace my dying 5th gen classic.
    I hope there is a fix for this, cause it *****!!!!

  • Error! Check Activation and Can't Delete Authorization, getting "Please try after some time"

    Hello,
    I am getting "Error! Check Activation" error message when I try to download epub from acsm file. I found that I should erase and re-authorize. When I try to erase authorization I get, "Please try after some time."
    I need a solution.
    Thanks.

    try this
    I can't de authorize my computer. It just keeps saying to try again later.

  • Hi, since I've bought the iphone, my facetime never works, I just can't activate the facetime in settings, when I put it on, after some time, the phone shows the message: activation unsuccesful. Do you guys know what should I do?

    Hi, since I've bought the iphone, my facetime never works, I just can't activate the facetime in settings, when I put it on, after some time, the phone shows the message: activation unsuccesful. Do you guys know what should I do?

    Where are you, what network are you on and where did you get the phone?
    If you are on an unsupported network, Facetime may never be able to activate. If the phone originated in a different country, facetime is probably trying to send an International text message to activate. If you don't have International text messaging, it will fail.

Maybe you are looking for

  • My DVD drive is no longer recognized.

    For the past few months my dvd drive would not open when I used the eject disk function. A few times I went into the startup menu and ejected the disk manually. Now the dvd drive is not even recognized by the computer. This dvd drive is the original

  • Error while running converted JCL / proc from Tuxedo Workbench

    Hi , I am trying to convert and run a JCL / Proc and Cobol code through Oracle Tuxedo  Rehosting Workbench . I followed all the steps and deployed the components . This created .ksh components for JCL in ../deploy/JCL and  .proc component in /deploy/

  • [SOLVED]Access shares in Active Directory env w/o asking for pword

    Hello, read this and configured my computer like described. So far so good. When I know use my file manager and want to access smb://fileserver/share he askes me for a password. When I first used Ubuntu there was a software called Likewyse open which

  • Transferring music from 3GS to iPhone 5 without a PC

    I have an iPhone 3gs with lots of downloaded and purchased music on it and want to transfer all this to an iPhone 5.  The trouble is I don't have a PC at the moment so I cannot use the USB cable to sync etc in itunes.  Is there another way to get all

  • How to make all "allowed" clients visible at the log on/welcome screen at start of the computer

    Assuming this is controlled by the Active Directory Server 2012 R2.. I allow 3 users to be able to log on to computer A. I now start computer A. At the welcome / start screen I only see the person who was logged on latest. However, it would be great