1
Good morning to you all. I have an A portal application that sends the information to another B portal via a webservice. But the portal A can not wait for the return of the portal B otherwise it blocks the access of the user in the portal A.
I would like to know: When the portal A accesses the website of portal B it would have to return a reply to the portal A that received the request and continue to process this request.
Yes, there’s a way. It’s still vague to say how because you haven’t mentioned the technologies you’re using.
– Giuliana Bezerra
Since you did not specify technologies, the B portal would receive the request, open an asynchronous processing thread or process, and return the asynchronous processing start response to the A portal, while completing the longer process execution. When the process is finished, you communicate the portal A again at the end of the execution, sending the response of this processing.
– eduardosouza
My C# apsnet fails
– Alysson