Vidoll :: Storyboard

SourceForge.net Logo

 

Home

Screenshots

Documentation

Installation Notes

Database Config

Installation Notes

Oracle 9iAS | JBoss | Weblogic

Oracle 9iAS / OC4J

The j2ee/home/config directory has XML configuration files that have to be modified to allow Storyboard to run as a web and EJB application. In the files add the lines beneath others of the same kind.

Server.xml

<application name="storyboard" path="../applications/storyboard.ear" auto-start="true" />
<application name="storyboard-ejb" path="../applications/storyboard-ejb.ear" auto-start="true" />

Http-web-site.xml

<web-app application="storyboard" name="storyboard-jsp" root="/storyboard" />

The storyboard.ear file (containing the EJB ear and JSP war archives as well), is placed in the j2ee/home/applications directory. Restarting the server, or adding the archive when the above files have been modified and saved with automatically cause the archive to be unpackaged and ready for action (a stack trace should appear in the OC4J console).

Data-sources.xml

[Oracle Database]

<data-source 

class="com.evermind.sql.DriverManagerDataSource" connection-driver="oracle.jdbc.driver.OracleDriver" ejb-location="jdbc/bookmanDS" inactivity-timeout="30" location="jdbc/bookmanCoreDS"
name="jdev-connection:bookman"
username="[]"
password="[]"
pooled-location="jdbc/bookmanPooledDS" url="jdbc:oracle:thin:@l[HOST]:1521:[SID]"
xa-location="jdbc/xa/bookmanXADS"

/>

The EAR comes with its own data-sources.xml configuration file, which will appear in j2ee/home/application-deployments/storyboard-ejb and j2ee/home/application-deployments/storyboard. Change the URL, username and password to your own Oracle database instance. Or you can edit the data-sources.xml file that is located in the config directory as well.

JBoss

TODO

Weblogic

TODO