Skip to Main Content

Java EE (Java Enterprise Edition) General Discussion

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

sendRedirect method of Java ServletRequest class breaks flow on using Oracle HTTP Server

User_5S8POJun 23 2022 — edited Jun 27 2022

Hi All,
We have 2 war files deployed on standalone JVM in Weblogic 12.2.1.3 and request is routed using ProxyPass module on Apache 2.4.33.
Application 1 with context root (NAS) uses sendRedirect method in servlet to access module in Application 2 with context root(PTS) which is also deployed on the same JVM & port.
The application module is accessible & works fine when Apache HTTP server is used as proxy on Oracle Weblogic Server.
The same application module fails with Page not found error when Oracle HTTP Server is used as proxy server. (Application fails with mod_wl plugin & ProxyPass). Weblogic plugin is enabled on Weblogic.
sendRedirect method route request back to client browser. Can we use RequestDispacther method to route request to other servlet deployed in seperate war file but on the same server.
Any pointers or examples to achieve the same would be helpful.

Comments

Denis Segard-Oracle

Hello,

This issue is typical when the "resources" needed by the page (images , javascript , css , ..) cannot be loaded.

Did you create / deploy the file i.war  ?

You can use the tab "Network" in the "Developer Tools" in your browser to check if the files *.js , *.css *.gif ... can be loaded

Kind regards

fru92thu

Hi Denis,

This is the output I get from Firefox Developer Tools when hitting HTTP://localhost:8080/apex

As you can see all of the errors are due to parsing css. Any ideas on to fix this?

[11:27:06.296] GET http://localhost:8080/apex/ [HTTP/1.1 302 Found 193ms]

[11:27:06.501] GET http://localhost:8080/apex/f?p=4550:1:7293566587863::::: [HTTP/1.1 200 OK 128ms]

[11:27:06.833] GET http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31 [HTTP/1.1 304 Not Modified 1ms]

[11:27:06.842] GET http://localhost:8080/i/app_ui/css/Theme-Standard.min.css?v=5.0.0.00.31 [HTTP/1.1 304 Not Modified 1ms]

[11:27:06.844] GET http://localhost:8080/i/css/apex_builder.min.css?v=5.0.0.00.31 [HTTP/1.1 304 Not Modified 1ms]

[11:27:06.846] GET http://localhost:8080/i/css/apex_ui.min.css?v=5.0.0.00.31 [HTTP/1.1 304 Not Modified 1ms]

[11:27:06.849] GET http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31 [HTTP/1.1 304 Not Modified 1ms]

[11:27:06.852] GET http://localhost:8080/i/apex_ui/css/Theme-Standard.min.css?v=5.0.0.00.31 [HTTP/1.1 304 Not Modified 1ms]

[11:27:06.854] GET http://localhost:8080/i/libraries/jquery/2.1.3/jquery-2.1.3.min.js?v=5.0.0.00.31 [HTTP/1.1 304 Not Modified 1ms]

[11:27:06.856] GET http://localhost:8080/i/libraries/apex/minified/desktop.min.js?v=5.0.0.00.31 [HTTP/1.1 304 Not Modified 1ms]

[11:27:06.859] GET http://localhost:8080/i/libraries/apex/minified/legacy.min.js?v=5.0.0.00.31 [HTTP/1.1 304 Not Modified 3ms]

[11:27:06.861] GET http://localhost:8080/i/apex_ui/js/minified/builder.min.js?v=5.0.0.00.31 [HTTP/1.1 304 Not Modified 3ms]

[11:27:06.864] GET http://localhost:8080/i/apex_ui/js/minified/ui.core.min.js?v=5.0.0.00.31 [HTTP/1.1 304 Not Modified 3ms]

