While clicking the link. Multiple Tabages are added.

hi jdev experts,
am using jdev 11.1.1.5.0-adfbc-mozilla9.0.1-oracledb10g.
here am going to summarizse. what i did.
am using index.jspx page for rendering the af:tree. when i clicking the corresponding leaf links of the tree. it will navigate one jsff page(dynamic region).
i had af:tree.
The tree exposed as af:command link
while am clicking the click. coresponding taskflow will calls.
xyztaskflow()my taskflow code
    public String xyztaskflow()
       taskFlowId = "/WEB-INF/Task-Flows/Supplier-task-flow-definition.xml#Supplier-task-flow-definition";
       launchActivity("Suppliers",taskFlowId,false);
      return null;
     }methods calls:
    private void launchActivity(String title, String taskflowId, boolean newTab)
      try
        if (newTab)
         TabContext.getCurrentInstance().addTab(title,taskflowId);
        else
          TabContext.getCurrentInstance().addOrSelectTab(title,taskflowId);
      catch (TabContext.TabOverflowException toe)
        // causes a dialog to be displayed to the user saying that there are
        // too many tabs open - the new tab will not be opened...
        toe.handleDefault();
    }For above method (launchActivity) Link which i referred here.
http://www.oracle.com/technetwork/developer-tools/adf/uishell-093084.html
all above things which i did are fine.
please see the following pics. these are my outputs.
pic1:
http://www.4shared.com/photo/tmmAaiHV/step1.html
pic2:
http://www.4shared.com/photo/Yya8-Oj_/step2.html
pic3:
http://www.4shared.com/photo/f4eX-5gp/step3.html
take look to pic2.
when i click supplier link means supplier task flow is opens on the right side. (you can see that in pic2)
take look to pic3.
when i click Banks/terms link means Banks/terms is opens on the right side. (you can see that in pic3).
but my problem is Banks/terms tab added to the supplier tab.
NO i dont want like that.
one tab at a time. do want to added mutliple tabs.
for eg:
if i click supplier link means supplier tab should open.
if i click banks/terms link means
supllier tab and supplier tab inside the supplier dynamic region should close automatically. and banks/terms tabs opens automatically.
i understood that my post is though long. somewhat hard to understood.
here am ready to explain. where you getting confused.

if use remove tab before opening any tab means.
while clicking link means this error throws,
<LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase INVOKE_APPLICATION 5
javax.el.ELException: java.lang.ArrayIndexOutOfBoundsException: -1
     at com.sun.el.parser.AstValue.invoke(Unknown Source)
     at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
     at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodExpression(UIXComponentBase.java:1300)
     at org.apache.myfaces.trinidad.component.UIXTree.broadcast(UIXTree.java:225)
     at oracle.adf.view.rich.component.rich.data.RichTree.broadcast(RichTree.java:248)
     at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:148)
     at org.apache.myfaces.trinidad.component.UIXTree.broadcast(UIXTree.java:232)
     at oracle.adf.view.rich.component.rich.data.RichTree.broadcast(RichTree.java:248)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
     at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
     at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
     at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
     at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:788)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:306)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:186)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
     at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
     at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:175)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
     at java.security.AccessController.doPrivileged(Native Method)
     at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
     at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
     at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
     at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
     at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
     at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
     at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
     at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
Caused by: java.lang.ArrayIndexOutOfBoundsException: -1
     at java.util.ArrayList.get(ArrayList.java:324)
     at oracle.ui.pattern.dynamicShell.TabContext._removeTab(TabContext.java:462)
     at oracle.ui.pattern.dynamicShell.TabContext.removeTab(TabContext.java:256)
     at oracle.ui.pattern.dynamicShell.TabContext.removeCurrentTab(TabContext.java:244)
     at com.rits.view.backing.RJAppIndex.launchActivity(RJAppIndex.java:1038)
     at com.rits.view.backing.RJAppIndex.cfg0030taskflow(RJAppIndex.java:383)
     at com.rits.view.backing.RJAppIndex.onTreeSelect(RJAppIndex.java:543)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     ... 60 more
