I’m writing my first web service. It will create a document, set field values and return a response to the caller. My problem is that I also need to kick off an agent that IMMEDIATELY performs additional processing on the document that I’m creating, but I don’t want to hold up my response to the caller of the Web Service while that processing happens.
Is there a way to kick off an agent from my Web Service, but not wait for it to finish before returning a response to the caller?
Thanks in advance to anyone who responds!
Rebecca