Hi,
We set up an application with a Java backend (using Java Access Provider), front in JS/PHP, requests are sent via ajax and we noticed some curious things :
- When a single user login, (all ajax requests are async), the application will sometimes throw an bad credentials (comming from IFS Web logic) when user making an action (saving, loading, ...).
- When a single user login, (all ajax [for testing] requests are sync), the application won’t throw any bad credentials (comming from IFS Web logic) when user making an action (saving, loading, ...).
- When two users use the app at the same time (async and sync requests) one of the user will have a bad credentials (comming from IFS Web logic) .
We are 99% sure that those errors are due to a concurrency in Oracle or WebLogic. The error occurs when multiple users are making the same request. The problem is weird because IFS should handle multiple connections (hopefuly) ![]()
We checked the value of Server variable passed to all request made : it’s the same. Each user have a different server of course but they are not altered during the backend proccess.
Is it a configuration problem in Oracle or WebLogic?
Thanks !
Antoine