- 
        1. Re: microsoft sql server configuration wildfly 14simkam Oct 24, 2018 6:15 AM (in response to surfspider)1 of 1 people found this helpfulHi, from your SO post. <xa-datasource-class>com.microsoft.sqlserver.jdbc.SQLServerDriver</xa-datasource-class>com.microsoft.sqlserver.jdbc.SQLServerDriver is java.sql.Driver implementation, not javax.sql.XADataSource implementation. Correct class is com.microsoft.sqlserver.jdbc.SQLServerXADataSource. 
- 
        2. Re: microsoft sql server configuration wildfly 14grossmeister_g Oct 24, 2018 6:30 AM (in response to surfspider)Hi, i had similar problems with the mysql driver. My configuration worked on Wildfly 9 and 13, but not on 14. Then i found this: WildFly-14: java.lang.ClassNotFoundException: com.mysql.jdbc.jdbc2.optional.MysqlXADataSource 
 When i removed the <xa-datasource-class>...</xa-datasource-class> tags and content, the AS started as expected.
- 
        3. Re: microsoft sql server configuration wildfly 14surfspider Oct 25, 2018 10:55 AM (in response to grossmeister_g)Hi, Thanks for the answers. I tried to add the correct SQLServerXADataSource class and i also tried to remove the <xa-datasource-class> tag from the <driver>-tag, both without success. The following configuration also don't work: <drivers> <driver name="h2" module="com.h2database.h2"> <xa-datasource-class>org.h2.jdbcx.JdbcDataSource</xa-datasource-class> </driver> <driver name="sqlserver" module="com.microsoft.sqlserver.jdbc"> <driver-class>com.microsoft.sqlserver.jdbc.SQLServerDriver</driver-class> <xa-datasource-class>com.microsoft.sqlserver.jdbc.SQLServerXADataSource</xa-datasource-class> <datasource-class>com.microsoft.sqlserver.jdbc.SQLServerDataSource</datasource-class> </driver> </drivers> I still get the error with the mssing dependencies (com.microsoft.sqlserver.jdbc). I can found the driver in the administration GUI (Configuration -> Subsystems -> Datasource & Drivers -> JDBC Driver), but the values for the fields 'driver version' and 'JDBC compliant' are missing. 
- 
        4. Re: microsoft sql server configuration wildfly 14simkam Oct 26, 2018 4:11 AM (in response to surfspider)Hi, do you have module with path <WILDFLY_HOME>/modules/com/microsoft/sqlserver/jdbc? What jars are there? Full path to main slot should be <WILDFLY_HOME>/modules/com/microsoft/sqlserver/jdbc/main. What is the content of module.xml file (<WILDFLY_HOME>/modules/com/microsoft/sqlserver/jdbc/main/module.xml)? 
- 
        5. Re: microsoft sql server configuration wildfly 14majidmostafavi Dec 2, 2018 12:00 PM (in response to surfspider)<module xmlns="urn:jboss:module:1.1" name="com.microsoft.sqlserver"> <resources> <resource-root path="mssqljre8.jar"/> </resources> <dependencies> <module name="javax.api"/> <module name="javax.transaction.api"/> <module name="javax.xml.bind.api"/> </dependencies> </module> <driver name="sqlserver" module="com.microsoft.sqlserver"> <xa-datasource-class>com.microsoft.sqlserver.jdbc.SQLServerXADataSource</xa-datasource-class> </driver> 
- 
        6. Re: microsoft sql server configuration wildfly 14surfspider Jan 17, 2019 8:42 AM (in response to surfspider)Thank you for your answers. This one helped me: Wildfly 14 Microsoft SQL Server Configuration - Stack Overflow 
 
     
     
    