<Feb 3, 2012 7:36:52 AM GMT> <Error> <HTTP> <BEA-101020> <[ServletContext@4763929[app:RoadmapJApp module:RoadmapJApp-GeneralLedgerUI-context-root path:/RoadmapJApp-GeneralLedgerUI-context-root spec-version:2.5]] Servlet failed with Exception
javax.el.ELException: java.lang.ArrayIndexOutOfBoundsException: -1
     at com.sun.el.parser.AstValue.invoke(Unknown Source)
     at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
     at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodExpression(UIXComponentBase.java:1300)
     at org.apache.myfaces.trinidad.component.UIXTree.broadcast(UIXTree.java:225)
     at oracle.adf.view.rich.component.rich.data.RichTree.broadcast(RichTree.java:248)
     Truncated. see log file for complete stacktrace
Caused By: java.lang.ArrayIndexOutOfBoundsException: -1
     at java.util.ArrayList.get(ArrayList.java:324)
     at oracle.ui.pattern.dynamicShell.TabContext._removeTab(TabContext.java:462)
     at oracle.ui.pattern.dynamicShell.TabContext.removeTab(TabContext.java:256)
     at oracle.ui.pattern.dynamicShell.TabContext.removeCurrentTab(TabContext.java:244)
     at com.rits.view.backing.RJAppIndex.launchActivity(RJAppIndex.java:1038)
     Truncated. see log file for complete stacktrace
>
<Feb 3, 2012 7:36:52 AM GMT> <Notice> <Diagnostics> <BEA-320068> <Watch 'UncheckedException' with severity 'Notice' on server 'DefaultServer' has triggered at Feb 3, 2012 7:36:52 AM GMT. Notification details:
WatchRuleType: Log
WatchRule: (SEVERITY = 'Error') AND ((MSGID = 'WL-101020') OR (MSGID = 'WL-101017') OR (MSGID = 'WL-000802') OR (MSGID = 'BEA-101020') OR (MSGID = 'BEA-101017') OR (MSGID = 'BEA-000802'))
WatchData: DATE = Feb 3, 2012 7:36:52 AM GMT SERVER = DefaultServer MESSAGE = [ServletContext@4763929[app:RoadmapJApp module:RoadmapJApp-GeneralLedgerUI-context-root path:/RoadmapJApp-GeneralLedgerUI-context-root spec-version:2.5]] Servlet failed with Exception
javax.el.ELException: java.lang.ArrayIndexOutOfBoundsException: -1
     at com.sun.el.parser.AstValue.invoke(Unknown Source)
     at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
     at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodExpression(UIXComponentBase.java:1300)
     at org.apache.myfaces.trinidad.component.UIXTree.broadcast(UIXTree.java:225)
     at oracle.adf.view.rich.component.rich.data.RichTree.broadcast(RichTree.java:248)
     at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:148)
     at org.apache.myfaces.trinidad.component.UIXTree.broadcast(UIXTree.java:232)
     at oracle.adf.view.rich.component.rich.data.RichTree.broadcast(RichTree.java:248)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
     at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
     at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
     at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
     at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:788)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:306)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:186)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
     at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
     at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:175)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
     at java.security.AccessController.doPrivileged(Native Method)
     at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
     at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
     at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
     at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
     at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
     at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
     at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
     at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
Caused By: java.lang.ArrayIndexOutOfBoundsException: -1
     at java.util.ArrayList.get(ArrayList.java:324)
     at oracle.ui.pattern.dynamicShell.TabContext._removeTab(TabContext.java:462)
     at oracle.ui.pattern.dynamicShell.TabContext.removeTab(TabContext.java:256)
     at oracle.ui.pattern.dynamicShell.TabContext.removeCurrentTab(TabContext.java:244)
     at com.rits.view.backing.RJAppIndex.launchActivity(RJAppIndex.java:1038)
     at com.rits.view.backing.RJAppIndex.cfg0030taskflow(RJAppIndex.java:383)
     at com.rits.view.backing.RJAppIndex.onTreeSelect(RJAppIndex.java:543)
     at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
     at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
     at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
     at java.lang.reflect.Method.invoke(Method.java:597)
     at com.sun.el.parser.AstValue.invoke(Unknown Source)
     at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
     at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodExpression(UIXComponentBase.java:1300)
     at org.apache.myfaces.trinidad.component.UIXTree.broadcast(UIXTree.java:225)
     at oracle.adf.view.rich.component.rich.data.RichTree.broadcast(RichTree.java:248)
     at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:148)
     at org.apache.myfaces.trinidad.component.UIXTree.broadcast(UIXTree.java:232)
     at oracle.adf.view.rich.component.rich.data.RichTree.broadcast(RichTree.java:248)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
     at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
     at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
     at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
     at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
     at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:788)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:306)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:186)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
     at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
     at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:175)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
     at java.security.AccessController.doPrivileged(Native Method)
     at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
     at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
     at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
     at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
     at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
     at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
     at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
     at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
