On 8 Nov 2005, at 14:13, Frederick Verbist wrote:
Hi James,

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 :

It'll be some kinda com.bea.**ResourceAdaptor class; though I've no idea what it is :)

See if your IDE can find all the classes on your classpath which implement javax.resource.spi.ResourceAdaptor when you've the weblogic jars on your classpath.

James



<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>
or can I use that one ?
can you explain me a little bt how it works ?

thanks,

Frédérick


On 11/8/05, James Strachan <[EMAIL PROTECTED]> wrote:
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 ?

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.

James
-------
http://radio.weblogs.com/0112098/




James
-------
http://radio.weblogs.com/0112098/

Reply via email to