I have a @WebService
class. If I make a connection from clients, sometimes there will be tasks that may last a few minutes. And first if this task is finished, the soap should return the response.
This means the connection for a single request between client and webserver should not time out during this longer request.
How can I configure the timeout for this procedure? And if it is configurable, has this to be done on client or server side?
Thanks