Thanks Michael,
i have not found the thread i mentioned above. I explicitly refer to chapter 11.1.3. When i try to pass the var variable(fan) of a datatable to a method, then a null value is passed.
This behaviour is consistent with seam docu(1.3.0Alpha)anonymous wrote : Note: You can not pass objects as arguments! All that is passed is names,[...] If the arguments can not be resolved at that time (because hotel and user variables can not be found in any available context) the action method will be called with null arguments!
The var variable is not present in any scope, so null must be passed.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055884#4055884
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055884
I have a normal MDB defined like:
| @MessageDriven(activationConfig = {
| @ActivationConfigProperty(propertyName="destinationType", propertyValue="javax.jms.Topic")
| ,@ActivationConfigProperty(propertyName="destination", propertyValue="/topic/testTopic")
| })
| public class MyMdb implements MessageDrivenBean, MessageListener {
| ......
| }
|
It works fine with the default destination (on JBoss Messaging 1.3 GA). Now, I want to access a secured topic(remote) which has been set correctly if I use "testUser" and "testPassword" to access it locally (on remote box)
What's the keyword of the propertyName that I can specify the identity to my MDB? I've been searching around but can't any piece of information regarding this issue. Please help!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4055874#4055874
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4055874