Discussions
Categories
- 197K All Categories
- 2.5K Data
- 546 Big Data Appliance
- 1.9K Data Science
- 450.8K Databases
- 221.9K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 552 MySQL Community Space
- 479 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.1K ORDS, SODA & JSON in the Database
- 556 SQLcl
- 4K SQL Developer Data Modeler
- 187.2K SQL & PL/SQL
- 21.4K SQL Developer
- 296.4K Development
- 17 Developer Projects
- 139 Programming Languages
- 293.1K Development Tools
- 110 DevOps
- 3.1K QA/Testing
- 646.1K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 161 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.2K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 19 Java Essentials
- 162 Java 8 Questions
- 86K Java Programming
- 81 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 205 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 473 LiveLabs
- 39 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 175 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 233 Portuguese
APEX 21.1 (Patch 5) - IR column filter (request ajax plugin) returns "Your session has ended error"

Hi all
I have an application with an Authentication Schema (Http Variable) which is working fine, even the post-authentication procedure doesn't return any error because when i log in, apex give me a correct session and i can go in any page.
However, when i try to filter to any column of any interactive report of any page, apex return this error: "Your session has ended" and doesn't apply any filter on the relative interactive report.
If i activate debug e view it, the result is this
It seems that the action of showing page is done correctly with the logged user ("TINIT -....") but the action of clicking on column to filter on it, that is a Ajax plugin request, is done anonymously, as if the application doesn't recognize the active session for the user: this is the detail of the Ajax plugin request with the error:
Someone have any idea to resolve that error?
Thank you in advance.
Comments
-
- Does this only affect filtering or does the error also happen if you click the Go button? So does it happen with any Ajax request?
- Does this also occur if you navigate around in your application? Check if the session id stays the same in the URL.
- Have you also tried LEVEL9 debugging to get additional information?
- You should also check in Google Developer Tools if the Ajax request includes the session cookie. It looks like it doesn't.
Regards
Patrick
-
- No, It affects even with Submit buttons: the result of debugging is the same of the first post, the action of clicking the submit button is done by "nobody", but i have logged in the app successfully and with a valid session.
- Same of the point number 1
- No, how do I enable this level of debugging?
- I checked with Google Developer Tools (with the submit button) and there is my session cookie, but the value of session cookie change every time i click on the button, together with the session id in the URL.
This is the screenshot of debug view when I click the submit button:
This is the detail of debug of "Accept SAVE", that is the action of button click:
It seems that the http variable of username is lost in a specific step of the page life cycle and apex isn't able to assign to my user (already logged-in, with the same username) the same session id before clicking on the button.