proxyInterface on JndiObjectFactoryBean fails on WL 6.1
We need lazy loading of our queue connection factory.
Setting 'lookupOnStartup' to false and 'proxyInterface' to javax.jms.QueueConnectionFactory on our JndiObjectFactoryBean does not work.
The reason for this is that Weblogic checks that the factory is an instance of the Weblogic factory implementation. Since the instance is actually a Spring generated proxy it is rejected by WL as a 'foreign' factory.
Does anybody know if its possible to make the proxy an instance of the actual Weblogic class (like the 'proxyTargetClass' attribute does for the ProxyFactoryBean)?