We are going to use the WebSphere 8.0 application server in our development.
Our web application uses Amazon aws java sdk, which in turn uses the Apache 4.1 HTTP client.
But WebSphere also has http client classes in its libraries, which seem to interfere with the http client located in our web application.
I found the following list of http-client classes distributed using WebSphere:
\ WebSphere \ AppServer \ plugins \ com.ibm.ws.prereq.jaxrs.jar (http-client 4.0.1)
\ WebSphere \ AppServer \ runtimes \ com.ibm.jaxrs.thinclient_8.0.0.jar
So my question is: how do I first load the classes located in my application, and not through the WebSphere application container?
source share