Description
several cxf related examples has a client.html which is designed to be loaded by a browser to send and receive soap message.
However, modern browsers will check CORS http header from the response message, so the client.html won't work in most modern browsers(only display Status 0 for the response area).
we can add an interceptor for the server side, which simply add response http header like
Access-Control-Allow-Origin: * Access-Control-Allow-Methods: POST, GET
then the response message could be accepted by the browser