SUBSYSTEM = HTTP USERID = <WLS Kernel> SEVERITY = Error THREAD = [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' MSGID = BEA-101020 MACHINE = rmsys0061 TXID =  CONTEXTID = 58dc55bc4e3ef1f9:3c2a5ddb:135421ca493:-8000-00000000000001e5 TIMESTAMP = 1328254612218 
WatchAlarmType: AutomaticReset
WatchAlarmResetPeriod: 30000

Similar Messages

  • CDs with multiple artists are added to the library multiple times I want to be able to add the artwork to all.

    CDs with multiple artists are added to the library multiple times. Usually one has the artwork. I want to add the artwork to the others.  The instructions are inaccurate. I tried it several ways and it does not work.  How do I add the artwork shown on one of the albums to the other albums (same album, different artists)?

    Try Ethernet over Power adapters.. these are very popular for your kind of environment.. being able to make non-wireless link to another area where you can setup a wireless access point.
    Airport Express are not great for wireless power.. if you really have issues with wireless strength in a bad environment apple stuff is not the way to go.
    The comparison chart here.
    http://www.smallnetbuilder.com/lanwan/router-charts/bar/58-2_4-ghz-dn?see=P_F
    This is their worst test location you can also see averages.. the latest airport extreme.. is there a long way down.. and that is a much better wireless device than Airport Express.
    The Ubiquiti power AP is small cheap and designed for precisely this duty.. useless in an apple wireless network.. you will need to run ethernet or EOP adapters back to the main router.. but if the normal omni directional antennas don't provide enough signal you can get directional ones.. I suspect you can cover your whole apartment with a pair of these and high gain directional antenna.

  • I'm trying to load up webpages and am getting the error "URL not valid" but it's on sites and URLs that i know for sure are. Like when I click a link it'll do that but I'll close the notification box and click the link again and it'll load.

    I'll pretty much just get a message that says something like google.com is invalid when I know it for sure it. Even if I just click on a link on like Gizmodo or something, I'll get that message. I'll close the message and then I'll click the link again and it would actually load up now.
    == This happened ==
    A few times a week
    == A while ago. Perhaps a couple weeks

    Click here and request assistance.
    (91679)

  • I received a link to fill out a document on this site through email. However, when I click the link, it just directs me to my FormsCentral homepage and there are no documents for me to fill out. How do I find this document or stop myself from just being r

    I received a link to fill out a document on this site through email. However, when I click the link, it just directs me to my FormsCentral homepage and there are no documents for me to fill out. How do I find this document or stop myself from just being redirected to my homepage?

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • How to get file from server while click on link

    Hi,
    i created on link and i gave one server path to select file from server but while clickinng on link it no displaying any thing.
    following is the Destination url that i gave for the item.
    /u08/app/appvis/xxex/inst/xxex_apps/xxrbe/logs/appl/conc/log/
    please tell me how to get file from server while click on link.

    Ok I got your requirement now.
    If you are getting file names from view attribute then you should not be adding destination URI property for the link.
    Instead you can use OADataBoundValueViewObject API.
    Try below code in your controller processRequest method:
    I am assuming that you are using classic table.
    Also in below example it considers OAMessageStyleText and you can replace it with link item if you want.
    OATableBean tableBean =
    (OATableBean)webBean.findChildRecursive("<table item id>");
    OAMessageStyledTextBean m= (OAMessageStyledTextBean)tableBean.findChildRecursive("<message styled text in table item id>");
    OADataBoundValueViewObject tip1 = new OADataBoundValueViewObject(m, "/u08/app/appvis/xxex/inst/xxex_apps/xxrbe/logs/appl/conc/log/"+"<vo attr name which stores file name for each row>");
    m.setAttributeValue(oracle.cabo.ui.UIConstants.DESTINATION_ATTR, tip1);
    Regards,
    Sandeep M.

  • Why am I getting an "unsupported url" error when I click the link to find my apple id?

    When I click the link to change my password or to find my apple id, I get a blank page with only "unsupported url error".  I've tried on multiple devices and while I can log on with one apple ID, I can not get any of the links to change id or password or to find an  additonal password to work.  Any suggestions?

    When I click the link to change my password or to find my apple id, I get a blank page with only "unsupported url error".  I've tried on multiple devices and while I can log on with one apple ID, I can not get any of the links to change id or password or to find an  additonal password to work.  Any suggestions?

  • I want to bring in text from Word (and the web) that is already hyperlinked into InDesign. How do I do it while keeping the links active?

    I want to bring in text from Word (and the web) that is already hyperlinked into InDesign. How do I do it while keeping the links active?
    Whenever I copy/paste from web or Word it removes the hyperlinks.  And when I try to do it by "Place"ing a Word document into my InDesign project it keeps the formatting with it, the rectangles around the text.
    I have the latest version of InDesign.
    Any help is appreciated. 

    Copy-and-paste may not include formatting. A regular import using Place is the best way.
    The rectangles around the hyperlinks are just to indicate they are links -- they do not print, but they do show up in your PDF.
    You can remove them by double-clicking the hyperlink in the Hyperlinks panel and select "Invisible Rectangle" as type.
    Typically, Word hyperlinks are formatted -- blue text, underline -- with a Character Style. If you want to remove or change the formatting, all you have to do is change the character style. My experience, though, is you must check all hyperlinks because for no apparent reason sometimes they appear in the document without the character style.

  • I have sent files several times now and when the recipient clicks the link to open. it says page cannot be found.  This just started happening.  what needs to be corrected?

    In Adobe Send, I have sent files several times now and when the recipient clicks the link to open, it says page cannot be found.  This just started happening.  What needs to be corrected?

    I can think of a couple of reasons for this behavior.
    You inadvertently turned off the sharing for the files.
    The link that the user is clicking on is incomplete; perhaps it got broken across lines in an email message. Are you sending Anonymous Links or Personalized Invitations? If the former, are you certain that you copied the entire link?
    Some things to try.
    Have the user send the link back to you so that you can test it. Does it work for you?
    If you look at your Sent Files list, is the name in the Sent To column struck through (e.g., John Smith)? That would indicate that it has been unshared.
    If you could get back to me with answers, perhaps we can get to the bottom of this.

  • I just to open every Google searched link in ( new tab ) in same webpage , when i click the link

    hello sir/mam
    i just to open every Google searched link in ( new tab ) in same webpage , when i click the link
    what to do
    please replay
    thank you

    I am not sure what you want. Do you want to open links in a new
    tab / window, or the same window you are in?
    Type '''about:preferences#general'''<Enter> in the address bar.
    Check the settings under''' Tabs'''

  • When i go to google, then search my school, mozilla freezes when i click the link. why?

    I made a new user for my school work. I signed on. started mozilla firefox. went to google. searched for the itt tech student portal and when i clicked the link, it froze. the loading circle on the tab continued to spin but my mouse pointer stays the arrows to move the vertical border. <-> like that. why is it doing this?

    Hello,
    Have you tried [[Font size and zoom - increase the size of web pages|Firefox's zoom feature]]? This will help increase the size of web pages.
    * To make things bigger, press '''Ctrl''' and '''&#43''' at the same time.
    * To make things smaller, press '''Ctrl''' and '''-''' at the same time.
    * To reset the size back to normal, press '''Ctrl''' and '''0''' at the same time.
    You can also use the [https://addons.mozilla.org/en-US/firefox/addon/2592/ NoSquint]. add-on to change the default zoom level for all websites at once. After setting your global zoom level, you can still fine-tune the zoom on individual sites.
    '''Using NoSquint:'''
    #After installing NoSquint, make sure you have the Add-on Bar displayed:
    #*Right-click the new tab button ("+") or a blank area of the tab bar to the right of it and choose Add-on Bar from the shortcut menu.
    #Click the % on the Add-on Bar to call up site preferences, then click the Global Settings button, then the Zooming tab.
    #*You can experiment with sizes larger than 125%, but it's not recommended that you go higher than 150% unless you have a large high-resolution monitor.
    If there are particular sites that still present a problem, feel free to post their URLs.
    Please let us know if this helped you!
    Thank you.

  • I am getting a 404 error when I click the link to request my upgrade.

    I am getting a 404 error when I click the link to request my Mountain Lion upgrade. I have a brand new MacBook Pro so I don't understand why I'm getting this error.

    Make sure you are logged in to the Adobe site, have cookies enabled, clear your cookie cache.  If it continues to fail try using a different browser.

  • Download Photoshop CS3 from Adobe when I click the link I am getting http 404 page not found.

    I have a copy of Photoshop CS3 on my old Macbook. Need to move to my new Macbook with no CD drive.  Following instructions it says to download CS3 and enter serial number.  When I attempt to download from Adobe and click the link I am getting http 404 page not found.

    Download CS3 products
    Works for me. If there are issues, use another browser and check your network configuration.
    Mylenium

  • When I click the link to install Firefox to my Android phone I recieve the error: The requested item could not be found.

    My phone is an LG Optimus, presumable of the type necessary to install Firefox. The download does not appear when I click the link.
    Duplicate of https://support.mozilla.com/en-US/questions/781287

    Sorry but this phone is not compatible with the current mobile Firefox releases due to the ARMv6 (ARM11) CPU it uses when release work on ARMv7 cpu's.
    Also it needs the Android 2.1 update if you are still running 1.6
    You can perhaps try the experimental ARMv6 nightlies (Fennec).
    https://wiki.mozilla.org/Mobile/Platforms/Android#ARMv6_.28experimental.29

  • HT5312 I can't get a rescue email to reset my security questions. I clicked the link but there's no massages in my inbox alternate email. Help please :(

    I can't get a rescue email to reset my security questions. I clicked the link but there's no massages in my inbox alternate email. Help please :(

    You are checking your rescue email account - an alternate/secondary email address is a different setting/address on an iTunes account. If it's not in the spam nor inbox then you could try requesting it again, or contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699

  • When I log into hotmail, apple suggests thatI upgrade my browser, but when I click the link to so, apple just sends me a stream of promo copy and no means of requesting the upgrade.

    when I log into hotmail, apple suggests thatI upgrade my browser, but when I click the link to do so, apple just sends me a stream of promo copy and no means of requesting the upgrade.

    Hello lowellrich,
    Thanks for using Apple Support Communities.
    From your post it appears that you are getting a pop-up message that you need to upgrade your internet browser.  Likely this is an advertisement, as any updates to Safari are done through the software update in the App Store.  I'd like you to please check your preferences to ensure pop-ups are being blocked, and to also clear out the Safari data on your Mac.
    Security pane of Safari preferences - Safari Help
    Clear your browsing history - Safari Help
    Take care,
    Alex H.

Maybe you are looking for

  • How do I switch Apple ID users to get music from one computer to an iPad?

    My iPad doesn't let me change my Apple ID to let me sync music and I don't know if deleting the current account on the iPad will permanantly delete it, which I do not want to do....... How can I switch users without deleting the current one?

  • Issue in the  po

    Dear Expert There exist a return to vendor po for year 2007 , we want to close the  po for that we change the quanity to gr quanity but while saving the  po system is shooting an error message deletion not possible. Goods/invoice receipt not yet reve

  • Does ASA ezVPN support reactive primary vpn server feature

    hi, i am going to configure asa5505 as the azvpn client . and configre primay and secondary vpn server in the list. i find some feature that is support by ios ROUTER  ezvpn, not sure it will be support on ASA ezVPN??? Question? will the ezvpn   fall

  • Suggest pattern or any other alternative solution

    Hi, We would like to build on java application using API which client suppose to provide. But Client asked to used existing jdk API indirectly I mean use one wrapper in between. So going ahead if client provides his own API that time without much cha

  • HP G42 Notebook Windows 7 - continued to crash - now says Reboot Device not found.

    I have a HP G42 Notebook Laptop  Product Number - XZO46UA#ABA  It is a Windows 7 64 - bit PC    What it has been doing is Constantly Crashing and going to blue screens, and when you move the mouse to turn it on the fans ill be very loud, and at times