I am testing a J2EE application in a clustered Weblogic 10.3.5 environment. As described in http://download.oracle.com/docs/cd/E12840_01/wls/docs103/cluster/failover.html#wp1044561, I have configured the following in weblogic-ejb-jar.xml:
<stateless-clustering>
<home-is-clusterable>true</home-is-clusterable>
<stateless-bean-is-clusterable>true</stateless-bean-is-clusterable>
</stateless-clustering>
for each EJB (they are all stateless session beans).
How can I test that the EJBs are actually clustered ? That is, what changes should I look for with respect to not specifying the block ?