Is this what you mean:
| /*
| * Add user specified activation-config. These may be overridden if one of:
| * - destination
| * - providerAdapterJNDI
| * - destinationType
| * - messageSelector
| * - maxMessages
| */
| ActivationConfig activationConfig = jmsJcaProvider.getActivationConfig();
| if ( activationConfig != null )
| {
| List<Property> propertyList = activationConfig.getPropertyList();
| for (Iterator<Property> iterator = propertyList.iterator();
iterator.hasNext();)
| {
| Property prop = iterator.next();
| addPropertyElement(activationConfigElement, prop.getName(), prop.getValue())
;
| }
| }
| ...
| set the other config properties
| ...
|
I'll update the jms_transacted quickstart after it is merged back into the main
trunk.
/Daniel
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4132548#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...