[11:27:06.921] Unknown property 'animation'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:06.922] Unrecognized at-rule or error parsing at-rule '@keyframes'. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:06.924] Unknown property 'box-sizing'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:06.925] Expected declaration but found '*'.  Skipped to next declaration. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:06.927] Unknown property 'speak'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:06.929] Unknown property '-moz-osx-font-smoothing'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:06.933] Unknown property 'transition'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:06.934] Unknown property 'user-select'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:06.937] Unknown property 'transform'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:06.945] Expected media feature name but found '-ms-high-contrast'. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:06.949] Error in parsing value for 'background'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:06.950] Error in parsing value for 'background-attachment'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:06.999] Error in parsing value for 'filter'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.003] Error in parsing value for 'min-height'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.005] Unknown property 'zoom'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.011] Unknown property '-moz-background-clip'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Theme-Standard.min.css?v=5.0.0.00.31:1

[11:27:07.013] Error in parsing value for 'filter'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Theme-Standard.min.css?v=5.0.0.00.31:1

[11:27:07.014] Expected media feature name but found '-ms-high-contrast'. @ http://localhost:8080/i/app_ui/css/Theme-Standard.min.css?v=5.0.0.00.31:1

[11:27:07.017] Unknown property 'zoom'.  Declaration dropped. @ http://localhost:8080/i/app_ui/css/Theme-Standard.min.css?v=5.0.0.00.31:1

[11:27:07.019] Expected declaration but found ':'.  Skipped to next declaration. @ http://localhost:8080/i/css/apex_builder.min.css?v=5.0.0.00.31:1

[11:27:07.021] Expected ':' but found 'padding'.  Declaration dropped. @ http://localhost:8080/i/css/apex_builder.min.css?v=5.0.0.00.31:1

[11:27:07.023] Error in parsing value for 'height'.  Declaration dropped. @ http://localhost:8080/i/css/apex_builder.min.css?v=5.0.0.00.31:1

[11:27:07.024] Error in parsing value for 'color'.  Declaration dropped. @ http://localhost:8080/i/css/apex_builder.min.css?v=5.0.0.00.31:1

[11:27:07.026] Unknown property 'box-sizing'.  Declaration dropped. @ http://localhost:8080/i/css/apex_builder.min.css?v=5.0.0.00.31:1

[11:27:07.027] Error in parsing value for 'background-image'.  Declaration dropped. @ http://localhost:8080/i/css/apex_builder.min.css?v=5.0.0.00.31:1

[11:27:07.031] Error in parsing value for 'letter-spacing'.  Declaration dropped. @ http://localhost:8080/i/css/apex_builder.min.css?v=5.0.0.00.31:1

[11:27:07.036] Error in parsing value for 'filter'.  Declaration dropped. @ http://localhost:8080/i/css/apex_builder.min.css?v=5.0.0.00.31:1

[11:27:07.043] Unknown property '-moz-opacity'.  Declaration dropped. @ http://localhost:8080/i/css/apex_builder.min.css?v=5.0.0.00.31:1

[11:27:07.045] Error in parsing value for 'background'.  Declaration dropped. @ http://localhost:8080/i/css/apex_builder.min.css?v=5.0.0.00.31:1

[11:27:07.060] Unknown property 'transition'.  Declaration dropped. @ http://localhost:8080/i/css/apex_builder.min.css?v=5.0.0.00.31:1

[11:27:07.062] Unknown property 'zoom'.  Declaration dropped. @ http://localhost:8080/i/css/apex_builder.min.css?v=5.0.0.00.31:1

[11:27:07.086] Unknown property 'zoom'.  Declaration dropped. @ http://localhost:8080/i/css/apex_ui.min.css?v=5.0.0.00.31:1

[11:27:07.092] Unknown property 'transition'.  Declaration dropped. @ http://localhost:8080/i/css/apex_ui.min.css?v=5.0.0.00.31:1

[11:27:07.093] Unknown property 'box-sizing'.  Declaration dropped. @ http://localhost:8080/i/css/apex_ui.min.css?v=5.0.0.00.31:1

