Most Http Requests going into endless loop

Hello,
We are currently using JSF 1.1 with Oracle ADF Faces and running on a JBoss 4.0.3 application server running Java 1.5. We have been developing a large application for months with the usual various small problems. This week we've had a large number of continuous users on the system and have experienced a phenomenon where our Http Request threads will one-by-one fall into endless loops consuming alot of resources. This has happened with up to 30 threads before we were forced to restart the server.
All the threads are stuck in the same piece of JSF code. And looking at the thread dump stack traces, some are in the ApplyRequestValues Phase while others are in the RenderResponse Phase.
Here are two dumps from two threads, each one stuck in a different phase but you can see they are hung at the same spot in the code, apparently in an endless loop because the CPU times for these threads just keep increasing. Like they are continuously reading from the map, endlessly.
Thread: http-0.0.0.0-8080-1 : priority:5, demon:true, threadId:79, threadState:RUNNABLE, threadLockName:null
    java.util.HashMap.get(HashMap.java:329)
    com.sun.faces.el.impl.JsfParser.parse(JsfParser.java:15)
    com.sun.faces.el.ValueBindingImpl.getNode(ValueBindingImpl.java:66)
    com.sun.faces.el.ValueBindingImpl.isReadOnly(ValueBindingImpl.java:145)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.EditableValueRenderer.getReadOnly(EditableValueRenderer.java:211)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.EditableValueRenderer.wasSubmitted(EditableValueRenderer.java:109)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.EditableValueRenderer.decode(EditableValueRenderer.java:48)
    oracle.adfinternal.view.faces.renderkit.core.xhtml.InputLabelAndMessageRenderer.decode(InputLabelAndMessageRenderer.java:34)
    oracle.adf.view.faces.component.UIXComponentBase.__rendererDecode(UIXComponentBase.java:937)
    oracle.adf.view.faces.component.UIXComponentBase.decode(UIXComponentBase.java:577)
    oracle.adf.view.faces.component.UIXComponentBase.processDecodes(UIXComponentBase.java:676)
    oracle.adf.view.faces.component.UIXEditableValue.processDecodes(UIXEditableValue.java:269)
    oracle.adf.view.faces.component.UIXComponentBase.decodeChildrenImpl(UIXComponentBase.java:818)
    oracle.adf.view.faces.component.UIXComponentBase.decodeChildren(UIXComponentBase.java:803)
    oracle.adf.view.faces.component.UIXForm.processDecodes(UIXForm.java:53)
    javax.faces.component.UIComponentBase.processDecodes(UIComponentBase.java:880)
    javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.java:306)
    com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyRequestValuesPhase.java:79)
    com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
    com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    com.paetec.paonline.web.PAStatisticsFilter.doFilter(PAStatisticsFilter.java:68)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    com.paetec.paonline.web.PATransactionFilter.doFilter(PATransactionFilter.java:353)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    com.paetec.paonline.web.PALoggingFilter.doFilter(PALoggingFilter.java:102)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
    oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
    org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
    org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
    org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    org.apache.catalina.valves.FastCommonAccessLogValve.invoke(FastCommonAccessLogValve.java:481)
    org.apache.catalina.valves.RequestDumperValve.invoke(RequestDumperValve.java:150)
    org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
    org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
    org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
    java.lang.Thread.run(Thread.java:595)
