Hi. I am looking for an advice on CXF use in the following scenario.
In a J2EE application, I need to publish/unpublish services dynamically on the server side based on WSDLs (uploaded at runtime) and not have specific service implementations running behind the services. To be more specific: - I need to create Service representations from WSDLs on the fly and publish them (or unpublish them) - I would like to use CXF to its full potential doing the SOAP stack stuff (message processing, addressing, determining endpoint, operation, etc.) based on the SOAP messages received - (Possibly implement a custom data binding, i.e. convert the message contents to a custom representation) - Process all the messages that passed through CXF by a SINGLE processor, which will then determine what to do with the message further. Basic idea I have is to have a Servlet in the app which receives the HTTP requests and then passes them to CXF (configured programmatically). Can this be done? Any hints or advices on how this can be done are welcome. Thx.