Hi all,
I have a problem with our resource adapter resp. it's deploymen in JBoss 7.1.0.CR1b: the <config-property> tags are ignored. In the source code I've seen that the part handling these properties is commented; class org.jboss.as.connector.subsystems.resourceadapters.RaOperationUtil
...
public static ModifiableConnDef buildConnectionDefinitionObject(final OperationContext context, final ModelNode operation, final String poolName) throws OperationFailedException, ValidateException {
Map<String, String> configProperties = new HashMap<String, String>(0);
// if (operation.hasDefined(CONFIG_PROPERTIES.getName())) {
// configProperties = new HashMap<String, String>(operation.get(CONFIG_PROPERTIES.getName()).asList().size());
// for (ModelNode property : operation.get(CONFIG_PROPERTIES.getName()).asList()) {
....
Other is documented on https://docs.jboss.org/author/display/AS7/Resource+adapters
Could anybode explain why the connection properties no more supported?
Thanks