Thread: http-0.0.0.0-8080-2 : priority:5, demon:true, threadId:85, threadState:RUNNABLE, threadLockName:null
    java.util.HashMap.get(HashMap.java:329)
    com.sun.faces.el.impl.JsfParser.parse(JsfParser.java:15)
    com.sun.faces.el.ValueBindingFactory.createValueBinding(ValueBindingFactory.java:44)
    com.sun.faces.application.ApplicationImpl.createValueBinding(ApplicationImpl.java:263)
    oracle.adf.view.faces.webapp.UIXComponentTag.createValueBinding(UIXComponentTag.java:357)
    oracle.adf.view.faces.webapp.UIXComponentTag.setProperty(UIXComponentTag.java:139)
    oracle.adfinternal.view.faces.taglib.UIXSelectItemTag.setProperties(UIXSelectItemTag.java:41)
    oracle.adfinternal.view.faces.taglib.core.input.CoreSelectItemTag.setProperties(CoreSelectItemTag.java:68)
    oracle.adf.view.faces.webapp.UIXComponentTag.setProperties(UIXComponentTag.java:126)
    javax.faces.webapp.UIComponentTag.createComponent(UIComponentTag.java:1008)
    javax.faces.webapp.UIComponentTag.createChild(UIComponentTag.java:1027)
    javax.faces.webapp.UIComponentTag.findComponent(UIComponentTag.java:740)
    javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:429)
    oracle.adf.view.faces.webapp.UIXComponentTag.doStartTag(UIXComponentTag.java:85)
    org.apache.jsp.main.financial_jsp._jspx_meth_af_selectItem_1(org.apache.jsp.main.financial_jsp:2221)
    org.apache.jsp.main.financial_jsp._jspx_meth_af_forEach_7(org.apache.jsp.main.financial_jsp:2197)
    org.apache.jsp.main.financial_jsp._jspx_meth_af_selectOneChoice_1(org.apache.jsp.main.financial_jsp:2171)
    org.apache.jsp.main.financial_jsp._jspService(org.apache.jsp.main.financial_jsp:859)
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:672)
    org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:463)
    org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:398)
    org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:301)
    com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:322)
    com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:130)
    oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:157)
    com.paetec.paonline.web.app.PAOViewHandler.renderView(PAOViewHandler.java:114)
    com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
    com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
    com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    com.paetec.paonline.web.PAStatisticsFilter.doFilter(PAStatisticsFilter.java:68)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    com.paetec.paonline.web.PATransactionFilter.doFilter(PATransactionFilter.java:353)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    com.paetec.paonline.web.PALoggingFilter.doFilter(PALoggingFilter.java:102)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
    oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
    org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
    org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
    org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    org.apache.catalina.valves.FastCommonAccessLogValve.invoke(FastCommonAccessLogValve.java:481)
    org.apache.catalina.valves.RequestDumperValve.invoke(RequestDumperValve.java:150)
    org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:856)
    org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
    org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
    java.lang.Thread.run(Thread.java:595)

I wanted to mention, when it occurs while rendering the page (as can be seen from the stack traces) that its occurring when rendering a tag. Here is one of the tags in my JSP page, specifically one where I think it could be hanging. Does anyone see anything fishy? This tag is an Oracle ADF tag and the "param" variable is a local loop variable. I jus recently added the " || !financialBean.profitAssistant.paDataEditable" part but I don't know if thats the cause of the problem. This does not occur everytime, it just seems like when there is a good amount of load on the system.
<af:inputText simple="true"
     id=         "tlInputTextParam"
     value=      "#{param.textValue}"
     rendered=   "#{param.rendered}"
     disabled=   "#{param.disabled  || !financialBean.profitAssistant.paDataEditable}"
     styleClass= "#{param.styleClass}"
     inlineStyle="#{param.style}"
     columns=    "#{param.componentSize}"
     onchange=   "#{param.onChangeJS}"
     onclick=    "#{param.onClickJS}"
     onkeydown=  "#{param.onKeyDownJS}"
     onfocus=    "#{param.onFocusJS}"
     onblur=     "#{param.onBlurJS}"
     onmouseover="try{this.title='#{param.description}';#{param.onMouseOverValueJS}}catch(e){}"
     />

