How to Deploy a Rules Editor Application to a Standalone WLS
When you are ready to deploy your application EAR file to the standalone Oracle WebLogic Server, perform the following:
-
Check if the shared libraries are deployed using the WebLogic console of your standalone WLS.
-
Launch WLS console. (
http://
host
:
port
/console/login/LoginForm.jsp
) and log in. -
Click Deployments. Check if oracle.rules and oracle.soa.rules_dict_dc.webapp shared libraries are deployed as showed in Figure 26-11.
-
-
If the shared libraries are not deployed, then refer to the previous steps to deploy the shared libraries manually.
-
In a project that uses the Rules Editor Component:
-
Include Oracle Rules Dictionary Component in your Libraries and Classpath.
This does not deploy these libraries by default, so the jars are not included in your project war file.
-
-
In a project that is deploying (i.e where you create the ear file):
-
Add this to your weblogic-application.xml:
<library-ref> <library-name>oracle.rules</library-name> </library-ref>
-
Add this to weblogic.xml in your project's war file:
<library-ref> <library-name>oracle.soa.rules_dict_dc.webapp</library-name> </library-ref>
-
-
Deploy your ear file in WLS.
For more information about creating an EAR file, see "How to Create an EAR File for Deployment" in Developing Fusion Web Applications with Oracle Application Development Framework.