It's a bug in the new deployer. It was constructing but not adding the URLProperty
to the MCF properties.
Fixed:
| [ejort@warjort connector]$ svn diff
| Index: src/main/org/jboss/resource/metadata/mcf/XADataSourceDeploymentMetaData.java
| ===================================================================
| --- src/main/org/jboss/resource/metadata/mcf/XADataSourceDeploymentMetaData.java
(revision 72614)
| +++ src/main/org/jboss/resource/metadata/mcf/XADataSourceDeploymentMetaData.java
(working copy)
| @@ -162,6 +162,7 @@
| property.setName("URLProperty");
| property.setValue(getURLProperty());
| }
| + properties.add(property);
|
| return properties;
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4146131#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...