]
Steven Hawkins resolved TEIID-4306.
-----------------------------------
Resolution: Done
Merged the pull request.
xa datasource create cli not work due to datasource change in wildfly
10
------------------------------------------------------------------------
Key: TEIID-4306
URL:
https://issues.jboss.org/browse/TEIID-4306
Project: Teiid
Issue Type: Quality Risk
Components: JDBC Connector
Affects Versions: 9.1
Reporter: Kylin Soong
Assignee: Kylin Soong
Fix For: 9.1
Due to the change of datasource in wildfly 10, create xa datasource cli like
{code}
/subsystem=datasources/xa-data-source=oracleXADS:add(jndi-name="${db.jndi_name}",
driver-name=oracleXA, user-name="${db.user}",
password="${db.password}", use-java-context=true)
{code}
It throw the following error
{code}
{
"outcome" => "failed",
"failure-description" => "WFLYJCA0069: At least one
xa-datasource-property is required for an xa-datasource",
"rolled-back" => true
}
{code}
This affects to the following cli scripts:
* db2/create-db2-xa-ds.cli
* mysql/create-mysql-xa-ds.cli
* oracle/create-oracle-xa-ds.cli
* postgresql/create-postgresql-xa-ds.cli
* sqlserver/native/create-ms-native-xa-ds.cli
* sqlserver/jtds/create-jtds-xa-ds.cli
* teiid/create-teiid-xa-ds.cli