[11:27:07.095] Error in parsing value for 'background-image'.  Declaration dropped. @ http://localhost:8080/i/css/apex_ui.min.css?v=5.0.0.00.31:1

[11:27:07.098] Unknown property 'transform'.  Declaration dropped. @ http://localhost:8080/i/css/apex_ui.min.css?v=5.0.0.00.31:1

[11:27:07.103] Error in parsing value for 'filter'.  Declaration dropped. @ http://localhost:8080/i/css/apex_ui.min.css?v=5.0.0.00.31:1

[11:27:07.161] Error in parsing value for '-moz-transition'.  Declaration dropped. @ http://localhost:8080/i/css/apex_ui.min.css?v=5.0.0.00.31:1

[11:27:07.168] Unknown property 'background-atthachment'.  Declaration dropped. @ http://localhost:8080/i/css/apex_ui.min.css?v=5.0.0.00.31:1

[11:27:07.169] Error in parsing value for 'background'.  Declaration dropped. @ http://localhost:8080/i/css/apex_ui.min.css?v=5.0.0.00.31:1

[11:27:07.192] Expected media feature name but found '-webkit-min-device-pixel-ratio'. @ http://localhost:8080/i/css/apex_ui.min.css?v=5.0.0.00.31:1

[11:27:07.193] Expected media feature name but found '-moz-min-device-pixel-ratio'. @ http://localhost:8080/i/css/apex_ui.min.css?v=5.0.0.00.31:1

[11:27:07.219] Unknown property 'transition'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Theme-Standard.min.css?v=5.0.0.00.31:1

[11:27:07.220] Expected media feature name but found '-ms-high-contrast'. @ http://localhost:8080/i/apex_ui/css/Theme-Standard.min.css?v=5.0.0.00.31:1

[11:27:07.225] Error in parsing value for 'background-image'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Theme-Standard.min.css?v=5.0.0.00.31:1

[11:27:07.227] Unknown pseudo-class or pseudo-element '-webkit-input-placeholder'.  Ruleset ignored due to bad selector. @ http://localhost:8080/i/apex_ui/css/Theme-Standard.min.css?v=5.0.0.00.31:1

[11:27:07.229] Expected pseudo-element but found '-moz-placeholder'.  Ruleset ignored due to bad selector. @ http://localhost:8080/i/apex_ui/css/Theme-Standard.min.css?v=5.0.0.00.31:1

[11:27:07.230] Unknown pseudo-class or pseudo-element '-ms-input-placeholder'.  Ruleset ignored due to bad selector. @ http://localhost:8080/i/apex_ui/css/Theme-Standard.min.css?v=5.0.0.00.31:1

[11:27:07.232] Error in parsing value for 'background'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Theme-Standard.min.css?v=5.0.0.00.31:1

[11:27:07.233] Error in parsing value for 'background-attachment'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Theme-Standard.min.css?v=5.0.0.00.31:1

