The problem, quite embarrassingly is that the xslt/code to build the deployment descriptor is intolerant of spaces. Therefore, the properties are not being seen correctly. You can see this if you look at the server.log:

2003-08-05 21:14:07,935 DEBUG [org.jboss.resource.connectionmanager.RARDeployment] setting property: XADataSourceProperties to value URL=
jdbc:oracle:thin:@localhost:1521:test


User=
      xxxxxx

Password=
      xxxxxx

URL=
      jdbc:oracle:thin:@localhost:1521:test

User=
      xxxxxx

Password=
      xxxxxx

You must specify the xa-datasource-property element values without any spaces:

    <xa-datasource-property name="URL">jdbc:oracle:thin:@localhost:1521:test</xa
-datasource-property>
    <xa-datasource-property name="User">xxx</xa-datasource-property>
    <xa-datasource-property name="Password">xxx</xa-datasource-property>

until this is fixed.

--
xxxxxxxxxxxxxxxxxxxxxxxx
Scott Stark
Chief Technology Officer
JBoss Group, LLC
xxxxxxxxxxxxxxxxxxxxxxxx

Wolfgang Helbig wrote:

This indicates you have specified a property:
<xa-datasource-property name="setjdbc">
...
</xa-datasource-property>

as the XAManagedConnectionFactory is just going through the datasource properties and applying them using the JavaBeans reflection pattern.
Post your complete *-ds.xml if that is that the case.




------------------------------------------------------- This SF.Net email sponsored by: Free pre-built ASP.NET sites including Data Reports, E-commerce, Portals, and Forums are available now. Download today and enter to win an XBOX or Visual Studio .NET. http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 _______________________________________________ JBoss-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to