Hi:
Recently I encounter a web-service which operation contains only input
message and fault message;
It may looks like:
<operation>
<input message....>
<fault message ../>
</operation>
If the service execute successful, a http ok response will returned; And if
it failed, a soap-fault will be returned;
And now we need know if server's result is successful or failure at client
side.
But cxf will never receive the failure response from service, as cxf use
fire-forget mechanism to deal with one-way operation by default.
So I am wondering if cxf support some one-way confirm feature? If so client
could confirm whether server successful or failed.
Thanks any suggestion;