I created a pool of ports (webservice clients) because creating on the fly on each request the client lead to a bottleneck
Now I noticed that the webservice clients hold references to the request and response...
Is that normal... ?
Unfortunately the payload is quite big for this websevice and like this even if not used for a while the pool holds references to some not anymore used responses...increasing heap ..
Is there a way to clean those references after receiving the response ?
Update: using Apache CXF clients i do not have this problem however pb. is still open for weblogic clients..