Discussions
Categories
- 196.7K All Categories
- 2.2K Data
- 235 Big Data Appliance
- 1.9K Data Science
- 449.8K Databases
- 221.5K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 549 MySQL Community Space
- 477 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3K ORDS, SODA & JSON in the Database
- 532 SQLcl
- 4K SQL Developer Data Modeler
- 186.8K SQL & PL/SQL
- 21.2K SQL Developer
- 295.4K Development
- 17 Developer Projects
- 138 Programming Languages
- 292K Development Tools
- 104 DevOps
- 3.1K QA/Testing
- 645.9K Java
- 27 Java Learning Subscription
- 37K Database Connectivity
- 153 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.1K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 17 Java Essentials
- 158 Java 8 Questions
- 85.9K Java Programming
- 79 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.2K Java SE
- 13.8K Java Security
- 203 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 390 LiveLabs
- 37 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.6K Other Languages
- 2.3K Chinese
- 170 Deutsche Oracle Community
- 1K Español
- 1.9K Japanese
- 230 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.