vote up 2 vote down star

Is there a way to deactivate the optimization for collocated objects that Weblogic uses by default for a specific EJB ?

EDIT: Some context :

We have a scheduler service that runs inside one node of the cluster. This is for historic reasons and cannot be changed at the moment.

This service makes call to an EJB and we would like to load balance these calls. Unfortunately at the moment every calls runs on the node that hosts the scheduler service because of the optimization mentioned in the question.

I was thinking of coding a custom load balancing class however this optimization seems to be done before the load balancing step happens.

flag

80% accept rate

4 Answers

vote up 0 vote down

There don't seem to be too many J2EE guys out here. you might want to try the BEA/ORACLE forums or the SUN forum

link|flag
vote up 0 vote down

Not being too familiar with guts of weblogic but reading their material I would say you cannot, without some amount of trickery.

It does seem though that you can put a JMS (MDB) facade in front of your EJB that does not abide by the collocated object optimization.

OR

If your scheduler is servlet based, you should be able to deploy it in a separate web-application within the container and have it execute calls to the EJB cluster.

link|flag
vote up 0 vote down

How many nodes are there in your cluster? Have you considered deploying the EJB to nodes other than the one the scheduler service has been deployed to?

link|flag
vote up 1 vote down

Supposing you are trying to call a remote EJB (load balancing on local ejbs can only be obtained through an indirection trick like Patrick mentioned) you will have to create a new InitialContext using the address of the cluster instead of a particular server. This new IC will provide stubs as if you were a foreign client, subject to the same load balancing strategies as they are.

Unfortunately, this means that EJB3 injections won't work. You will have to do the lookup yourself. There is a chance, an this is pure speculation, that those stubs you can get from the cluster IC are serializable. In other words, it might be possible to bind them and get them injected using @Resource afterwards.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.