We are in the process of installing a 7.5.1 machine. Install is complete, but now we are following our documentation for custom files and scripts and bringing them up in the new environment. One of the issues we've run into is because of the JBOSS upgrade. Since JBOSS has upgraded there are changes to the back end directory structure. The jboss config file js-jboss-ds.xml under /opt/Autonomy/ApplicationContainer/server/default/deploy does not exist anymore. We have a workflow that uses a war package to basically connect to a database and look up offer IDs and display the options to the user so they can select which published DCR to retrieve in the workflow. The database connection was in js-jboss-ds.xml. With the changes I'm assuming the file /opt/Autonomy/ApplicationContainer/standalone/configuration/standalone.xml should now house the database connection string.
My suspecion is that we have some element incorrect in the connection string, but we can't seem to figuire it out. HP support gave it a shot for bit, but finally pulled to plug and urged us to hire HP professional services since this is a "custom code issue".
Basically we have the two files, one is the standalone.xml and the other is the web.xml that exists in WEB-INF in our war package.
I'll post here our connnection string, if any one sees any issue please give a heads up...
connection string in standalone.xml:
<datasource jndi-name="java:jboss/datasources/webstage" pool-name="webstage" enabled="true" use-java-context="true">
<connection-url>jdbc : oracle:thin:@bloecmt-cluster.ii-corpnet.com:1521/webstage</connection-url>
<driver>oracle.jdbc.driver.OracleDriver</driver>
<pool>
<min-pool-size>10</min-pool-size>
<max-pool-size>20</max-pool-size>
</pool>
<security>
<user-name>XXXXX</user-name>
<password>XXXXX</password>
</security>
</datasource>
web.xml:
<param-name>iwi.context.path</param-name>
<param-value>http://XXXXXX.ilg.ad:8080/IWInterwoven</param-value>
</context-param>
<context-param>
<param-name>iwi.allowed.origins</param-name>
<param-value>http://XXXXXXXXX.ilg.ad</param-value>
</context-param>
<context-param>
<param-name>iwi.newsletters.ds.name</param-name>
<param-value>webstage</param-value>
</context-param>
<context-param>
<param-name>iwi.epiphany.ds.name</param-name>
<param-value>webstage</param-value>
</context-param>
Any pointers would be appreciated, thanks.