weblogic « Session « Java Enterprise Q&A





1. Should MDB call remove() after using stateless session bean?    stackoverflow.com

Our years-old WebLogic J2EE application has a message-driven bean which makes use of a stateless session bean. The MDB onMessage method gets the home interface of the stateless session bean ...

2. HTTP Session Timeout with WebLogic    stackoverflow.com

How do I find the HTTP timeout set on the WebLogic 8.1 application server?

3. Weblogic Apache plugin and session stickiness    stackoverflow.com

If two webserver are configured in between a load balancer and weblogic cluster, will the two Apache server maintain session stickiness.?? Say for e.g. the load balancer forwards the first request ...

4. Modifying Java classes at runtime to make instance fields transient -- will it work?    stackoverflow.com

We have an annoying log message coming from Weblogic whenever we invalidate the HTTPSession when it has objects that are not serializable (which we don't care about but which is polluting ...

5. Using Jersey Client inside EJB 3 stateless session bean on Weblogic    stackoverflow.com

I am using Jersey client inside a EJB 3 stateless session bean. I can deploy the EJB project on Weblogic 11g. But when I try to look up the bean from ...

6. invalidating session across all application in weblogic 11g    stackoverflow.com

I am new to weblogic and am porting over a series of web applications from jboss. I have multiple war's that I deploy to the same weblogic server. All of them ...

7. Weblogic session cookie is changing primary and secondary servers    stackoverflow.com

We have weblogic set up in a 2 managed server cluster. Requests go through a load balancer that (supposedly) has been configured for sticky sessions. However, our requests are getting bounced ...

8. Problem with sessions on weblogic    stackoverflow.com

i've faced a strange problem with weblogic. One of our workstations hosts 2 weblogic instances. The problem is when i log in to one of them, session on another automatically expires ...

9. Deserialize wl_session_values weblogic session    stackoverflow.com

i need to user JDBC persistance for managing server session. and now i need to turn session value (saved in wl_session_values) into a real object. bellow i write my code :

try ...





10. Session Replication in Programming (Weblogic & Java)    stackoverflow.com

I would like to know if the object calling the session.setAttribute or session.getAttribute should be also needed to implement the "java.io.Serializable" in order to support the session replication? for example
the class User ...

11. Non standard session sharing mechanism in weblogic?    stackoverflow.com

If two web applications need to share classes and session objects, there are two ways to do it First Package both web applications in EAR, then either 1. Have shared classes in ...

12. How to Read Session Timeout value    stackoverflow.com

My homepage of website contains periodic ajax requests, due to which the session does not time out. Referring to http://ajaxpatterns.org/Timeout I decided to use timer and event (like mousemovement ...

13. Weblogic 10.3 Session Not timeout    stackoverflow.com

I did upgrade Weblogic from version6 to version 10. Weblogic is configured replicated_if_cluster with 2 servers, and using "multicast" for communications between clusters. But Sessions never times out, even though ...

14. Dual Session management using weblogic application server.    coderanch.com

The best way would to maintain session in a database that both application servers have access to. So that when the user hits the first app server they get a unique session id that is maintained in the db and when they hit the second app server the unique id is passed to the second app server to look up the ...

15. Session problem in Enterprise Java / Weblogic application    coderanch.com

Background: we are using session variables in our enterprise java application running Weblogic application server. Issue: When we have more than one browser open in the same PC there is session variable conflict. Example: 1) Variable v1 of browser b1 has state X. 2) We open browser b2 and run the application, the variable v1 has session Y. 3) We come ...

16. Portlet question- session.invalidate()- with weblogic    forums.oracle.com

Guys: Has anyone had a issue with session.invalidate() using weblogic 8.1. we have vignette and weblogic 8.1. the problem i have noticed is session.getId retunrns a extra timestamp string in the end. And i am thinking since this changes the entire sessionid, it does not get invalidated. I tried adjusting the weblogic.xml's idlength session-param to 52 but this still happens after ...