Similar Messages

  • JspServiceManager goes into endless loop...

    All I want to do is to create a web app which is not a portal, but
    uses a JspServiceManager. I tried different values for workingDir,
    repository and timeout, but the JspServiceManager always goes into
    an infinite loop. Has anyone run into this problem?
    Regards,
    Chris Wolf
    weblogic.httpd.register.myapp=com.beasys.commerce.axiom.jsp.JspServiceManage
    r
    weblogic.httpd.initArgs.myapp=\
    portalname=myapp,\
    homepage=/myapp/index.jsp,\
    defaultdest=/myapp/index.jsp,\
    workingdir=/myapp/,\
    repositorydir=/repository/,\
    timeout=-1,\
    sessioncomparator=com.beasys.commerce.axiom.jsp.DefaultSessionComparator,\
    groupname=everyone,\
    allowautologin=false
    Tue May 16 15:43:30 PDT 2000:<E> <ServletContext-General> Servlet failed
    with Exception
    java.lang.StackOverflowError
    at java.lang.String.getChars(String.java:549)
    at java.lang.StringBuffer.append(StringBuffer.java:397)
    at java.io.Win32FileSystem.normalize(Win32FileSystem.java:118)
    at java.io.Win32FileSystem.normalize(Win32FileSystem.java:184)
    at java.io.File.<init>(File.java:187)
    at
    weblogic.utils.io.FilenameEncoder.getSafeFile(FilenameEncoder.java:171)
    at
    weblogic.servlet.internal.ServletContextImpl.getRealPath(ServletContextImpl.
    java:345)
    at
    com.beasys.commerce.axiom.jsp.JspServiceManager.getWorkingDirFiles(JspServic
    eManager.java:355)
    at
    com.beasys.commerce.axiom.jsp.JspServiceManager.service(JspServiceManager.ja
    va:439)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :105)
    at
    weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImp
    l.java:143)
    at
    com.beasys.commerce.axiom.jsp.JspServiceManager.service(JspServiceManager.ja
    va:472)
    (last four lines ad infinitum)

    This is one of the release notes.Oh. Sorry, I thought I looked. It's all good now, thanks,
    -Chris
    Jeff Wang <[email protected]> wrote in message
    news:[email protected]...
    This is one of the release notes. You can't register a name, and have
    that same name in as part of the path. This will cause the infinite
    loop as you observed. Either rename the registered name, or rename the
    directory, and you should be fine.
    Jeff Wang
    WLCS 2.0 Software Engineer
    Chris Wolf wrote:
    All I want to do is to create a web app which is not a portal, but
    uses a JspServiceManager. I tried different values for workingDir,
    repository and timeout, but the JspServiceManager always goes into
    an infinite loop. Has anyone run into this problem?
    Regards,
    Chris Wolf
    weblogic.httpd.register.myapp=com.beasys.commerce.axiom.jsp.JspServiceManage
    r
    weblogic.httpd.initArgs.myapp=\
    portalname=myapp,\
    homepage=/myapp/index.jsp,\
    defaultdest=/myapp/index.jsp,\
    workingdir=/myapp/,\
    repositorydir=/repository/,\
    timeout=-1,\
    sessioncomparator=com.beasys.commerce.axiom.jsp.DefaultSessionComparator,\
    groupname=everyone,\
    allowautologin=false
    Tue May 16 15:43:30 PDT 2000:<E> <ServletContext-General> Servlet failed
    with Exception
    java.lang.StackOverflowError
    at java.lang.String.getChars(String.java:549)
    at java.lang.StringBuffer.append(StringBuffer.java:397)
    at java.io.Win32FileSystem.normalize(Win32FileSystem.java:118)
    at java.io.Win32FileSystem.normalize(Win32FileSystem.java:184)
    at java.io.File.<init>(File.java:187)
    at
    weblogic.utils.io.FilenameEncoder.getSafeFile(FilenameEncoder.java:171)
    at
    weblogic.servlet.internal.ServletContextImpl.getRealPath(ServletContextImpl.
    java:345)
    at
    com.beasys.commerce.axiom.jsp.JspServiceManager.getWorkingDirFiles(JspServic
    eManager.java:355)
    at
    com.beasys.commerce.axiom.jsp.JspServiceManager.service(JspServiceManager.ja
    va:439)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at
    weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
    :105)
    at
    weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImp
    l.java:143)
    at
    com.beasys.commerce.axiom.jsp.JspServiceManager.service(JspServiceManager.ja
    va:472)
    (last four lines ad infinitum)

  • MDSNResponder goes into endless loop

    Since updating to Snow Leopard, mDSNResponder stays in a constantly active loop.
    Little Snitch tells me who's making what connections at what time, and as soon as I launch Safari 4.0.3 it shows mDNSResponder constantly active, even after I quit Safari. (I noticed that Firefox does the same thing, but Camino doesn't start this endless mDNSResponder loop).
    The mDNSResponder activity only stops if I force it to stop. With Leopard, and all OSs before it, mDNSResponder activated when it needed to, then stopped after each process was complete.
    I sample mDNSResponder in Activity Monitor and it even says it's in a loop.
    This certainly is not correct. Any info would be appreciated. Thanks.

    Thanks for your reply.
    No matter how many times I sample the process, it says basically this same thing.
    Here's the sample from Activity Monitor:
    Analysis of sampling mDNSResponder (pid 37) every 1 millisecond
    Call graph:
    2689 Thread_370 DispatchQueue_1: com.apple.main-thread (serial)
    2689 start
    2689 _start
    2689 main
    2689 CFRunLoopRun
    2689 CFRunLoopRunSpecific
    2689 __CFRunLoopRun
    2689 mach_msg
    2689 machmsgtrap
    2689 Thread_407 DispatchQueue_2: com.apple.libdispatch-manager (serial)
    2689 start_wqthread
    2689 pthreadwqthread
    2689 dispatch_workerthread2
    2689 dispatch_queueinvoke
    2689 dispatch_mgrinvoke
    2689 kevent
    2689 Thread_492
    2689 thread_start
    2689 pthreadstart
    2689 KQueueLoop
    2686 kevent
    3 mDNS_Execute
    3 SendQueries
    3 uDNS_CheckCurrentQuestion
    3 mDNSPlatformUDPSocket
    3 SetupSocket
    1 bind
    1 setsockopt
    1 socket
    Total number in stack (recursive counted multiple, when >=5):
    Sort by top of stack, same collapsed (when >= 5):
    kevent 5375
    machmsgtrap 2689

  • ICal can no longer Backup onto iDisk - goes into endless hang .

    My family is in several locations (school - 2 homes). We have .Mac Family Account, where 5 users have the same 'Shared' folder in iDisk. Whenever we make changes to iCal, we always Backup onto the iDisk 'Shared' Folder... The next person dowlnoads the latest version...etc. Worked fine until Leopard.
    Now, none of the Leopard Macs can Backup onto iDisk. iMac just goes into endless hangup once Backup starts . Backup to the iMac's Hard Drive works fine. Sync to iPhone works fine. Can also download FROM iDisk fine.
    I have one older iMac still on Tiger. It transfers iCal data via Backup to iDisk like always. Right now, we using our iPhones to physically sync iCal to all the Leopards. Ugh.
    Anyone have a possible solution? Any special settings / ports etc that might get iCal to Backup onto iDisk 'Shared' Folder?
    Thanks for your help.

    Phyllis,
    For your problem, I would recomend what some other posting suggested.
    Go to your System Preferences control panel in your Dock, choose your .Mac account. Remove your name and password. Quit/Close the System Preferences control panel. Re Open the System Preferences control panel and re enter your info. That should kickstart your connection. If that doesn't work try the same process but RESTART your computer in betweeen closing and opening the System Preferences control panel. Good luck.
    Dario

  • Unable to open files associated with Adobe Reader - program goes into a loop

    i am unable to open any file associated with adobe reader or adobe pro.  when i double-click the file, adobe reader opens up but it goes into a loop. 
    adobe reader opens, then a progress window opens, as if the file will open but adobe closes and opens again and the same cycle repeats itself until i manually close the program.
    any advice?
    update:
    i can open regular .PDF files when i double-click the icon and i can also open .PDF files when i open adobe reader first and then choose open file.  it's just the .FDF files that are the problem (so far).
    the file in question happens to be an .FDF extension, which is an internet generated form. i attached a screen shot of the screen that pops up, goes away, and pops up again that creates the loop.
    the white out section is the server name where the file was saved to.  but i also get the same symptoms when i am in internet explorer, hit the generate form button.

    hey ankit,
    sorry i didn't see a notification that you replied to this discussion.
    "1. Generate a new PDF and a FDF file. Try opening the same and see if it behaves the same way."
    yes, it does behave the same way, it's just a continuous loop until i have to kill the process.
    "2. Check if you have access to the PDF that is being used by the particular FDF."
    by this do you mean the correct permissions?  if that is what you mean, then yes, the permissions are set correctly.
    "3. If possible, please send me the FDF and the associated PDF that is behaving in this way on your system."
    i really wish i could but the information in the form is sensitive and cannot be sent. 
    as an update though, i reimaged the customer's workstation, installed Adobe Reader 10.1.1 and it worked perfectly (finally).  HOWEVER, after about two weeks the same symptoms returned! 

  • OIM11gR2:Event handler goes into infinite loop

    Hi Experts,
    I have created an event handler where i am doing some functionality on execute function, that updates some UDF's when a user modifies value from the user modify form.
    I am calling the event hanlder on modify action of User entity
    Now the problem i am facing is that the eventhandler goes into infinte loop and modifies the values again and again without any break.
    Please help out, i am not able to kill the process unitill i restart the server :-(

    You can use something like below to get old values :
    HashMap<String, Serializable> interEvtDataMap = orchestration.getInterEventData();
              User newUserState = (oracle.iam.identity.usermgmt.vo.User) interEvtDataMap.get("NEW_USER_STATE");
              User oldUserState = (oracle.iam.identity.usermgmt.vo.User) interEvtDataMap.get("CURRENT_USER");
              newFirstName = (String)newUserState.getAttribute("First Name");
              oldFirstName = (String)oldUserState.getAttribute("First Name");     
    Thanks
    Suren

  • Cisco_Webex_Add-on goes into a loop on install

    I am running mac book pro with OS X 10.9.5 (13F34). Webex prompts me to install Cisco_Webex_Add-on. After "successful" installation, it again asks me to install the same and keeps going into a loop. Unable to run webex session. Any help?

    Webex will open but the minute I try a one click meeting or to join or start a meeting it fails and tells me to install Install Cisco WebEx Add-On.App
    I have the same problem Install Cisco WebEx Add-On.App looks like it install then disappears and never loads keeps asking to redo the same install.

  • On log on my home page appears, goes into a loop, icons flash on and off and wont load

    HP Logo and the log on page load OK but when I log on to my home page it goes into a loop.  The screen and icons keep flashing as if the screen keeps reloading.  I cant do anything to stop it.

    This post describes exactly the problem I'm having.  I can access "HELP" (obviously) and by using "ctrl-alt-delete" I can assess Task Manager and see systems and services. On Services, many are marked "stopped." CPU power is variable, from 33% to 98%.  I don't understand any of this.

  • PSPPYRUN is going into a loop

    hello team
    PSPPYRUN is going into a loop.  see log file sequence.  You can see its re-calculating that pay group over and over again.  We have done everything see task list competed and there is no long running sql in the database either .  Is there some configuration in the application we have done which is causing this infinite loop? This is north american Payroll 9.2  and We have applied Tax : 2014-B on 2014/06/30.  We are only running for one paygroup using one run id. One id to one paygroup relationship.
    Task completed prior to running PSPPYRUN. 
    1. Recycle Process Scheduler – Completed
    2. Cleared Process Monitor logs - Completed
    3. Compiled all COBOLs - Completed
    4. Run all Store statements – Completed
    5. Deleted duplicate employee – Completed
    6. Running STATS – Completed
    PeopleSoft Payroll -- Version 9.2
    Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
    Off-Cycle Calculation started for Run: D22     
    at 23:27:48.20.
    Calculation started for Company: 001     
                            Pay Group: 005     
                            Pay End Date: 2014-05-24
    at 23:27:48.80.
         2  check(s) already calculated.
         0  check(s) to calculate.
    Calculation started for Company: 001     
                            Pay Group: 005     
                            Pay End Date: 2014-05-24
    at 23:27:53.83.
         2  check(s) already calculated.
         0  check(s) to calculate.
    Calculation started for Company: 001     
                            Pay Group: 005     
                            Pay End Date: 2014-05-24
    at 23:27:54.52.
         2  check(s) already calculated.
         0  check(s) to calculate.
    Calculation started for Company: 001     
                            Pay Group: 005     
                            Pay End Date: 2014-05-24
    at 23:27:55.19.
         2  check(s) already calculated.
         0  check(s) to calculate.
    Calculation started for Company: 001     
                            Pay Group: 005     
                            Pay End Date: 2014-05-24
    at 23:27:55.87.
         2  check(s) already calculated.
         0  check(s) to calculate.
    Calculation started for Company: 001     
                            Pay Group: 005     
                            Pay End Date: 2014-05-24
    at 23:27:56.54.
         2  check(s) already calculated.
         0  check(s) to calculate.
    Calculation started for Company: 001     
                            Pay Group: 005     
                            Pay End Date: 2014-05-24
    at 23:27:57.21.
         2  check(s) already calculated.
         0  check(s) to calculate.
    Calculation started for Company: 001     
                            Pay Group: 005     
                            Pay End Date: 2014-05-24
    at 23:27:57.89.
         2  check(s) already calculated.
         0  check(s) to calculate.
    Calculation started for Company: 001     
                            Pay Group: 005     
                            Pay End Date: 2014-05-24
    at 23:27:58.58.
         2  check(s) already calculated.
         0  check(s) to calculate.
    Calculation started for Company: 001     
                            Pay Group: 005     
                            Pay End Date: 2014-05-24
    at 23:27:59.28.
         2  check(s) already calculated.
         0  check(s) to calculate.
    Calculation started for Company: 001     
                            Pay Group: 005     
                            Pay End Date: 2014-05-24
    at 23:27:59.97.
         2  check(s) already calculated.
         0  check(s) to calculate.
    Calculation started for Company: 001     
                            Pay Group: 005     
                            Pay End Date: 2014-05-24
    at 23:28:00.61.
         2  check(s) already calculated.
         0  check(s) to calculate.
    Calculation started for Company: 001     

    Dear All,
                 I will explain the scenario further.
    Plant : PL1
    Vendor Location : VL1
    Subcontractor Location : SL1
    Component manufactured at VL1 : C1
    PPM maintained at VL1 for C1
    Component supplied by VL1 to PL1 : C1
    Manual Tlane created from VL1 to PL1 for C1
    Component, in turn, supplied by plant PL1  to  SL1: C1
    Manual Tlane created from PL1 to SL1 for C1
    Product Manufactured at Subcontract Location : SFG
    PPM maintained at SL1 for SFG
    Product supplied by SL1 to PL1 : SFG
    Creating a Purchase Inforecord with subcontracting type and CIFing to APO creates a Tlane for SFG from SL1--->PL1
    Procurement type at PL1 for SFG is "F"
    Procurement type at SL1 for SFG is "E"
    Procurement type at PL1 for C1 is "F"
    Procurement type at SL1 for C1 is "F"
    Procurement type at VL1 for C1 is "E"
    The Tlanes are in opposite direction and for different product.
    For C1, it is VL1 -> PL1 -> SL1
    For SFG, it is SL1 -> PL1
    Can this be the cause of the run going into the loop?
    Thanks in advance
    Ehsan Ahmed

  • Iphone keeps going into reboot loop

    Hey guys, i dropped my iphone from 1 month ago and since it, the signal went away sometimes while it was charging and when i took the stick out my iphone went into reboot loop, then i just waited some time and it went back.
    Now suddenly 2 days ago, my iphone keeps going into reboot loop everytime and when i get it out then around 9hours later, it comes again..
    I really need help since it affects my school, when the alarm don't work in the morning.
    TLDR; Iphone keeps going into reboot loop, need help!

    Have you got the latest 1.1.4 software installed, along with the latest version of iTunes?
    Have an iPhone or iPod touch? Enter Mac611.com in Safari on it for 'mobile Mac support.'
    Disclaimer required by Apple Discussions Terms of Use: Mac611 may receive some form of compensation, financial or otherwise, from my recommendation or link.

  • ADF 11g - Deployed app (WLS 10.3) fall into endless loop

    My application runs just fine in the embedded WLS in JDeveloper 11. But when deployed to standalone WLS, the application is suddenly fall into endless redirect loop.
    I tried to put out any filter that might cause the problem, including JpsFilter to no result.
    The console output when a request came in is as shown in http://pastebin.com/f60edd84d . The last line of the log is when firefox detected an endless redirect loop and decided to halt.
    Server log shows repeated entry of:
    Redirect is executed in begin or refresh action. Redirect url is /console/console.portal?_nfpb=true&_pageLabel=DiagnosticsViewDomainLogTablePage&DiagnosticsViewDomainLogTablePortlethandle=com.bea.console.handles.LogDispatchHandle%28%22AdminServer%3BDomainLog%22%29
    What could be the problem?
    Thanks.
    Rgds,
    Rudi Adianto

    I wanted to mention, when it occurs while rendering the page (as can be seen from the stack traces) that its occurring when rendering a tag. Here is one of the tags in my JSP page, specifically one where I think it could be hanging. Does anyone see anything fishy? This tag is an Oracle ADF tag and the "param" variable is a local loop variable. I jus recently added the " || !financialBean.profitAssistant.paDataEditable" part but I don't know if thats the cause of the problem. This does not occur everytime, it just seems like when there is a good amount of load on the system.
    <af:inputText simple="true"
         id=         "tlInputTextParam"
         value=      "#{param.textValue}"
         rendered=   "#{param.rendered}"
         disabled=   "#{param.disabled  || !financialBean.profitAssistant.paDataEditable}"
         styleClass= "#{param.styleClass}"
         inlineStyle="#{param.style}"
         columns=    "#{param.componentSize}"
         onchange=   "#{param.onChangeJS}"
         onclick=    "#{param.onClickJS}"
         onkeydown=  "#{param.onKeyDownJS}"
         onfocus=    "#{param.onFocusJS}"
         onblur=     "#{param.onBlurJS}"
         onmouseover="try{this.title='#{param.description}';#{param.onMouseOverValueJS}}catch(e){}"
         />

  • Reinstallating elements 10... Licence screen goes in endless loop - solution?

    Reinstalling Elements 10 after the price went up for CC-full and I downgraded to just CC-LR and PS. But can't get past accept licence screen. Click OK to accept that and it just goes round in an endless loop where the licence screen reappears each time you click the OK button.
    Have a valid licence key and tried both DVD reinstall and download reinstall (This also happened with the original installation after I'd downgraded CC, hadn't used the software while had CC-Premiere Pro, but wasn't using that enough to justify cost of full CC).
    Any ideas what the solution is?

    Peak Images
    Is Premiere Pro CC still installed? For now I will assume that you are trying to run Premiere Elements 10 on Windows 7, 8, or 8.1 64 bit. What is the video card/graphics card that the computer uses? If the card in not NVIDIA GeForce, then.....
    Uninstall all traces of Premiere Elements 10 from your computer.
    a. Uninstall the usual Control Panel way.
    b. Do a free ccleaner run through to get rid of any leftovers from incomplete install reinstalls.
    http://www.piriform.com/ccleaner/download
    c. Reinstall Premiere Elements 10 with the antivirus and firewall(s) disabled.
    Let us start here and then decide what next based on your reported results. If the above uninstall/ccleaner/reinstall scheme does not work, we
    may yet try to delete the Adobe Premiere Elements Prefs file and, if necessary, the whole 10.0 Folder in which the Adobe Premiere Elements Prefs
    file exists. It is also assumed that you have the latest version of Quicktime installed on your computer with Premiere Elements 10 and that you are
    running the program from a User Account with Administrative Privileges. Yes? Have you looked at the situation with and without the antivirus and firewall(s) disabled?
    Thank you.
    ATR

  • BADI For Transaction ME51N going to endless loop

    Hi All,
    I have implemented BADI ME_PROCESS_REQ_CUSTand calling the set data method of it but the badi is going to an endless loop as the value for address number in delivery address is not retained. Any suggestions???
    Asha

    Below is the code I am using
    METHOD if_ex_me_process_req_cust~process_item .
      DATA: ls_mepoitemx TYPE mereq_itemx,
            ls_mepoitem  TYPE mereq_item,
            v_adrn2(10)  TYPE c,  "address number
            l_flag1(1)   TYPE c,              "Flag if Delivery Address should be change
            v_lgnum(3) TYPE c,   "warehouse number
            v_ltkze(3) TYPE c.   "storage type indicator
      DATA: ex_changed TYPE mmpur_bool.
      ls_mepoitem = im_item->get_data( ).
    break-point.
      IF ls_mepoitem-werks NE space AND
         ls_mepoitem-lgort NE space.
    *check if address number, manual delivery address number, customer and vendor are blank.
        IF ls_mepoitem-adrn2 EQ space AND
           ls_mepoitem-adrnr EQ space AND
           ls_mepoitem-kunnr EQ space AND
           ls_mepoitem-emlif EQ space.
          SELECT SINGLE lgnum   "warehouse number
                 FROM t320
                 INTO v_lgnum
                 WHERE werks EQ ls_mepoitem-werks AND
                       lgort EQ ls_mepoitem-lgort.
    *if there is a retrieved warehouse number, select the stock placement value from MLGN.
          IF sy-subrc EQ 0.
            SELECT SINGLE ltkze  "stock placement value
                   FROM mlgn
                   INTO v_ltkze
                   WHERE matnr EQ ls_mepoitem-matnr
                   AND   lgnum EQ v_lgnum.
    *if there is stock placement value and the value is not inital, retrieve the address number.
            IF sy-subrc EQ 0
            AND v_ltkze IS NOT INITIAL.
              SELECT SINGLE adrn2    "delivery address number
                     FROM zmm_adrc
                     INTO v_adrn2
                     WHERE werks EQ ls_mepoitem-werks
                     AND   lgnum EQ v_lgnum
                     AND   ltkze EQ v_ltkze.
    *appends the address with leading zeros to match the data type in adrc
              IF sy-subrc EQ 0.
                CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
                  EXPORTING
                    input  = v_adrn2
                  IMPORTING
                    output = v_adrn2.
    *transfer the address to ls_mepoitem-adrn2.
                MOVE v_adrn2 TO ls_mepoitem-adrn2.
                CALL METHOD im_item->set_data
                  EXPORTING
                    im_data = ls_mepoitem.
              ENDIF.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDMETHOD.

  • Win 8.1 goes into restart loop

    I have an hp touchsmart tm2 2100 notebook. It originally came with win 7. Now I have installed win 8.1 but it does not give a display on multimedia ( i am a teacher and have to do a lot on multimedia). when I upgrade the driver, it goes into a restart loop and continues for a while. At the end, it gives a restore or advance repair options. I go into the safe mode and uninstall the intel graphic driver. It comes back to its originla position.
    Please any suggestions on how to sort this out.

    Hi @zameernawaz 
    Welcome to the HP Support Forums!
    I understand you are having trouble with the multimedia settings. I am happy to assist. Please see the following pages from the HowToGeek and Microsoft support forums that may help. In windows 8.1 the Multimedia settings are found in the Control panel.
    The Top 12 PC Settings in Windows 8.1 You Should Know
    How to Access the Control Panel in Windows 8 or 8.1
    Hiding inactive Multimedia Devices from "Devices and Printers"
    I hope that this helps
    Malygris1
    I work on behalf of HP
    Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
    Click Kudos Thumbs Up on the right to say “Thanks” for helping!

  • htmlb:fileupload goes into infinite loop

    Hello all,
    We use the tag <htmlb:fileupload> in our bsp page. Now if the user enters a file name directly, ie:without using the browse button the user simply enters a filename, say 'Resume.doc' in the input field and hits the save button on the page, then the system is going into an infinite loop and the system hangs, the users cannot proceed further and they need to restart the browser all over again(it is not necessary that the file must exist in the system, the user just types in a file name and performs the save action). This is a cause of concern for some of our customers, they expect that we should provide a meaningful message to the user and the processing should end. Is this a known issue in BSPs ?? Can anyone suggest me how to get rid of this problem ?
    Thanks and Best Regards,
    Viqar Ali.

    Hello All,
    I use the following code in my bsp:
    <phtmlb:matrix width="100%" >
      <phtmlb:matrixCell row = "1"
                         col = "1" />
        <phtmlb:formLayout design           = "HEADING_ONLY_SOLID"
                           customizationKey = "<%= controller->context %>" >
        <%-- Upload --%>
        <phtmlb:formLayoutItem label    = "<%= controller->file_label %>"
                               idOfItem = "upload" >
          <htmlb:fileUpload id   = "upload"
                            size = "30" />
        </phtmlb:formLayoutItem>
    Everything works fine if the user selects a file using the browse button to select a file. Instead if the user enters a file name directly, then the system runs into an infinite loop. I have put a breakpoint in DO_HANDLE_DATA & DO_REQUEST of the controller class. However the control doesnt come till this point also and i cannot even debug anything. The breakpoints are hit if the user selects the file using the browse button. If anyone has a similar scenario working correctly in their application pls update me with the code.
    Thanks and Best Regards,
    Viqar Ali.

Maybe you are looking for

  • How to connect my Mac Air 13" to my Philips display with DVI and VGA ports?

    How to connect my Mac Air 13" to my Philips display with DVI and VGA ports?

  • How to Export Outlook 2011 Folder to PDF?

    I am very new to my Mac Book Pro (four days and counting)/OSX 10.8.2. If this question belongs better asked elsewhere here, please let me know. I realize this is a Microsoft question, but they have no answer. I would like to have the ability to expor

  • Photo stream upload problem

    I have tried this in iPhoto and Aperture, but my photo stream is not uploaded. All the photos are visible in WEB/Photostream, but they don't appear on my iOS devices. And when I want to make these photos public in Aperture, to make them visible for a

  • How to format Lion OS X 10.7.5?

    I Don't figure out a lot from computers but my MacBook has been hacked I suppose and I want to format it in a cvery easy way. What is the simplest way to do it?

  • Adobe PO Form in SRM

    Hello Frn's. I  am creating a z Adobe by copying a exisitng PO Adobe form (bbp_po_adb) . Beacuse i need some more fileds calculation, so have to  create a Z interface as well by copying a existing interface (if_bbp_po_adb). But then i need to impleme