I am having a RESTDataSource binded to a listgrid, which fetches data from a Server in JSON format, i have a siteminder app between client and server that intercepts request to check if the user is looged in or not.
When user session times out in siteminder and user clicks on the gui the RESTDatasource call the server for data but is intercepted by siteminder thus get a redirct to a login page(Resp status 200 ), the datasource doesnt understnd the HTML response and hangs, i tried to check this condition in transformResponse method but its not getting called.
how can i handle this, i want to detect this in transformResponse method and warn the user about session time out and redirct to login page
When user session times out in siteminder and user clicks on the gui the RESTDatasource call the server for data but is intercepted by siteminder thus get a redirct to a login page(Resp status 200 ), the datasource doesnt understnd the HTML response and hangs, i tried to check this condition in transformResponse method but its not getting called.
how can i handle this, i want to detect this in transformResponse method and warn the user about session time out and redirct to login page
Comment