we are using Jax-rs (out of box on WebSphere 7 : no other frameworks like CXF or Restfull or Spring) question: Client makes a http call, the server takes 3 to 5 minutes to process the request. however I do not want to hold the client, I want to return http OK response and then spin off processing call.
How to do this in JAX-RS, I am hoping there is some kind of annotations. I really do not want to get into spinning off a thread and managing it (no complex solutions with threading).
Thanks for your help