I have a use case where my one client needs to talk to many (perhaps hundreds) of servers all using one WSDL. I've looked into using the javax.xml.ws.Service.addPort() method to add the hosts as ports. This creates separate JAXB contexts and other overhead for each proxy.
The goal is to re-use as much of the client as possible while having a pool of connections to different hosts. My use case would also require that individual proxies be destroyed cleanly without affecting other connections. How would someone go about doing this with CXF? Thanks in advance. -Brian
