How to Deploy a Rules Dictionary Application to a Standalone Oracle WebLogic Server
When you're ready to deploy your application ear file to the stand-alone WLS, follow these steps to make sure everything runs smoothly.
-
Check to make sure the shared libraries are deployed using the weblogic console of your stand-alone WLS.
-
Launch WLS console
http://host:port/console/login/LoginForm.jsp
and log in. -
Click 'Deployments' and see if 'oracle.rules' and 'oracle.soa.rules_dict_dc.webapp' shared libraries are deployed as shown in Figure 26-11.
-
-
If the shared libraries are not deployed, then follow the previous process to deploy the shared libraries manually.
-
In your project that uses the Rule Dictionary Editor Component, include the "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 the project that is finally 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>
-
-
Now you can deploy your ear file in WLS and things should work.