Aditya, thanks for your response...
Yes... I have the postgresql-9.3-1104.jdbc4.jar
Some documentation says to create the org folder under modules, then postgresql, and main... then copy the driver there and add the module.xml, which I did:
<?xml version="1.0" encoding="UTF-8"?>
<module xmlns="urn:jboss:module:1.1" name="org.postgresql">
<resources>
<resource-root path="postgresql-9.3-1104.jdbc4.jar"/>
</resources>
<dependencies>
<module name="javax.api"/>
<module name="javax.transaction.api"/>
</dependencies>
</module>
But the mssqlserver drivers are in ...\JBoss\modules\system\layers\base\com\
I tried to copy the driver and module.xml to \JBoss\modules\system\layers\base\org\ as well, but that doesn't work either.
Other documentation says that not all JDBC4 drivers are compliant and you need to modify the .jar (see
https://access.redhat.com/documentation/en-US/JBoss_Enterprise_Application_Platform/6.4/html/Administration_and_Configuration_Guide/sect-JDBC_Drivers.html ). I tried it that way and to deploy the driver through the console, but the driver never showed up to be selected when I was adding a datasource through the console.