|
OC4J Installation NotesBean Name ClashesThis can be solved if you add these lines in the orion-web.xml <web-app>
<servlet>
<servlet-name>jsp</servlet-name>
<servlet-class>oracle.jsp.runtimev2.JspServlet</servlet-class>
<init-param>
<param-name>req_time_introspection</param-name>
<param-value>true</param-value>
</init-param>
</servlet>
</web-app>
just before this line:
</orion-web-app>
|