On Fri, Mar 4, 2016 at 6:20 AM, Chris Pike <[email protected]> wrote: > We have a REST service that uses the fortress API and deploys to a wildfly > application server. If the service is processing lots of requests when we > redeploy the application, it causes the application server to hang and we > have to restart. > > Not sure what the problem is but think it might be related to the ldap > connections. Is there a way to force the closing of all the existing ldap > connections used by the API? Any other ideas on things to try? > my guess is that there is a connection pool in use here, and it is not properly destroyed while the app is being unloaded from the app server.
Did you try closing the pool in your app's ServletContextListener? Kiran Ayyagari http://keydap.com
