Per the JAXWS specs, a service can be consumed asynchronously (SOAP/HTTP). In this case WSDL2Java generates the required code in Service Interface (i.e. Future<>.
I am not able to figure out how to configure CXF to use a specific ThreadPool or Does CXF internally manage the ThreadPool and also register the pool with the JEE container? I am using CXF in JBoss, and per JEE App container standard applications should not create/spawn threads as they are not visible to he container. Does CXF handle this internally or should applications (consumers) need to handle ThreadPool stuff? Thanks, Sam
