If you want to move your ascontrol application from an existing OC4J to new one, you need to do something more than simply starting it on one and stopping on another. You have to set ohs-routing which can’t be done from EM console.
- Edit server.xml located under $ORACLE_HOME/j2ee/<oc4j container name>/config and set the start attribute to true
<application name="ascontrol" path="../../home/applications/ascontrol.ear" parent="system" start="true" />
- Edit default-web-site.xml and set ohs-routing to true. If the ohs-routing parameter does not exist then you don’t have to do anything.
<web-app application="ascontrol" name="ascontrol" load-on-startup="true" root="/em" ohs-routing="true" />
- opmnctl reload / shutdown / then startall


