How to Deploy a Rules Dictionary Editor Task Flow Application to a Standalone Oracle WebLogic Server
When you are ready to deploy your application EAR file to the standalone Oracle WebLogic Server, perform the following:
-
Launch the Oracle WebLogic Server Administration Console (
http://
host
:
port
/console/login/LoginForm.jsp
). -
Ensure that
oracle.rules
is displayed in the deployments list. -
Ensure that
oracle.soa.rules_dict_dc.webapp
is displayed in the deployments list. -
If this is not displayed, click Install and select the JDEV_INSTALL/jdeveloper/soa/modules/oracle.soa.rules_dict_dc.webapp_11.1.1/oracle.soa.rules_dict_dc.webapp.war file.
-
In the project that has to be deployed (where you create the EAR file):
-
Add the following lines to the
weblogic-application.xml
:<library-ref> <library-name>oracle.rules</library-name> </library-ref>
-
Add the following lines to
weblogic.xml
in the project WAR file:<library-ref> <library-name>oracle.soa.rules_dict_dc.webapp</library-name> </library-ref>
-
Deploy the EAR file in Oracle WebLogic Server.
-