Hide Forgot
Description of problem: On deployment build 3 of csprocessor.war throws a datasource error. server.log excerpt and complete standalone.xml attached.
Created attachment 526360 [details] Server log excerpt
Created attachment 526361 [details] standalone.xml
Line 355: <driver name="mysql" module="com.mysql"/> in standalone.xml needs to be updated to include the xa-datasource class as below: <driver name="mysql" module="com.mysql"> <xa-datasource-class> com.mysql.jdbc.jdbc2.optional.MysqlXADataSource </xa-datasource-class> </driver>
That fixed it.