http://community.jboss.org/servlet/JiveServlet/downloadImage/11314/view_with_config.png
This is the view of the ManagedConnectionFactory defined in resource: notransaction.rar. There is only one config property defined in this resource.
For the WeakReference issue, I am sure the .rar resources have the managed connection factories defined, and they are deployed without prolbems after debugging, I will research more on this issue to figure out any clue.
For the config-property defined in the ManagedConnectionFactory, does any of the config-property definition in ra.xml match one instance variable in the ManagedConnectionFactory Java class? In the example:
<config-property> <config-property-name>myStringProperty</config-property-name> <config-property-type>java.lang.String</config-property-type> <config-property-value>JEFF</config-property-value></config-property>
there will be a method:
public String getMyStringProperty(){
return this.myStringProperty;
}
defined in the associated ManagedConnectionFactory or AdminObject class.
If so, how to do if we want to add new config-property using this plugin?