EP Inactivity Time Out

Dear Portal specialists,
Pls let me know how to set EP (SP12) inactivity time out to say 30 mins.
I have tried setting the session timeout value to 30 mins thru :Visual Admin;
    Select Cluster ->Server node
    service "Web container"
    Application irj
    Change the web.xml properties
Thanks.
Josh

Hi Josh,
seems so. A server side solution has the problem, that you'd need the request/response at hand to force a logoff - so you could implement a server side solution for an own developed application, but not for all applications in general (except as a core modification).
Hope it helps
Detlev
PS: Please consider rewarding points for helpful answers on SDN. Thanks in advance!

Similar Messages

  • How to configure inactivity time out in 11i for external DMZ server

    Hi All,
    We are currenlty enablling DMZ functionality for some of internet applications. Generally a user will travel through Oracle Portal to access these applications.
    We want to set a seperate inactivity time out for user comming via external server. We manage to do this for Portal and SSO. But enable to find one for ebusiness suite. The idea is if a user access these applications from pulic PC and fogot to log out then if the system doesn't time out in 5-10 mins then it raise a risk of access to application by unautherized users.
    Any advise on this will be of great help.
    Incase this is no the right forum for these questions then if you know please advise where to direct this query.
    Regards,
    Navin

    Hi Hussien,
    Thanks for the quick notes, The challange we have is most of these setups are common for both external and internal servers. Change in one will impact the behaviour for others. What we are looking at is some thing like this. Unless I am missing some thing here.
    User login using external server over DMZ will time out in 10 mins assessing an application (i.e. Employee self service) where in if the same user access the same application using internal server then the session can be alive for say 60 mins.
    Do you think I am thinking on the right track. or am i missing any point here
    Regards,
    Navin

  • Aironet 1100 series web interface times out after few mins of inactivity

    Hello,
    I just upgraded an Aironet 1121G access point to IOS software version 12.3(8)JEC2 (file name: c1100-k9w7-tar.123-8.JEC2). I noticed that the HTTP web interface now times out after an inactivity of just a few minutes (dont have an exact number, but it times out between 2-4 mins of inactivity). Can this timeout period be changed..!? How? This wasnt happenning on the previous software version: 12.3(8)JEB1.
    Also, where can I find the online help files for the latest Cisco IOS software? I cant seem to find it on the Cisco website!
    Thanks much for all your help.. really appreciate it.

    Does anyone have any idea on this..!? Its terrible having to login every couple of mins..!
    Thanks :)

  • Session time out problem

    Hi guys
    I am using WSAD 5.0. the problem that i am having is that i have a properties file where i give the session time out value along with many other things. and when a user logs in a servlet takes those values from the properties file and sets the session time out value, using session.setMaxInactiveInterval(). but the problem is the session is still maintained even after the stipulated inactive time. Can any one tell me what could be the problem.
    Note: when i say session.getMaxInactiveInterval(), i get the value that i have set in the properties file.
    Thanks

    You're sure you specified seconds rather than milliseconds?
    - Saish

  • Session time-out and password security

    Hi,
    I have a webservice utility, deployed on several platforms (as an EAR on weblogic and webspere, as a WAR on tomcat), they all exhibit the same feature: on first connection, a username/password box pops up, but after the session times out (after 20 minutes or so of inactivity) and the it receives a new page request, instead of re-asking for the username/password, the app just jumps back to its own start page, and then continues without asking.
    How can I make it to pop-up the username/password box again?
    The security is implemented through the web.xml file:
    <security-constraint>
        <web-resource-collection>
          <web-resource-name>Success</web-resource-name>
          <url-pattern>/Logparser</url-pattern>
          <http-method>GET</http-method>
          <http-method>POST</http-method>
        </web-resource-collection>
        <auth-constraint>
          <role-name>webuser</role-name>
        </auth-constraint>
      </security-constraint>
      <login-config>
        <auth-method>BASIC</auth-method>
        <realm-name>default</realm-name>
      </login-config>
      <security-role>
        <role-name>webuser</role-name>
      </security-role>I found that this in itself was not good enough security as you would be able to go directly to one of the sub-pages (if you know the url), and to prevent that I pass (and check) the session-id with each page request.
    (all java servlets).
    Obviously something is missing, but I don't know what
    thanks
    Michael

    Hi Michael,
    Your web application is currently configured to use BASIC authentication.
    Instead if you use FORM-based authentication, then any new request (after your web application session times out) will be redirected to the login page. The Servlet specification has more information about FORM-based login.
    If you have a Sun ONE Web Server 6.1 or a Sun Java System Web Server 7.0 installation you can find a sample that uses form-login in the following directory
    6.1: <install-directory>/plugins/java/samples/webapps/security/form-auth
    7.0: <install-directory>/samples/java/webapps/security/form-auth

  • Session time out and automatic log off

    hi,
    I have been using JSC for a while but I am not JSC guru.
    I want to implement automatic logoff when the session timesout. I know that I can set session time out in tomat web.xml file. but I cant understand how to check if the session time is out and logOff the user.
    When user logs in, username is stored in the database, so when the user logoff the username has to be deleted from the database and he should be redirected to the login page. I want all this to be done automatically when session times out(i.e if the user is inactive for specified amount of time).
    Any help is greatly appreciated. Please reply ASAP, i need to get this working by tommorow.
    chees
    satish

    I think you might find this thread interesting:
    http://swforum.sun.com/jive/thread.jspa?threadID=50520&messageID=183099

  • Displaying  "Your Session is going to time out , Extend or Close" dialog ?

    Hi!
    we have a requirement to display a warning message to users just (1 minute) before the session is going to time out, and ask the user if he wants to extend the session or close the session( in which case we close the browser window). We have come up with a probable solution but would like to know what other people are doing/will do in similar scenarios.
    Here is what we came up with:
    1. On every page load we set/update a cookie which is meant to track the session time out. And we have a javascript timer that counts down user's inactivity. If any PPR occurs on the page, then we plan to add a hook to the PPR javascript calls so that we can update the time out cookie not only on page load/refreash but also on every PPR call made to the server.
    We have a worry that we are doing everything on the client side solely depending on javascript.Is our approach in the right direction? Is there any better way to achieve the same? Are there any pitfalls/security issues involved in our design?
    2. I have read in some articles/forum threads that we can poll the server on a regualr interval to find out the time remaining for the session to expire and once we get time to last minute we can display a javascript popup to the user. But I have a doubt that wouldn't polling itself refresh the user activity on the server and reset the session timeout to normal on every poll? In that case wouldn't we always get the same time-remaining info for every poll? Have I mis-understood some thing here? can some one explain how to implement the session time out based on polling to the server?
    3. Any new ideas are welcome!
    Thanks and Regards,
    Samba

    Hi,
    well, if you use the af:poll command then the session will never expire because from a server point of view the user frequently sends a request. So if you prefer this option then you will have to expire the session programmatically calling invalidate() on the session
    javaScript is the only option I can imagine that works without polling.
    Frank

  • ERROR while saving the runtime systems(read time out exception)

    Hi e xperts
    I am configuring NWDI and assigned asll the permissions and roles to the CMS user.I created Domain,in landscape configurater
    created track and saved.
    while saving the rumtime systems the error thrown is
    com.sap.cms.util.exception.conf.CMSCCBSCommunicationException: CBS (URL http://dtlepdev:54400/tc.CBS.Appl/archiveapi2/) communication exception: Read timed out (Service call exception; nested exception is:
    java.net.SocketTimeoutException: Read timed out)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.removeBuildspace(CBSConfCommunicator.java:382)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.deleteCreateBuildspace(CBSConfCommunicator.java:338)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.editBuildspace(CBSConfCommunicator.java:277)
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.createBuildspace(CBSConfCommunicator.java:168)
    at com.sap.cms.pcs.conf.core.services.SystemManagerObject.saveSystem(SystemManagerObject.java:261)
    at com.sap.cms.pcs.conf.core.plugin.DefaultTrack.newTrack(DefaultTrack.java:292)
    at com.sap.cms.pcs.conf.core.TrackManager.editTrack(TrackManager.java:208)
    at com.sap.cms.pcs.conf.manager.CmsConfManager.editTrackConfiguration(CmsConfManager.java:1002)
    at com.sap.cms.pcs.conf.manager.proxy.CmsConfProxyBean.editTrackConfiguration(CmsConfProxyBean.java:489)
    at com.sap.cms.pcs.conf.manager.proxy.LocalCmsConfProxyLocalObjectImpl0_0.editTrackConfigurationand also ..
    Unable to instantiate a Build Space administrator!
    Build Space "DTL_ETRACK_C" [bsID: 27, version: 0] [in-queue: on (privileged), out-queue: "on", processing: off]
    <null>
    [EXCEPTION]
    Buildspace DTL_ETRACK_C does not own the workspace ws/ETRACK/dtl.com_DEFAULTIME/cons/inactive/ .  It is currently not owned by any other buildspace
    at com.sap.tc.cbs.server.rt.bs._BuildSpaceValidator.checkWorkspace(_BuildSpaceValidator.java:120)
    at com.sap.tc.cbs.server.rt.bs._BuildSpaceValidator.validateWSs(_BuildSpaceValidator.java:74)
    at com.sap.tc.cbs.server.rt.bs.BSAdmin.validate(BSAdmin.java:192)
    at com.sap.tc.cbs.server.rt.bs.BSAdmin.updateState(BSAdmin.java:260)
    at com.sap.tc.cbs.server.rt.bs.BSAdminOrc.determineChanges(BSAdminOrc.java:439)
    at com.sap.tc.cbs.server.rt.bs.BSAdminOrc.validateBuildSpaceData(BSAdminOrc.java:219)
    at com.sap.tc.cbs.server.rt.bs.BSAdminOrc.act(BSAdminOrc.java:341)
    at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:139)
    at java.lang.Thread.run(Thread.java:534
    In cbs i checked the parametrs they are open and on..
    please suggest me on this ASAP..since 2 days i have been struggling and searched in forums..no perfect solution
    help me out
    perfect soln is immediately awarded...
    I
    THanks
    Mayu

    Hi Mayu,
    here apparently the CMS cannot communicate to CBS properly and then when CMS tries to talk to CBS using a webservice, it times out due to various reasons, see below.
    Strange, I always had this error when the CMS was on a different release like CBS and this caused the communication problem.
    Don't you have an entry in your cms log like this?
    com.sap.cms.util.exception.CMSUnexpectedException                          
    at com.sap.cms.pcs.conf.manager.CmsConfManager.newTrackConfiguration(CmsConfManager.java:666)                                                    
    Caused by: java.lang.IncompatibleClassChangeError
    at com.sap.cms.pcs.conf.communicator.CBSConfCommunicator.openConnection(CBSConfCommunicator.java:84)                                             
    Please provide me the version of the DI_CMS, DI_CBS (and DI_DTR for the sake of completeness).
    You can find this info on the ComponentInfo page.
    On 640/700 this is http://<host>:<port>/sap/monitoring/ComponentInfo
    as of 710 you find this on the "Components" tab of http://<host>:<port>/nwa/sysinfo
    I also think that this is not due to the runtime systems. I guess you have the same problem if you try to create the track without runtime systems, right?
    (The "Unable to instantiate a Build Space administrator!" is not necessarily an error, see the note:
    #1175019 - Unable to instantiate a Build Space administrator!)
    Thank you!
    Best Regards,
    Ervin

  • Time Out error problem when i run the report for the whole plant

    Dear all,
    pls find the below coding, when i execute this report for the whole plant , it gives me time out error since it has to process huge database. pls suggest me in which part of my below coding i can improvise or any other better way to fetch the same result.
    pls note that
    i m using Views for querying.pls also note the comments given in Bold to understand the reason behind the coding.
    Views used in are - ZVPOD and ZVPRDCONF.
    START-OF-SELECTION.
      Data: zstat type jest-stat.
      data: stklocaf type mska-lgort.
      data: stklocas type mska-lgort.
    <u><b>To collect the status of the production order by joining the ZVPOD and JEST table.</b></u>
      CLEAR it_ZVPRODDET.
      SELECT DISTINCT ZVPOD~bukrs ZVPOD~aufnr ZVPOD~objnr
      jest~stat ZVPOD~werks ZVPOD~arbpl ZVPOD~J_3AKORD2
      FROM  ZVPOD
      INNER JOIN jest ON ZVPOD~objnr = jest~objnr
      INTO CORRESPONDING FIELDS OF wa_ZVPRODDET where
      plnbez in FGM and arbpl in wc and werks in plant
      and SSAVD in eldate
      and J_3AKORD2 in cups and jest~inact ne 'X'.
        APPEND wa_ZVPRODDET TO it_ZVPRODDET.
      ENDSELECT.
      SORT it_ZVPRODDET BY aufnr stat.
    <u><b>Loop thru Itab to check and delete the records from itab for the specified status.</b></u>
      LOOP AT it_ZVPRODDET INTO wa_ZVPRODDET.
        IF wa_ZVPRODDET-stat = 'I0045' .  " TECO - compl
          DELETE it_ZVPRODDET WHERE aufnr = wa_ZVPRODDET-aufnr.
        ELSEIF wa_ZVPRODDET-stat = 'I0009' .  " CNF - Confirmed
          DELETE it_ZVPRODDET WHERE aufnr = wa_ZVPRODDET-aufnr.
        ELSEIF wa_ZVPRODDET-stat = 'I0012' .  " DLV - Delivered
          DELETE it_ZVPRODDET WHERE aufnr = wa_ZVPRODDET-aufnr.
        ELSEIF wa_ZVPRODDET-stat = 'I0046' .  " CLSD - Closed
          DELETE it_ZVPRODDET WHERE aufnr = wa_ZVPRODDET-aufnr.
        ELSEIF wa_ZVPRODDET-stat = 'I0076' .  " DLFL - Del Flag
          DELETE it_ZVPRODDET WHERE aufnr = wa_ZVPRODDET-aufnr.
        ELSEIF wa_ZVPRODDET-stat = 'E0003' .  " SCLS - Short Close
          CLEAR tj30t.
          SELECT SINGLE txt04
          FROM tj30t INTO tj30t-txt04
          WHERE stsma = 'PRDHOLD' AND
                estat = 'E0003' AND
                txt04 = 'SCLS' AND
                spras = 'EN'.
          IF sy-subrc = 0.
            DELETE it_ZVPRODDET WHERE aufnr = wa_ZVPRODDET-aufnr.
          ENDIF.
        ENDIF.
    *      Condition for Prod Order released - REL
        IF wa_ZVPRODDET-stat = 'I0002'.
          mreleased = 'Y'.
        else.
          mreleased = 'N'.
        endif.
        zstat = wa_ZVPRODDET-stat.
        IF mreleased = 'N'.
          DELETE it_ZVPRODDET WHERE aufnr = wa_ZVPRODDET-aufnr
          and stat = zstat.
        ENDIF.
      ENDLOOP.
    <u><b>Loop thru the filtered ITAB to get all the production order details for the production order number specified in the where clause( zaufnr ) and populate another internal table.</b></u>
          LOOP AT it_ZVPRODDET INTO wa_ZVPRODDET.
            zaufnr = wa_zvproddet-aufnr.
            zarbid = wa_zvproddet-arbid.
            at new aufnr.
              SELECT DISTINCT * INTO CORRESPONDING FIELDS OF  walnpln
              FROM zvpod where plnbez in FGM and arbpl in wc and SSAVD in
             eldate and werks in plant and J_3AKORD2 in cups and aufnr = zaufnr.
                APPEND walnpln TO itablnpln.
              endselect.
            endat.
          endloop.
          clear walnpln.
    <u><b>
    Looping thru Internal table and performs all the following calculations and inner loop
    and also relevant querying.</b></u>
    <u><b>Assume that ITABLNPLN holds appox. 8000 records.</b></u>
    LOOP AT itablnpln  INTO walnpln.
            contot = 0.
            SELECT distinct * INTO CORRESPONDING FIELDS OF TABLE itablnp
            FROM zvprdconf where aufnr = walnpln-aufnr and
            j_3asize = walnpln-j_3akordx and stzhl ne '2' and stokz ne 'X'.
            clear zvprdconf.
            SELECT single isdd
            FROM zvprdconf into  zvprdconf-isdd
            where aufnr = walnpln-aufnr and
            j_3asize = walnpln-j_3akordx and stzhl ne '2' and stokz ne 'X'.
            SELECT single isdz
            FROM zvprdconf into  zvprdconf-isdz
            where aufnr = walnpln-aufnr and
            j_3asize = walnpln-j_3akordx and stzhl ne '2' and stokz ne 'X'.
            IF sy-subrc EQ 0.
              <u><b>Assume that ITABLNP  holds appox. 30 records.</b></u>
              loop at itablnp into walnp.
                contot = contot + walnp-J_3ALMNGA.
                move walnp-J_3ASIZE to walnpln-J_3ASIZE.
                move zvprdconf-isdd to walnpln-zdate.
                move zvprdconf-isdz to walnpln-ztime.
              endloop.
              walnpln-output = contot.
            endif.
            walnpln-wip = walnpln-menge - contot.
            if walnpln-werks = '1000'.
              stklocaf = '1050'.
              stklocas = '1060'.
            elseif walnpln-werks = '2000'.
              stklocaf = '2150'.
              stklocas = '2160'.
            endif.
           select single kunnr into walnpln-ship from vbpa where
           vbeln = walnpln-KDAUF and PARVW = 'WE'.
            zship = walnpln-ship.
            move zship to walnpln-ship.
            select  single kalab into walnpln-zactqty from mska
            where matnr = walnpln-plnbez
            and j_3asize = walnpln-J_3AKORDX and LGORT = stklocaf.
            condense walnpln-kdauf.
            zsales = walnpln-kdauf.
            concatenate zsales 'S' into zso.
            select single kalab into walnpln-zsndqty from mska
            where matnr = walnpln-plnbez
            and j_3asize = walnpln-J_3AKORDX and LGORT = stklocas
            and J_4KSCAT = zso.
            zmatn = walnpln-plnbez.
            zsale = walnpln-KDAUF.
            walnpln-kdauf = zsale.
            walnpln-plnbez = zmatn.
            zcust = walnpln-kunnr.
            walnpln-kunnr = zcust.
            select single bezei into walnpln-season from TVV2T where
            kvgr2 = walnpln-kvgr2 and SPRAS = 'E'.
            select single bezei into walnpln-shipmode from T173T where
            vsart = walnpln-vsart and SPRAS = 'E'.
            STRL = strlen( walnpln-j_3akord2 ).
            if  strl = 4.
              move walnpln-j_3akord2 to walnpln-j_3akord3.
              clear walnpln-j_3akord2.
            endif.
            move zremk to walnpln-remk.
            MODIFY itablnpln FROM  walnpln.
            contot = 0.
            clear itablnp.
          ENDLOOP.
          PERFORM build_fieldcatalog.
          PERFORM build_layout.
          PERFORM display_alv_report.

    Hi raja,
    Plese go through the suggessitions.
    1.avoide the select ...endselect. write the below select
    CLEAR IT_ZVPRODDET.
    SELECT DISTINCT
         ZVPOD~BUKRS
         ZVPOD~AUFNR
         ZVPOD~OBJNR
         JEST~STAT
         ZVPOD~WERKS
         ZVPOD~ARBPL
         ZVPOD~J_3AKORD2
      FROM ZVPOD
      INNER JOIN JEST ON ZVPOD~OBJNR = JEST~OBJNR
      INTO CORRESPONDING FIELDS TABLE  IT_ZVPRODDET
      WHERE PLNBEZ IN FGM AND
            ARBPL IN WC AND
            WERKS IN PLANT AND
            SSAVD IN ELDATE AND
            J_3AKORD2 IN CUPS AND
            JEST~INACT NE 'X'.
      IF SY-SUBRC = 0.
        SORT TABLE IT_ZVPRODDET.
      ENDIF.
    2..first of all dont delete a record inside the loop. instead use the Field symobols.
    have u obsereved you code in the loop!!!!. wht u r doing..
    u r removing the same record which u in the loop..
    If u wanto delete the entires with check to<b> stat</b>... <b>then.. why dont u put the STAT field in Wher e condition..?</b> by this you reduce the data base select time..
    Now the select query is like the below....
    CLEAR IT_ZVPRODDET.
    SELECT DISTINCT
         ZVPOD~BUKRS
         ZVPOD~AUFNR
         ZVPOD~OBJNR
         JEST~STAT
         ZVPOD~WERKS
         ZVPOD~ARBPL
         ZVPOD~J_3AKORD2
      FROM ZVPOD
      INNER JOIN JEST ON ZVPOD~OBJNR = JEST~OBJNR
      INTO CORRESPONDING FIELDS TABLE  IT_ZVPRODDET
      WHERE PLNBEZ IN FGM AND
            ARBPL IN WC AND
            WERKS IN PLANT AND
            SSAVD IN ELDATE AND
            J_3AKORD2 IN CUPS AND
            JEST~INACT NE 'X' AND
            ( STAT <> 'I0045' AND
              STAT <> 'I0045' AND
              STAT <> 'I0009' AND
              STAT <> 'I0012' AND
              STAT <> 'I0046' AND
              STAT <> 'I0076' AND
              STAT <> 'E0003' ).
      IF SY-SUBRC = 0.
        SORT TABLE IT_ZVPRODDET.
      ENDIF.
    <b>3.</b> WHT IS MEANING OF THE SELECT
    <b>  CLEAR TJ30T.
      SELECT SINGLE TXT04
      FROM TJ30T INTO TJ30T-TXT04
      WHERE STSMA = 'PRDHOLD' AND
            ESTAT = 'E0003' AND
            TXT04 = 'SCLS' AND
            SPRAS = 'EN'.
      IF SY-SUBRC = 0.
        DELETE IT_ZVPRODDET WHERE AUFNR = WA_ZVPRODDET-AUFNR.
      ENDIF.</b>....... IN WHERE CONDION U R GIven all are constant values right?..
    why u need select it inside the loop.. u can write before the SELECT from ZVPOD..
    that why first checke this field then go for fur thure selects..
    <b>now u r code looks like this....</b>
    CLEAR TJ30T.
    SELECT SINGLE TXT04
      FROM TJ30T INTO TJ30T-TXT04
    WHERE STSMA = 'PRDHOLD' AND
          ESTAT = 'E0003' AND
          TXT04 = 'SCLS' AND
          SPRAS = 'EN'.
    IF SY-SUBRC = 0.
      CLEAR IT_ZVPRODDET.
      SELECT DISTINCT
           ZVPOD~BUKRS
           ZVPOD~AUFNR
           ZVPOD~OBJNR
           JEST~STAT
           ZVPOD~WERKS
           ZVPOD~ARBPL
           ZVPOD~J_3AKORD2
        FROM ZVPOD
        INNER JOIN JEST ON ZVPOD~OBJNR = JEST~OBJNR
        INTO CORRESPONDING FIELDS TABLE  IT_ZVPRODDET
        WHERE PLNBEZ IN FGM AND
              ARBPL IN WC AND
              WERKS IN PLANT AND
              SSAVD IN ELDATE AND
              J_3AKORD2 IN CUPS AND
              JEST~INACT NE 'X' AND
              JEST~STAT <> 'I0045' AND
              JEST~STAT <> 'I0045' AND
              JEST~STAT <> 'I0009' AND
              JEST~STAT <> 'I0012' AND
              JEST~STAT <> 'I0046' AND
              JEST~STAT <> 'I0076' AND
              JEST~STAT <> 'E0003' ).
        IF SY-SUBRC = 0.
          SORT TABLE IT_ZVPRODDET.
        ENDIF.
      ENDIF.
    there are so many select inside the loop...... please Delete all of them.... write them be for the loop.......using the FOR ALL ENTRIES.....
    THEN LOOP THE TABLE USING THE WHERE CONDITIONS.
    <b>Plese write u updated code here again</b>..

  • WLS 8.1 SP5 Message bridge doesn't refresh connection after idle time out

    Hi,
    I am seeing in the log after enabling the debug flags that message bridge intermittently stops refreshing the connection without logging further info and causing a production failure.Bridge is forwarding the message from WLS 8.1..5 DQ to the remote MQ 6.0 queue.
    Below is the snippet which doesn't come in the log which suggests that bridge stops refreshing the connection.
    <BEA-200027> <Bridge "CASLDNSenderBridge" works in asynchronous mode and has not received messages for the predefined maximum idle time. The connections to the adapters will be interrupted and reestablished.>
    The above message does appear everytime but intermittently it stops and the messages put after this leading to the exceptions.The bridge has been configured in asynchronous mode and the idle time out is configured as 60 secs.
    Can somebody please let me know if there is any known issue with 8.1 SP5 where message bridge stops refreshing connection intermittently or how to debug this further.

    I would normally suggest raising the issue with support, but I recall hearing that 8.1 is nearing the end of its support cycle, so I'm not sure that's an option for you. Other options:
    - try upgrading to a newer SP, or better yet, a new version of WebLogic
    - try changing to synchronous forwarding
    - examine thread dumps from when the bridge appears to be stalled
    - post the exception that bridge is throwing when it tries to connect
    - try patching MQ (the problem could be on the MQ side, and perhaps an older version of the bridge may not be fully capable of handling all of MQs minor quirks)
    - write a program to (A) detect inactivity on the src destination, and (B) somehow restart the bridge and/or all of WL when this occurs
    Tom

  • Lync Inactive Timer Not Working - Starts after 5 minutes rather than 20 minutes

    I have a client who has her Inactive timer set to 20 minutes.  I verified that the registry entry is set as such.  We have rebooted her system and cleared her Lync cache files.  She does not have a screen saver set, and her plugged
    in power setting for turning off the display is set for 30 minutes, and put the computer to sleep is Never.  Battery power options has the display turning off after 5 minutes.  Her system is plugged in and the Inactive status kicks off
    after 5 minutes and the display does not turn off.  I can not figure out why it is kicking off after 5 minutes rather than 20 minutes as it is set.  Any ideas on what else might be causing it to go inactive after 5 minutes?  Or what else I can
    try to get it to initiate the 20 minutes that it has set?

    My apologies, I didn't check the location being the 2010 forum and was hoping it might still be 2013 as we get a lot of 2013 posts in the 2010 forums.  The app doesn't currently work with 2010 which stinks.  I was thinking if it
    worked we could beef it up so it worked well for you and add some additional features.  In the end, there's no native option but it's a good idea.
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications
    This forum post is based upon my personal experience and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Downloaded ios 6 and when asked to login,password times out

    Yesterday I downloaded the new IOS 6 to my phone (4S).  Part of setup includes login with your apple id and password.  When i enter my password, I get a time out error message.  Please advise to fix. Thank you.

    Having a passcode is good security should your phone be lost or stolen. Instead of removing the requirement for a passcode you might instead set it to be required less often.
    In that same area of settings mentioned in the previous post you probably have the passcode lock set to immediately. This means that every time your phone sleeps a passcode will be required to open it again. This is the highest level of security.
    But if you're like me the constant need to enter a passcode is undesirable. So I changed the setting to 1 hour. The passcode then will be required after one hour of idle time on the phone. I rarely go an hour without using my phone so I don't have to enter a passcode every time I wake up the Phone. Only after long periods of inactivity do I need to enter the passcode. For me that's a good compromise.

  • Imap server times out

    Ever since I updated to Mavericks on one of my imap email server accounts I occasionally get this popup:
    I notice when I open Mail an exclamation mark next to the name of my imap email account and upon clicking on it I get above popup. Which is in Dutch but translated roughly to:
    [name email account] cannot be opend.
    Time out of the connection with server 'imap.emailaccount.com' through port 143.
    The exclamation mark generally goes away when I click the 'receive email' button or restart Mail.
    I deleted the account and set it up again to reset it. All the values are correct as checked with my ISP.
    What is this message about and how can it be fixed? It doesn't always does it. Most of the time it just works. Then every now and then I get this exclamation mark so I know something is wrong and when I click on it above screenshot. Then it goes away upon clicking on the 'receive email' button or when restarting and it continues to work again. So it's not all the time.

    I am getting the same error occassional also and I am running OSX server 10.9.  When I checked the mail log there is nothing that points me to a possible cause.
    This is my Mail Server log:
    Nov 14 09:21:22 imap-login: Info: Disconnected (client didn't finish SASL auth, waited 90 secs): user=<>, method=PLAIN, rip=192.168.10.1, lip=192.168.10.201, TLS
    Nov 14 09:21:22 imap(pid 51947 user courtney.currie): Info: Connection closed in=0 out=432
    Nov 14 09:22:29 imap-login: Info: Disconnected: Inactivity during authentication (disconnected while authenticating, waited 163 secs): user=<>, method=CRAM-MD5, rip=::1, lip=::1, TLS
    Nov 14 09:22:42 imap-login: Info: ID sent: name=Mac OS X Mail, version=7.0 (1822), os=Mac OS X, os-version=10.9 (13A603), vendor=Apple Inc.: user=<>, rip=192.168.10.136, lip=192.168.10.201, TLS
    Nov 14 09:22:48 imap-login: Info: Disconnected (no auth attempts in 5 secs): user=<>, rip=::1, lip=::1, TLS: Disconnected
    Nov 14 09:22:49 imap: Info: Server shutting down. in=1896 out=278534
    What I have been doing is to restart the mini-mac server and then the matter is resolved, but it keeps re-occuring.

  • IMAP time out on port 993

    Hello,
    Since 2 days I have every minute a "time out" pop up on mail app regarding my imaps accounts.
    I own the mailserver so i know that the problem doesnt come from there.
    What should i do ?
    I dont really want to delete the pref & cache because it is huge mailboxes and here in Australia we have some internet quota...
    help..

    Jerume,
    Search this forum for the string ".OfflineCache" and you'll find several messages describing how to fix this problem in the short term.
    What has happened, I think, is that at some point you were editing a message (and possibly sent it) and Mail.app thought you were offline so it saved the drafts files and sent message in the .OfflineCache in ~/Library/Mail. The problem I'm having is that when that happens, Mail.app is never able to clear the .OfflineCache once you go online again.
    The net result is that every minute it tries to resend the message and fails, in my case with a timeout and INTERNAL ERROR: Keyword hashtable memory corruption:
    READ May 19 17:14:13.626 [kCFStreamSocketSecurityLevelNegotiatedSSL] -- host:mail.spamarrest.com -- port:993 -- socket:0x189d0050 -- thread:0x1d314d10
    * BYE Disconnected for inactivity.
    * BYE [ALERT] Fatal error: INTERNAL ERROR: Keyword hashtable memory corruption.: Input/output error
    I have not been able to figure out how to resolve this from my end. SpamArrest swears it's not their problem.
    Chip

  • Verizon Messages Web App times out?

    My Verizon Messages web app just started timing out after being inactive for a bit. It will give me a warning, but then it times out if I don't do anything. I like to keep it open in a tab on my browser while I work, so that desktop notifications pop up if I get a text. It only started timing out recently (in the past few days), and I'm wondering if this is a setting I can change?

    Well, you might can find a browser extension that will auto-refresh your page.  I use another app called Mighty Text that syncs with my Android and has a browser window that refreshes automatically as well as allows me to respond via small pop up window when not in browser and lets me dismiss notifications on the phone from the PC.
    SMS Text Messaging & Group MMS - Android Apps on Google Play

Maybe you are looking for

  • How to Add a new fields in the selection screen of LDB.

    Hi All, I want to add a new fields in the selection screen of LDB & then i need to select the data for that fields. So could you please tell me for that where i need to add the code for selecting the data. Thanks Roli

  • Office 2008 Mac Excel/Word Text missing

    After upgrading to Lion, I can no longer see the text in my word documents or excel worksheets.  I know the text is there because it appears in the formula bar - it just isn't visible in the cells.  I can also see the text if I quickview the excel fi

  • Iphoto thumbnails not matching photos

    Just back from a trip and uploaded all our photos, and thought they were all out of order when looking at the thumbnails, but when I click on a thumbnail, it's actually a different photo completely. HELP!     Don't want to lose all our photos, what's

  • Help with Pro*C/C++ precompiler error

    Hello. I have a little experience working with Pro*C/C++ and now I am trying to learn more by my own. I think this is an easy question. I am trying to precompile the Thread_example1.pc code from Pro*C/C++ Precompiler Programmer's Guide, Release 9.2 (

  • Installing cs5 with laptop 1366x768 resolution

    will the install work out? doI need a higher res monitor for the install? once I do get it installed will that res be ok for editing without an external monitor? Mike