thanks for your very quick reply ...
actualy, I'm stuck as I don't know what to put instead of the 'org.activemq.ra.ActiveMQResourceAdapter' to configure the JCAContainer as in the following example :
<bean id="jencks" class="org.jencks.JCAContainer">
<!-- lets use the default configuration of work manager and transaction manager-->
<property name= "bootstrapContext">
<bean class="org.jencks.factory.BootstrapContextFactoryBean">
<property name="threadPoolSize" value="25"/>
</bean>
</property>
<!-- the JCA Resource Adapter -->
<property name="resourceAdapter" >
<bean id="activeMQResourceAdapter" class="org.activemq.ra.ActiveMQResourceAdapter">
<property name="serverUrl" value="tcp://localhost:51616"/>
</bean>
</property>
</bean>
can you explain me a little bt how it works ?
thanks,
Frédérick
On 11/8/05, James Strachan <[EMAIL PROTECTED]> wrote:
Jencks works with any JCA Resource Adaptors. So provided that the weblogic RAs are relatively easy to configure in Spring, it should all just work. Ideally we'd get Jencks to reuse WL's BootstrapContext, WorkManager and TransactionManager too, but it can use the default Geronimo ones to get things working to start with.On 8 Nov 2005, at 13:54, Frederick Verbist wrote:Hi,
here we have some queues on a weblogic 9.0 server that I'd like to listen to using jenks.
is it possible ? or is it only possible with activemq ?
I'm not realy used to JCA so could you give me some advice on how to do this ?