[11:27:07.240] Unknown property 'box-sizing'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.244] Unknown pseudo-class or pseudo-element '-webkit-search-cancel-button'.  Ruleset ignored due to bad selector. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.245] Error in parsing value for 'font-size'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.247] Error in parsing value for 'height'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.248] Error in parsing value for 'margin'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.251] Error in parsing value for 'width'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.259] Error in parsing value for '-moz-border-radius'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.262] Error in parsing value for 'padding'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.266] Expected end of value but found '10'.  Error in parsing value for 'padding'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.286] Error in parsing value for 'vertical-align'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.291] Error in parsing value for 'padding-left'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.292] Error in parsing value for 'margin-right'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.295] Unknown property '-moz-opacity'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.296] Error in parsing value for 'filter'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.302] Unknown property 'transition'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.303] Unrecognized at-rule or error parsing at-rule '@keyframes'. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.306] Unknown property 'transform'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.307] Unknown property 'animation'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.309] Unknown property 'animation-fill-mode'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.311] Unknown property 'animation-duration'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.315] Unknown property 'speak'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.317] Unknown property '-moz-osx-font-smoothing'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.320] Error in parsing value for 'background-image'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.323] Unknown pseudo-class or pseudo-element '-webkit-input-placeholder'.  Ruleset ignored due to bad selector. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.325] Expected pseudo-element but found '-moz-placeholder'.  Ruleset ignored due to bad selector. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.327] Unknown pseudo-class or pseudo-element '-ms-input-placeholder'.  Ruleset ignored due to bad selector. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.331] Error in parsing value for 'background-repeat'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.335] Unknown property 'backface-visibility'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.397] Error in parsing value for 'display'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.401] Unknown property 'align-items'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.402] Unknown property 'align-content'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.404] Unknown property 'flex-wrap'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.405] Unknown property 'flex'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.407] Unrecognized at-rule or error parsing at-rule '@supports'. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.412] Unknown property 'flex-direction'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.414] Unknown property 'justify-content'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.417] Error in parsing value for 'min-height'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.434] Unknown property 'word-break'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.439] Error in parsing value for 'background'.  Declaration dropped. @ http://localhost:8080/i/apex_ui/css/Core.min.css?v=5.0.0.00.31:1

[11:27:07.440] Error in parsing value for 'background-attachment'. 

Kiran Pawar

Hi fru92thu,

fru92thu wrote:


I have installed ORDS 3.0.1 under Tomcat 7. When I try and launch the homepage, I get the attached screen (i.e - no login textfields). Has anyone ever seen this before and how do I resolve it?

P.S - I renamed the ords.war file to apex.war

     As pointed out by Denis Segard-Oracle, are you missing /i/ deployment on Apache Tomcat.

     But instead of creating i.war and then deploying it on Apache Tomcat.

  • Create "i" directory under <Tomcat directory>/webapps/
  • Copy the contents of the <apex directory>/images folder to <Tomcat directory>/webapps/i/

     NOTE : After deploying /i on Apache Tomcat, re-start the Apache Tomcat for the effects to reflect.

     Refer : http://docs.oracle.com/cd/E56351_01/doc.30/e56293/install.htm#CHDFBGJF

Regards,

Kiran

fru92thu

Hi Kiran,

I have already copied everything under the <apex_directory>/images to <tomcat_directory>/webapps/i/ and restarted the web server many times.

[tomcat@apex webapps]$ pwd

/home/tomcat/apache-tomcat-7.0.64/webapps

[tomcat@apex webapps]$ ls -la

total 45148

drwxr-xr-x  9 tomcat tomcat     4096 Oct 16 15:45 .

drwxrwxr-x  9 tomcat tomcat     4096 Oct 15 13:07 ..

drwxrwxr-x  6 tomcat tomcat     4096 Oct 16 15:45 apex

-rw-r--r--  1 tomcat tomcat 46155138 Oct 16 15:45 apex.war

drwxr-xr-x 14 tomcat tomcat     4096 Oct 15 13:07 docs

drwxr-xr-x  7 tomcat tomcat     4096 Oct 15 13:07 examples

drwxr-xr-x  5 tomcat tomcat     4096 Oct 15 13:07 host-manager

drwxrwxr-x 33 tomcat tomcat    36864 Oct 21 12:01 i

drwxr-xr-x  5 tomcat tomcat     4096 Oct 15 13:07 manager

drwxr-xr-x  3 tomcat tomcat     4096 Oct 15 13:07 ROOT

[tomcat@apex webapps]$ ls -la i | wc -l

868

All files under the i directory are owned by tomcat.tomcat

Regards,

David

Kiran Pawar

Hi fru92thu,

fru92thu wrote:


I have already copied everything under the <apex_directory>/images to <tomcat_directory>/webapps/i/ and restarted the web server many times.

