Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<h2>Solution so far...</h2> <p>Option 1: add the debug_mode parameter to the OC4J global-web-application.xml </p> <ul> <li>the setting will apply to all applications in the OC4J container</li> <li>See the response from @Mork0075 for details (except note that the OC4J container name and application names are specific to an example of enabling debug for Oracle's Secure Enterprise Search)</li> </ul> <p>Option 2: add to your application's web.xml</p> <ul> <li>Obviously, allows for a more local change</li> <li>There are additional settings (developer_mode,encode_to_java,emit_debuginfo) which may be of use also</li> </ul> <p>For example:</p> <pre><code>&lt;servlet&gt; &lt;servlet-name&gt;jsp&lt;/servlet-name&gt; &lt;servlet-class&gt;oracle.jsp.runtimev2.JspServlet&lt;/servlet-class&gt; &lt;init-param&gt; &lt;param-name&gt;debug_mode&lt;/param-name&gt; &lt;param-value&gt;true&lt;/param-value&gt; &lt;/init-param&gt; &lt;init-param&gt; &lt;param-name&gt;developer_mode&lt;/param-name&gt; &lt;param-value&gt;true&lt;/param-value&gt; &lt;/init-param&gt; &lt;init-param&gt; &lt;param-name&gt;encode_to_java&lt;/param-name&gt; &lt;param-value&gt;true&lt;/param-value&gt; &lt;/init-param&gt; &lt;init-param&gt; &lt;param-name&gt;emit_debuginfo&lt;/param-name&gt; &lt;param-value&gt;true&lt;/param-value&gt; &lt;/init-param&gt; &lt;/servlet&gt; </code></pre> <p>Since these options are being set for the class oracle.jsp.runtimev2.JspServlet, it is obviously specific for Oracle OC4J/Application Server installations.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload