1. Can remote stateless session bean references be cached in EJB3? stackoverflow.comI am calling a remote stateless session bean from a J2SE application and would like to cache the reference to the session bean in order to reduce the cost of the ... |
2. How to store object (not string) in session in play framework? stackoverflow.comI have a project for school and I have to use Java. Recently I found play framework and I want to try to use it. It's easy enough for a quick ... |
3. Stateless session bean result caching? stackoverflow.comWe're running a Stateless Session Bean to retrieve some data from various locations. What's the best way to achieve caching for this SLSB ? Using interceptors ? Using JBossCache ? We're using JBoss 5.0.1. ... |
4. SSLSocketImpl.startHandshake() throws SSLHanshakeException/EOFException when resuming cached sessions stackoverflow.comUsing Apache FTPSClient to listFiles(String).... The aplication crashes sometimes after resuming an SSL Session and then calling sslSocketImpl.startHandshake() from the Apache FTPSClient code. I set javax.net.debug to print the ssl information... System.setProperty("javax.net.debug", ... |
5. can I use other distributed cache in place of jboss cache for session replication in jboss stackoverflow.comI am using jboss-cache for session replication in jboss 4.0.4. How do I use a different distributed cache(Terracotta or any other) in place of jboss cache? |
6. Cache and Session Management coderanch.comHi, I'm have a a bunch of pages which I navigate via logging into login page. I'm maintaining a session between those page. On the last page I submit the data. I want to clear the cache i.e after submitting the page I don't want to see the entered data in the pages while I press 'Back' button of the browser. ... |
7. Difference between Session and Cache coderanch.comA session would be used to track a user across the site. For example, once a user logs in then the roles and permissions associated with him can be stored in the session. For a shopping site, you may want to associate a shopping cart id with his session. A cache on the other hand would be used to make certain ... |