JBoss
Deploy Orbeon Forms
Setup a JDBC datasource
<properties xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:oxf="http://www.orbeon.com/oxf/processors"> <property as="xs:string" name="oxf.fr.persistence.provider.*.*.*" value="oracle"/> </properties><resource-ref> <description>DataSource</description> <res-ref-name>jdbc/oracle</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref><resource-ref> <res-ref-name>jdbc/oracle</res-ref-name> <jndi-name>java:jboss/datasources/oracle</jndi-name> </resource-ref>
<datasource jndi-name="java:jboss/datasources/oracle" pool-name="oracle" enabled="true"> <connection-url>…</connection-url> <driver>…</driver> <security> <user-name>…</user-name> <password>…</password> </security> </datasource>

With JBoss 6
Last updated