JasperServer REST Logout

I have a very simple question. I use the REST login to create a session on the Jasper Server to then pass the Cookie in further requests. Now how should I logout of the JasperServer? I can not find a corresponding REST function.

Thanks

kolja.ehlers@iconplc.com's picture
Joined: Aug 12 2008 - 2:47am
Last seen: 6 years 5 months ago

1 Answer:

To log out.

Ext.Ajax.request({          

 

            url: '/jasperserver/logout.html?showPasswordChange=null',
            method: 'POST',
            success: function (response, request) {
                alert('logged out of jasperserver');
            },
            failure: function (response, request) {
                alert('failure logging out of');
            }
        });
karengreenfinch's picture
Joined: Aug 31 2012 - 12:49am
Last seen: 10 years 6 months ago
Feedback
randomness