All files under the i directory are owned by tomcat.tomcat

     For debugging this issue you are facing on ORDS:

  • Locate the ORDS configuration folder.
  • Enable the Debug Tracing in defaults.xml (If entry is not there add the entry)
  • Enable the Detail Request Error messages in defaults.xml (If entry is not there add the entry)
  • Start(re-start) the Apache Tomcat
  • Navigate to the APEX URL
  • Copy/paste the debug log into the forum reply.(Usually the error is at the end of the log, paste/attach the whole log from where the first exception occurs)

     For checking whether the issue is due to software incompatibility share the following info:

  • Detail APEX Version
  • Detail Oracle Database Version
  • Detail ORDS Version
  • Detail Apache Tomcat Server Version
  • Detail JDK Version

     NOTE : Here "Detail" means the major+minor version. For e.g. Application Express 4.2.4.00.08

Regards,

Kiran

fru92thu

We already have these debugging options turned on and the web server has been restarted numerous times. No errors are reported to the screen.

     For debugging this issue you are facing on ORDS:

  • Locate the ORDS configuration folder.
  • Enable the Debug Tracing in defaults.xml (If entry is not there add the entry)
  • Enable the Detail Request Error messages in defaults.xml (If entry is not there add the entry)
  • Start(re-start) the Apache Tomcat
  • Navigate to the APEX URL
  • Copy/paste the debug log into the forum reply.(Usually the error is at the end of the log, paste/attach the whole log from where the first exception occurs)

Our defaults.xml file;

[tomcat@apex apex]$ cat defaults.xml

<?xml version="1.0" encoding="UTF-8" standalone="no"?>

<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">

<properties>

<comment>Saved on Fri Oct 16 13:18:59 BST 2015</comment>

<entry key="cache.caching">false</entry>

<entry key="cache.directory">/tmp/apex/cache</entry>

<entry key="cache.duration">days</entry>

<entry key="cache.expiration">7</entry>

<entry key="cache.maxEntries">500</entry>

<entry key="cache.monitorInterval">60</entry>

<entry key="cache.procedureNameList"/>

<entry key="cache.type">lru</entry>

<entry key="db.hostname">cluster12.pob.sis-abz.com</entry>

<entry key="db.port">1521</entry>

<entry key="db.servicename">XXXXXX</entry>

<entry key="debug.debugger">true</entry>

<entry key="debug.printDebugToScreen">true</entry>

<entry key="error.keepErrorMessages">true</entry>

<entry key="error.maxEntries">50</entry>

<entry key="jdbc.DriverType">thin</entry>

<entry key="jdbc.InactivityTimeout">1800</entry>

<entry key="jdbc.InitialLimit">3</entry>

<entry key="jdbc.MaxConnectionReuseCount">1000</entry>

<entry key="jdbc.MaxLimit">10</entry>

<entry key="jdbc.MaxStatementsLimit">10</entry>

<entry key="jdbc.MinLimit">1</entry>

<entry key="jdbc.statementTimeout">900</entry>

<entry key="log.logging">false</entry>

<entry key="log.maxEntries">50</entry>

<entry key="misc.compress"/>

<entry key="misc.defaultPage">apex</entry>

<entry key="security.crypto.enc.password">XXXXXXXXXXXXXXXXXXXX</entry>

<entry key="security.crypto.mac.password">XXXXXXXXXXXXXXXXXXXX</entry>

<entry key="security.disableDefaultExclusionList">false</entry>

<entry key="security.maxEntries">2000</entry>

</properties>

  • Detail APEX Version - 5.0.0.00.31
  • Detail Oracle Database Version - 11.2.0.4.0
  • Detail ORDS Version - 3.0.1.177.18.02
  • Detail Apache Tomcat Server Version - 7.0.64
  • Detail JDK Version - 1.7.0_79

Regards,

David

fru92thu
Answer

Hello,

I managed to get a fix to this by replacing the version of Firefox I had on my machine (10.0.5) with the latest 41.0.2

Regards,

David

Marked as Answer by fru92thu · Sep 27 2020
1 - 7

Post Details

Added on Jun 23 2022
1 comment
202 views