SafeNamedCache was explicitly released error

Hi there, we are using Coherence 3.7.1.1 within Weblogic 11.1.1.6.0
We have some Java code deployed on the server:
public Session create(User user) {
NamedCache sessionCache = CacheFactory.getCache(SESSION_CACHE_NAME);
Session session = new Session(user);
sessionCache.put(session.getSessionId(), session, getConfig().getSessionTTL());
CacheFactory.releaseCache(sessionCache);
return session;
Every now and again it fails on the sessionCache.put method (line 71) with SafeNamedCache was explicitly released.
Error stack:
SafeNamedCache was explicitly released</message> <ns2:stackTrace>
<ns2:frame class="com.tangosol.coherence.component.util.SafeNamedCache" file="SafeNamedCache.CDB" line="23" method="ensureRunningNamedCache"/>
<ns2:frame class="com.tangosol.coherence.component.util.SafeNamedCache" file="SafeNamedCache.CDB" line="1" method="getRunningNamedCache"/>
<ns2:frame class="com.tangosol.coherence.component.util.SafeNamedCache" file="SafeNamedCache.CDB" line="1" method="put"/>
<ns2:frame class="mywes.security.sessions.impl.SessionDao" file="SessionDao.java" line="71" method="create"/>
Any ideas why this would be happening? And what can be done to stop this from happening?
Regards
Robert

Hi,
I assume your code is running inside some sort of Web Application inside WebLogic and is therefore multi-threaded - that is, multiple threads could call this code at the same time. In that case it may be that something like this happens...
Thread 1: NamedCache sessionCache = CacheFactory.getCache(SESSION_CACHE_NAME);
Thread 2: NamedCache sessionCache = CacheFactory.getCache(SESSION_CACHE_NAME);
Thread 1: Session session = new Session(user);
Thread 2: Session session = new Session(user);
Thread 2: sessionCache.put(session.getSessionId(), session, getConfig().getSessionTTL());
Thread 2: CacheFactory.releaseCache(sessionCache);
Thread 1: sessionCache.put(session.getSessionId(), session, getConfig().getSessionTTL());
As the cache factory and cache are singletons inside Coherence if Thread 2 has called releaseCache before Thread 1 does the put then the put will fail as the cache has been released.
JK

Similar Messages

  • Java.lang.IllegalStateException: SafeNamedCache was explicitly released

    Is this a bug?
    Map (asdf): cache test
    &lt;distributed-scheme&gt;
    &lt;!--
    To use POF serialization for this partitioned service,
    uncomment the following section
    &lt;serializer&gt;
    &lt;class-
    name&gt;com.tangosol.io.pof.ConfigurablePofContext&lt;/class-
    name&gt;
    &lt;/serializer&gt;
    --&gt;
    &lt;scheme-name&gt;example-distributed&lt;/scheme-name&gt;
    &lt;service-name&gt;DistributedCache&lt;/service-name&gt;
    &lt;backing-map-scheme&gt;
    &lt;local-scheme&gt;
    &lt;scheme-ref&gt;example-binary-backing-map&lt;/scheme-ref&gt;
    &lt;/local-scheme&gt;
    &lt;/backing-map-scheme&gt;
    &lt;autostart&gt;true&lt;/autostart&gt;
    &lt;/distributed-scheme&gt;
    Map (test): put A alpha
    null
    Map (test): list
    A = alpha
    Map (test): destroy
    Map (test): list
    2009-01-20 13:27:30.012/112.098 Oracle Coherence GE 3.4.1/407 &lt;Error&gt; (thread=main, member=2):
    java.lang.IllegalStateException: SafeNamedCache was explicitly released
    at com.tangosol.coherence.component.util.SafeNamedCache.ensureRunningNamedCache(SafeNamedCache.CDB:23)
    at com.tangosol.coherence.component.util.SafeNamedCache.getRunningNamedCache(SafeNamedCache.CDB:1)
    at com.tangosol.coherence.component.util.SafeNamedCache.entrySet(SafeNamedCache.CDB:1)
    at com.tangosol.coherence.component.application.console.Coherence.doList(Coherence.CDB:71)
    at com.tangosol.coherence.component.application.console.Coherence.processCommand(Coherence.CDB:442)
    at com.tangosol.coherence.component.application.console.Coherence.run(Coherence.CDB:39)
    at com.tangosol.coherence.component.application.console.Coherence.main(Coherence.CDB:3)
    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.tangosol.net.CacheFactory.main(CacheFactory.java:1317)
    Map (test):

    Excuse me David.
    I got same problem developing a daemon (on the same coherence configuration) where i simply insert pof into cache and release. When at the same time (new instance of cache from Factory) call a get all values system crash with this stacktrace :
    [2011-09-09 14:39:56,969] [ERROR] [Paline-WebService-Client] - SafeNamedCache was explicitly released
    java.lang.IllegalStateException: SafeNamedCache was explicitly released
    at com.tangosol.coherence.component.util.SafeNamedCache.ensureRunningNamedCache(SafeNamedCache.CDB:23)
    at com.tangosol.coherence.component.util.SafeNamedCache.getRunningNamedCache(SafeNamedCache.CDB:1)
    at com.tangosol.coherence.component.util.SafeNamedCache.get(SafeNamedCache.CDB:1)
    at cotral.engine.live.bpengine.rpchandler.ControllerUtilities.printPalineStatus(ControllerUtilities.java:243)
    at cotral.engine.live.bpengine.rpchandler.PalineController.execute(PalineController.java:205)
    at cotral.engine.live.bpengine.rpchandler.PalineController.execute(PalineController.java:98)
    at org.apache.xmlrpc.XmlRpcServer$Worker.executeInternal(XmlRpcServer.java)
    at org.apache.xmlrpc.XmlRpcServer$Worker.execute(XmlRpcServer.java)
    at org.apache.xmlrpc.XmlRpcServer.execute(XmlRpcServer.java)
    at org.apache.xmlrpc.WebServer$Connection.run(WebServer.java)
    at org.apache.xmlrpc.WebServer$Runner.run(WebServer.java)
    at java.lang.Thread.run(Thread.java:619)
    Can you help me?

  • Is there any suggestion for the "SafeNamedCache was explicitly released"

    I deployed the coherence-java-3.6.0-java on red had with core 2.6.18 with 64 bit.
    Then the deployed the coherence-3.6.0-cpp on the same manchine and complied the example "hellogrid" and it works ok . No any error .
    My requirement is to integrate the Coherence into the Nginx0.7.62 for my web server . And i wrote a thread pool for the NameCache::handle and get a newly hendle after a 5 seconds just because of the error "was explicitly released" . But it is not useful for solving the problem .
    Anybody please give me a suggestion for the root cause of this problem .
    Thanks .
    And the configurate as follows which are all copied from the configurate file for the example "hellogrid"(coherence-cpp/examples/config/extend-server-config.xml and coherence-cpp/examples/config/extend-cache-config.xml):
    extend-server-config.xm:
    <?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
    <defaults>
    <serializer>pof</serializer>
    </defaults>
    <caching-scheme-mapping>
    <cache-mapping>
    <cache-name>dist-*</cache-name>
    <scheme-name>example-distributed</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>repl-*</cache-name>
    <scheme-name>example-replicated</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>local-*</cache-name>
    <scheme-name>example-local</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>*</cache-name>
    <scheme-name>example-distributed</scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <distributed-scheme>
    <scheme-name>example-distributed</scheme-name>
    <service-name>DistributedCache</service-name>
    <lease-granularity>member</lease-granularity>
    <backing-map-scheme>
    <local-scheme/>
    </backing-map-scheme>
    <autostart>true</autostart>
    </distributed-scheme>
    <replicated-scheme>
    <scheme-name>example-replicated</scheme-name>
    <service-name>ReplicatedCache</service-name>
    <lease-granularity>member</lease-granularity>
    <backing-map-scheme>
    <local-scheme/>
    </backing-map-scheme>
    <autostart>true</autostart>
    </replicated-scheme>
    <local-scheme>
    <scheme-name>example-local</scheme-name>
    </local-scheme>
    <invocation-scheme>
    <scheme-name>example-invocation</scheme-name>
    <service-name>InvocationService</service-name>
    <autostart>true</autostart>
    </invocation-scheme>
    <proxy-scheme>
    <scheme-name>example-proxy</scheme-name>
    <service-name>ProxyService</service-name>
    <thread-count system-property="tangosol.coherence.extend.threads">2</thread-count>
    <acceptor-config>
    <tcp-acceptor>
    <local-address>
    <address system-property="tangosol.coherence.extend.address">localhost</address>
    <port system-property="tangosol.coherence.extend.port">9099</port>
    </local-address>
    </tcp-acceptor>
    <outgoing-message-handler>
    <request-timeout>5s</request-timeout>
    </outgoing-message-handler>
    </acceptor-config>
    <autostart>true</autostart>
    </proxy-scheme>
    </caching-schemes>
    </cache-config>
    extend-cache-config.xml:
    <?xml version="1.0"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
    <defaults>
    <serializer>pof</serializer>
    </defaults>
    <caching-scheme-mapping>
    <cache-mapping>
    <cache-name>local-*</cache-name>
    <scheme-name>local-example</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>near-*</cache-name>
    <scheme-name>near-example</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>dist-*</cache-name>
    <scheme-name>extend-dist</scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <local-scheme>
    <scheme-name>local-example</scheme-name>
    </local-scheme>
    <near-scheme>
    <scheme-name>near-example</scheme-name>
    <front-scheme>
    <local-scheme>
    <high-units>100</high-units>
    <expiry-delay>1m</expiry-delay>
    </local-scheme>
    </front-scheme>
    <back-scheme>
    <remote-cache-scheme>
    <scheme-ref>extend-dist</scheme-ref>
    </remote-cache-scheme>
    </back-scheme>
    <invalidation-strategy>auto</invalidation-strategy>
    </near-scheme>
    <remote-cache-scheme>
    <scheme-name>extend-dist</scheme-name>
    <service-name>ExtendTcpCacheService</service-name>
    <initiator-config>
    <tcp-initiator>
    <remote-addresses>
    <socket-address>
    <address system-property="tangosol.coherence.proxy.address">localhost</address>
    <port system-property="tangosol.coherence.proxy.port">9099</port>
    </socket-address>
    <socket-address>
    <address system-property="tangosol.coherence.proxy.address">127.0.0.1</address>
    <port system-property="tangosol.coherence.proxy.port">9099</port>
    </socket-address>
    <socket-address>
    <address system-property="tangosol.coherence.proxy.address">172.16.1.23</address>
    <port system-property="tangosol.coherence.proxy.port">9099</port>
    </socket-address>
    </remote-addresses>
    <connect-timeout>10s</connect-timeout>
    </tcp-initiator>
    <outgoing-message-handler>
    <request-timeout>5s</request-timeout>
    </outgoing-message-handler>
    </initiator-config>
    </remote-cache-scheme>
    </caching-schemes>
    </cache-config>
    Anyone who knows the root cause please tell me . Thanks .

    The original error shown in the console of the Coherence server as follows :
    2010-11-23 22:27:33.742/1566.313 Oracle Coherence GE 3.6.0.0 <D5> (thread=Proxy:ProxyService:TcpAcceptorWorker:0, member=1): An exce
    ption occurred while processing a PutRequest for Service=Proxy:ProxyService:TcpAcceptor: java.lang.IllegalStateException: SafeNamedC
    ache was explicitly released
    at com.tangosol.coherence.component.util.SafeNamedCache.ensureRunningNamedCache(SafeNamedCache.CDB:23)
    at com.tangosol.coherence.component.util.SafeNamedCache.getRunningNamedCache(SafeNamedCache.CDB:1)
    at com.tangosol.coherence.component.util.SafeNamedCache.put(SafeNamedCache.CDB:1)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.put$Router(NamedCacheProxy.CDB:1)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.put(NamedCacheProxy.CDB:2)
    at com.tangosol.coherence.component.net.extend.messageFactory.NamedCacheFactory$PutRequest.onRun(NamedCacheFactory.CDB:6)
    at com.tangosol.coherence.component.net.extend.message.Request.run(Request.CDB:4)
    at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.onMessage(NamedCacheProxy.CDB:11)
    at com.tangosol.coherence.component.net.extend.Channel.execute(Channel.CDB:39)
    at com.tangosol.coherence.component.net.extend.Channel.receive(Channel.CDB:26)
    at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer$DaemonPool$WrapperTask.run(Peer.CDB:9)
    at com.tangosol.coherence.component.util.DaemonPool$WrapperTask.run(DaemonPool.CDB:32)
    at com.tangosol.coherence.component.util.DaemonPool$Daemon.onNotify(DaemonPool.CDB:63)
    at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    at java.lang.Thread.run(Thread.java:619)
    It is shown again and again for any operation before the Coherence server is restart.

  • Portable(java.lang.IllegalStateException): SafeNamedCache was exexplicitly

    Hi All,
    I have seen similar post in this forum, but this error looks bit different than the old post.
    This is the log on the TCP Node.
    INFO | jvm 1 | 2011/11/17 20:30:05 | 2011-11-17 20:30:05.758/92113.566 Oracle Coherence GE 3.6.1.5 <D5> (thread=Proxy:pof-remote-proxy-service:TcpAcceptorWorker:6, memb
    er=78): An exception occurred while processing a GetAllRequest for Service=Proxy:pof-remote-proxy-service:TcpAcceptor: java.lang.IllegalStateException: SafeNamedCache was ex
    plicitly released
    INFO | jvm 1 | 2011/11/17 20:30:05 | at com.tangosol.coherence.component.util.SafeNamedCache.ensureRunningNamedCache(SafeNamedCache.CDB:23)
    INFO | jvm 1 | 2011/11/17 20:30:05 | at com.tangosol.coherence.component.util.SafeNamedCache.getRunningNamedCache(SafeNamedCache.CDB:1)
    INFO | jvm 1 | 2011/11/17 20:30:05 | at com.tangosol.coherence.component.util.SafeNamedCache.getAll(SafeNamedCache.CDB:1)
    INFO | jvm 1 | 2011/11/17 20:30:05 | at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.getAll(NamedCacheProxy.CDB:1)
    INFO | jvm 1 | 2011/11/17 20:30:05 | at com.tangosol.coherence.component.net.extend.messageFactory.NamedCacheFactory$GetAllRequest.onRun(NamedCacheFactory.CDB:6)
    INFO | jvm 1 | 2011/11/17 20:30:05 | at com.tangosol.coherence.component.net.extend.message.Request.run(Request.CDB:4)
    INFO | jvm 1 | 2011/11/17 20:30:05 | at com.tangosol.coherence.component.net.extend.proxy.NamedCacheProxy.onMessage(NamedCacheProxy.CDB:11)
    INFO | jvm 1 | 2011/11/17 20:30:05 | at com.tangosol.coherence.component.net.extend.Channel.execute(Channel.CDB:39)
    INFO | jvm 1 | 2011/11/17 20:30:05 | at com.tangosol.coherence.component.net.extend.Channel.receive(Channel.CDB:26)
    INFO | jvm 1 | 2011/11/17 20:30:05 | at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer$DaemonPool$WrapperTask.run(Peer.CDB:9)
    INFO | jvm 1 | 2011/11/17 20:30:05 | at com.tangosol.coherence.component.util.DaemonPool$WrapperTask.run(DaemonPool.CDB:32)
    INFO | jvm 1 | 2011/11/17 20:30:05 | at com.tangosol.coherence.component.util.DaemonPool$Daemon.onNotify(DaemonPool.CDB:63)
    INFO | jvm 1 | 2011/11/17 20:30:05 | at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
    INFO | jvm 1 | 2011/11/17 20:30:05 | at java.lang.Thread.run(Thread.java:619)
    This is the log on the client ( which is a compute grid)
    Caused by: Portable(java.lang.IllegalStateException): SafeNamedCache was explicitly released
         at com.tangosol.io.pof.ThrowablePofSerializer.deserialize(ThrowablePofSerializer.java:57)
         at com.tangosol.io.pof.PofBufferReader.readAsObject(PofBufferReader.java:3306)
         at com.tangosol.io.pof.PofBufferReader.readObject(PofBufferReader.java:2603)
         at com.tangosol.coherence.component.net.extend.message.Response.readExternal(Response.CDB:20)
         at com.tangosol.coherence.component.net.extend.Codec.decode(Codec.CDB:29)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer.decodeMessage(Peer.CDB:25)
         at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer.onNotify(Peer.CDB:54)
         at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
         at java.lang.Thread.run(Thread.java:619)
    what Causes this Exception ? Why would the SafeNamedCache be released on the TCP-Proxy Node ?
    what could be the reason for TCP-Proxy node releasing the SafeNamedCahce - I checked the status of the underlyig cache service and it is running fine.
    Any pointers/help is highly appreciated.
    Regards
    S

    Hi S
    Someone have made a call to NamedCache.release(). Have a look at your code to ensure that there is no calls to this method.
    Thanks
    /Charlie

  • This method should not be called anymore. The client was already released i

    Hi,
    while configuring Business Packager for Projects 50.3 fo, we made few changes in R/3 side as per the documentation. after that we are getting following error in portal
    "This method should not be called anymore. The client was already released into the pool or the pool entry was deleted"
    all the chages were reverted in R/3 system still we are getting the same error.
    Can any one help on this issue....
    Thanks in advance and for early responce higher marks would be awarded!!!..     
    Regards
    Ravi Sankar Karri

    Hi,
    Well there were errors in how stop works:
    "Stopping a thread with Thread.stop causes it to
    unlock all of the monitors that it has locked (as a
    natural consequence of the unchecked ThreadDeath
    exception propagating up the stack). If any of the
    objects previously protected by these monitors were in
    an inconsistent state, the damaged objects become
    visible to other threads, potentially resulting in
    arbitrary behavior. "
    I do understand that you want to have something like
    killTheTreadIDontCareAboutConcequences-method, but
    it's better to let all your methods that you want to
    be able to terminate take a timeout argument, and deal
    with the termination in the method. (Close the
    sockets/streams etc that you are blocking on).
    /KajThe point is, it is not always possible to make those blocking methods stop, via some magic "timeout" thingamabob. The bottom line is still that the blocking methods were written incorrectly to begin with (to possibly block indefinitely), so one cannot come up with an across-the-board solution, other than getting the root cause fixed in the first place. However, one is not always in control of fixing the root cause.

  • AdfFacesContext was already released or had never been attached JSP v. JSPX

    This error is occuring on JSPX pages but not on JSP pages and only when I deploy the application to Oracle 10gAS 10.1.2. The problem does not normally present itself in JDeveloper (10.1.3). I had tried moving all my pages to the JSP form but found that some ADF components did not behave well < af: table > being a major problem. So I now have some pages in the JSP and some in JSPX. JSP (to avoid this problem) when the page does not include a table and otherwise a JSPX page.
    This message appears at the foot of the page and does not otherwise seem to prevent the page from operating. Okay for now but hardly client deliverable. The page contains two < af: table > elements nexted in < af: showDetail > elements of an outer < af: showOneTab > element
    java.lang.IllegalStateException: AdfFacesContext was already released or had never been attached.     
    at oracle.adf.view.faces.context.AdfFacesContext.release(AdfFacesContext.java: 320)
    at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java: 240)
    at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java: 8     
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java: 645)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java: 322)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java: 790)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java: 208)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java: 125)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java: 192)
    at java.lang.Thread.run(Thread.java: 534)
    The page (greatly simplified) is as follows:
    < ?xml version="1.0" encoding="iso-8859-1"? >
    < jsp: root >
    < jsp: directive.page contentType="text/html;charset=utf-8"/ >
    < f: loadBundle / >
    < f: view >
    < af: document >
    < af: form >
    < af: panelPage >
    < f: facet name="messages" >
    < af: messages/ >
    < /f: facet >
    < jsp: directive.include file="GlobalFacet.jspf"/ >
    < f: facet name="menu1" >
    < af: menuTabs >
    < af: commandMenuItem / >
    < /af: menuTabs >
    < /f: facet >
    < jsp: directive.include file="BrandingFacet.jspf"/ >
    < af: showOneTab position="both" >
    < af: showDetailItem >
    < af: panelGroup >
    < af: table >
    < af: column width="50" sortable="true" sortProperty="groupName" >
    < f: facet name="header" >
    < af: outputText value="Group name"/ >
    < /f: facet >
    < af: outputText value="#{groupRow.groupName}" / >
    < /af: column >
    < f: facet name="detailStamp" >
    < afh: tableLayout >
    < afh: rowLayout >
    < afh: cellFormat >
    < af: outputLabel / >
    < /afh: cellFormat >
    < afh: cellFormat >
    < af: inputText / >/ >
    < /afh: cellFormat >
    ... many more cells and rows
    < /afh: rowLayout >
    < afh: rowLayout halign="center" >
    < afh: cellFormat halign="center" >
    < af: commandButton rendered="#{bean.condition} / >
    < af: commandButton rendered="#{!bean.condition} / >
    < /afh: cellFormat >
    < /afh: rowLayout >
    < /afh: tableLayout >
    < /f: facet >
    < /af: table >
    < /af: panelGroup >
    < /af: showDetailItem >
    < af: showDetailItem >
    ... Something almost identical to the first DetailItem but for a different table
    < /af: showDetailItem >
    < /af: showOneTab >
    < /af: panelPage >
    < /af: form >
    < /af: document >
    < /f: view >
    < /jsp: root >
    Note: I'm posting a separate item about the fact that when I deploy this application to 10g AS (10.1.2) the < jsp: directive.include > tag does not work.

    Same probleme here but with both jsp and jspx
    I'm using jdev 10.1.3 with jdk1.4.2_08, in a war file deployed to a weblogic 8.1 sp 5 application server.
    It happens everytime (on every jsp) in the weblogic console and sometimes the jsp crashes and give me this error:
    java.lang.IllegalStateException: AdfFacesContext was already released or had never been attached.
         at oracle.adf.view.faces.context.AdfFacesContext.release()V(AdfFacesContext.java:342)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V(AdfFacesFilterImpl.java:253)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;Ljavax/servlet/FilterChain;)V(AdfFacesFilter.java:87)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(Ljavax/servlet/ServletRequest;Ljavax/servlet/ServletResponse;)V(FilterChainImpl.java:27)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run()Ljava/lang/Object;(WebAppServletContext.java:6987)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Lweblogic/security/subject/AbstractSubject;Ljava/security/PrivilegedAction;)Ljava/lang/Object;(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Lweblogic/security/acl/internal/AuthenticatedSubject;Lweblogic/security/acl/internal/AuthenticatedSubject;Ljava/security/PrivilegedAction;)Ljava/lang/Object;(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(Lweblogic/servlet/internal/ServletRequestImpl;Lweblogic/servlet/internal/ServletResponseImpl;)V(WebAppServletContext.java:3892)
         at weblogic.servlet.internal.ServletRequestImpl.execute(Lweblogic/kernel/ExecuteThread;)V(ServletRequestImpl.java:2766)
         at weblogic.kernel.ExecuteThread.execute(Lweblogic/kernel/ExecuteRequest;)V(ExecuteThread.java:224)
         at weblogic.kernel.ExecuteThread.run()V(ExecuteThread.java:183)
         at java.lang.Thread.startThreadFromVM(Ljava/lang/Thread;)V(Unknown Source)
    any suggestion is welcome
    thanks
    Message was edited by:
    xavier.l

  • Proposal has been sheduled, job was not released

    Dear Fi Experts,
    In F110- Automatic payment process, while creating proposal the system throwing error
    Proposal has been shedulded 03.03.11 10:06:27
    Job was not released
    Parameters maintained in the prosal is correct, payment method, vendor balance  and additional log
    while saving the prosal  system throwing the error. Same i tried in the quality server its working fine.
    Can you explain why it happens?
    Thanks and Regards
    J.Francis

    Hi J. Francis,
    It can be some authorization issue, I recommend you to check this with your basis team.
    Also check these authorization objects:
    S_CTS_ADMI
    S_BTCH_ADM
    I hope I could be of assistance.
    Kind Regards,
    Fernando Evangelista

  • PO release error

    Hi All,
    I was gonna release PO at ME28, but it didn't work.
    I found the error message, " Express document "Update was terminated" received from author".
    I can find this message for only one vendor, the PO for other vendors has no problem.
    I don't know how to handle it.
    Please let me knw how to resolve it.
    Thanks,
    Jake

    Hi,
    Usually this message occours when the number range for some document is exahusted. This error is related to updation of tables. If system is not able to update the required tables then it gives this messge.
    Contact your basis admin and they will be able to tell you the exact reason.
    Regards,
    Vishal

  • Hello, I come to update the iTunes software it shows me an error 20 How do I solve this After I was once an error 13 appears. And that's just Mac Air. I would like to get an answer because it annoys me that it happens ...!  Nimrod

    Hello,
    I come to update the iTunes software it shows me an error 20 How do I solve this After I was once an error 13 appears.
    And that's just Mac Air. I would like to get an answer because it annoys me that it happens ...!
    Nimrod

    Thanks for that information!
    I'm sure I will be calling AppleCare, but the problem is, they charge for the phone calls don't they? Because I don't have money to be spending to be on the phone with a support service.
    In other things, it seemed like the only time my MacBook was working was when I had Snow Leopard without the 10.6.8 update download that was supposed to be done to prepare for OS X Lion.
    When I look at the information of my HD it says that I have 10.6.8 but that was the install that it claimed to have failed and caused me to restart resulting in all of the repeated problems.
    Also, because my computer is currently down, and I've lost all files how would that effect the use of my iPhone? Because if it doesn't get fixed by the time OS 5 is released, how would I be able to upgrade?!

  • 'dimension attribute was not found' error while refresing the cube in Excel

    Dear All,
    Thanks for all your support and help.
    I need an urgent support from you as I am stuck up here from nearly past 2-3 days and not getting a clue on it.
    I have re-named a dimension attribute 'XX' to 'xx' (Caps to small)in my cube and cleared all dependencies (In Attribute relationship tab as well).
    But while refreshing the data in excel client (of course after processing the full cube) I get an error
    'Query (1, 1911) the [Dimension Name].[Hierarchy Name].[Level Name].[XX] dimension attribute was not found' error.
    Here I am trying to re-fresh an existing report without any changes with the new data.
    Does not it re-fresh automatically if we clear the dependencies or there something that I am missing here (Like order of the dependencies).
    Cube processed completely after modifications and able to create new reports without any issues for same data. What else could be the reason?
    Can some one help me here?
    Thanks in Advance and Regards,

    Thnaks alot Vikram,
    In se11  ,when i was trying to activate the  /BIC/FZBKUPC , it is showing the warnings  like
    Key field KEY_ZBKUPCP has num. type INT4: Buffering not possible, Transport restricted.What it means.
    In PErformance Window it is showing like:
    A numeric type was used for a key field. A table of this sort cannot be buffered.When buffering, the table records for numeric values cannot be stored in plain text.
    Procedure
    You can enter "no buffering" as an attribute of the technical settings and then repeat the activation process. The table is not buffered.
    If you want to buffer the table, you must replace the type in the key field by a character type, i.e. that you must modify the table.
    Please adivice with your valueable suggestyions.
    Thanks Vikram.

  • I tried updating to itunes 10.5 and now when i try to open itunes i get a message saying "Apple application support was not found" error 2 (windows error 2)

    Ok so I went to update my itunes 9 to itunes 10.5 and now I get and error message "Apple application support was not found" error 2 (windows error 2) when ever I try to run itunes and iv been trying to fix this for like a month and let me tell you iTunes for windows is **** and I really want Icloud for my iphone 4 and yes iv tried uninstalling everything by apple in the correct order and reinstalling them after restart atleast honestly 20 - 30 times but nothing worked so if anyone can please help me I have windows 7 and a hp intel pentium computer 

    Install 7-Zip (free), or a free trial of WinRAR, and use one of them to extract the contents of the iTunesSetup.exe or iTunesSetup64.exe installer file, then try installing AppleApplicationSupport.msi as a standalone component. Even if it won't install you may get a more useful error message as to why not.
    tt2

  • I was geting an error message and now I have nothing on itunes. Does anyone know how I can recover my music, apps, and so on??, I was geting an error message and now I have nothing on itunes. Does anyone know how I can recover my music, apps, and so on??

    I got a new Ipad today and I was using itunes to manage the content and sync the apps (I also have an ipod and an iphone) and I was getting an error message when using the search. All of a suden I was going to sync the ipad and I get the message saying that the library from itunes is empty!!!
    I still have my apps in the ipad and the iphone, but nothing on itunes. Do you know how I can recover itunes?

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • My iPad2 Apple logo (the blue box with a capital A) was deleted in error. I would like to know how to replace it or get it back.  Thanks so much . . .

    My iPad2 Apple logo (the blue box with a capital A) was deleted in error. I would like to know how to replace it or get it back.  Thanks so much . . .

    Do you mean the App Store app on your iPad ? If you do then it can't be deleted, but you might have hidden it via Settings > General > Restrictions > Installing Apps 'off' - if that is 'off' then turn it back 'on' and the app should show on one of your iPad's home screens again

  • Creating project as Disc Image after 1 1/2 hours it appeared to be finished but there was message that there was a multiplex error.  Checked and no yellow triangles, music on computer,  any ideas.

    Creating project as Disc Image after 1 1/2 hours it appeared to be finished but there was message that there was a multiplex error.  Checked and no yellow triangles, music on computer, and all resources on computer,  any ideas??

    Hi
    And
    • free space on Start-Up hard disk ? How Much ?
    • Brand and type of DVD used
    • Burn Speed ?
    • Did You try to first do a "Save as a DiskImage" ? If so - Did it work ?
    Yours Bengt W

  • When I try to install Itunes, I get this error: (translated from Norwegian) There was a network error while trying to read from the file: C: \ windows \ installer \ iTunes.msi I have tried many times to reinstall, but nothing helps, please help me.

    When I try to install Itunes, I get this error: (translated from Norwegian) There was a network error while trying to read from the file: C: \ windows \ installer \ iTunes.msi I have tried many times to reinstall, but nothing helps, please help me.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

Maybe you are looking for

  • Error in psa level - Request not updated to any data target using delta

    Hi, This is pavan and am facing this issue any one know for below issue to solve. Data Flow is BW Version and Implemented in BI  7.20 version.The issue was data has come to psa level but from here it is not updated to infocube so for that i have trie

  • Found use for old 500MHz G3 iBook

    After too many failures trying to get my iWeb created website uploaded to my iDisk I now host it at home with the help of no-ip.com. And it works rather well, My setup is all wireless so the iBook is in the spare bedroom, actually under the bed. No p

  • Java script with jsp

    hello friends,. please help me !! May i know how to retrieve values from list box in java script to jsp and store them in database..i am doing a project Employee Management system.... please give me ideas .....

  • Change header name

    Hi,   I am displaying traffic light signal using alv_grid_display.   In output it's showing header name 'Exception' for traffic light.   I want to change header name 'Exception' to 'Signal'.      Plz help me.

  • Pager Settings in sap

    Hi experts, I am using ECC 6.0 with Sql Server 2005, I have to create pager settings on my ecc 6.0 to receive messages on mobile phone through SAP. Can anyone giude me. how to do that? thanks in advance Regards Akshit sharma