I was looking at the lastest 4.0.3 docs and it seems to indicate that
I should do this for my configuration:

<web-app ... xmlns:queue="urn:my-package-path">

...

<jms:JmsConnectionFactory />    
<jms:FileQueue> <queue:DeliveryQueue/>  <Named>delivery</Named> </jms:FileQueue>
<queue:DeliveryListener>        <resin:JmsListener destination="delivery"/>
</queue:DeliveryListener>

>From the docs here: http://caucho.com/resin/admin/candi.xtp#Custom%20Services

But there is no JmsListener class, and resin complains like this:

10-01-15 13:18:56.666] {main} WEB-INF/resin-web.xml:37:
'QName[resin:{urn:java:com.caucho.resin}JmsListener]' cannot be
instantiated because it does not map to a known class.

I wanted to replace the old style way with the new candi config. Here
is the old (working) style.

        <ejb-message-bean class="my-package-path.DeliveryListener">
                <destination>#{delivery}</destination>
        </ejb-message-bean>

This stuff seems pretty confusing and the docs seem to be misleading
and wrong. In addition there seems to be some missing pieces in making
the connections, even if the docs were correct.

What is the suggestion config here? Is there a more consise syntax
that I should be using?

Thanks in advance,
Scott


_______________________________________________
resin-interest mailing list
resin-interest@caucho.com
http://maillist.caucho.com/mailman/listinfo/resin-interest

Reply via email to