Categories
- All Categories
- Oracle Analytics Learning Hub
- 19 Oracle Analytics Sharing Center
- 18 Oracle Analytics Lounge
- 230 Oracle Analytics News
- 44 Oracle Analytics Videos
- 15.8K Oracle Analytics Forums
- 6.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 85 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Bug with the developer option in OAS 2025 DV

Hello everyone,
We recently upgraded to Oracle Analytics Server (OAS) 2025 and are encountering an issue specifically within the Data Visualization (DV) module. When we enable Developer Mode and click the “Refresh” button, the DV screen enters an infinite loop of authentication pop-ups requiring repeated credentials. Eventually, it becomes unusable unless we force‑quit the browser or application.
Has anyone else encountered this behavior in OAS 2025 DV? Any insights—workarounds, configs, or patches—would be greatly appreciated.
Thanks in advance!
Best Answer
-
Your problem can be solve. Just see the link below.
You can updatet the logconfig.xml file with Format = ODL-TEX,JSON.
But do this only for the UserLog section !
Otherwise it will generate a lot of logfile and your system wil hang.
After you restart the OAS the problem will be solved.
<UserLog>
<!--This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware Control-->
<MaximumFileSizeKb>100000</MaximumFileSizeKb>
<!--This Configuration setting is managed by Oracle Enterprise Manager Fusion Middleware Control-->
<MaximumLogAgeDay>10</MaximumLogAgeDay>
<MaximumMsgSizeKb>80</MaximumMsgSizeKb>
<Format>ODL-TEXT,JSON</Format>
</UserLog>See:
Cause:
This issue is an
internal product defect
. InOAS 2025
,BI Server logs
are generated only inJSON format
(obis1-query.json
,obis1-diagnostic.json
), while thestandard log format
is missing.A review of the
logconfig.xml
file (located at<<Domain Home>>/config/fmwconfig/biconfig/OBIS/
) reveals the following:Element:
/server/ServerInstance/Log/Format
OAS 2025:
Set toJSON
Element:
/server/ServerInstance/UserLog/Format
OAS 2025:
Set toJSON
Solution:
To resolve this issue:
Update
thelogconfig.xml
file in theOAS 2025
environment by settingFormat = ODL-TEXT,JSON
.Restart
theOAS 2025
environment.
After this update,
both log formats
will be generated in<<Domain Home>>/servers/obis1/logs/
, and the"View Log"
functionality in theUI Console (Sessions and Query Logs)
should work correctly without errors.Hope you can solved the problem,
Qui Thai
3
Answers
-
Hi Dhaval,
There could be an issue with a front-end configuration (HTTP Server, Load Balancer, Proxy) and the managed server configuration.
It would be best if you you capture an HTTP Archive (HAR) with your browser web/developer tools.
SRDC - How To Collect HTTP Archive (HAR) File From Chrome, Microsoft Edge or FireFox Browsers (Doc ID 3035966.1)
Since a HAR file can include sensitive information, you may want to obfuscate or post it in a secure service request along with information about your authentication and architecture. The HAR file may provide some additional insight into the looping.
Leaving this here for anyone else to comment on the behavior itself. I have not encountered it, but it may be due to your architectural layers.2 -
@Dhaval Parikh Stantec I would agree with @SteveF-Oracle - we are not having on our OAS 2025 instances such issue in Developer mode, you are describing (we are having Apache HTTP server in front of OAS, taking care of OAM integration for SSO).
2 -
What Steve and Michal said: didn't have any issue with it with default authentication.
2 -
we have what sounds like the same issue. We have an SR open.
0 -
I tested again with a two-node horizontal scale-out cluster with an Apache HTTP Server front-end.
It worked fine with accessing each node independently (i.e. - stopping only node2, stopping only node1) via the HTTP Server.Key points for this test environment:
- HTTP only (no HTTPs offloading/termination)
- Default authenticator (no SSO, no external LDAP). External LDAP should not matter, but SSO configuration possibly.
- Tested with Safari and FireFox browsers.
@Dhaval Parikh Stantec - did you ever come to a conclusion / solution?
@peacey - Opening an SR is the right course of action. Please do provide your architecture/environment/browser details in the SR + HAR file ^^^
0 -
@Qui Thai has the correct solution.
I confirmed that the RESPONSE of the erroring request:
Request URLhttps://someurl.com/dv/ui/api/v1/data/viewLog?cursorID=4912335&resultsType=unformatted
Has in summary these errors:
analytics/res/v-1Y8JXKiIr58/b_mozilla/common.js"></script><div class="ErrorMessage">Error during query processing (SQLExecDirectW)
State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058]
Code: 43275. [nQSError: 43275] Message returned from OBIS [ecid:00… … ]
Code: 43261. [nQSError: 43261] Log Viewer process failed to convert the obis1-query.json to obis1-query.log: jq is not installed. Please install jq first before run this script.
I also tested and confirmed that in environments generating only .json obis logs, the problem happens. In environments generating both TEXT,JSON formats of logs the issue does not happen. After changing a problematic environment to logging both formats, the issue no longer occurs.
So the "Authentication Error" popup is just masking the root issue.
I've sent these updates along to Oracle in: SR 3-41987043331
2 -
Cannot access the SR, appreciate if you can keep us updated here. It will help for other OAC users.
0