How to implement one-way operation in Web Services (using Java or Spring annotations)?
I have tried to add one way as given below
@WebService
public interface DanduServices {
@Oneway
public void saveDanduInformation(@WebParam(name = "serv") ServDTO Serv, @WebParam(name = "dandu") DanduDTO danduDto);
but it is still request-response not asynchronus or one way.
Could anyone suggest to make a operation one-way in service endpoint and let other operations behave as per request-response?