B
Brian K. Maher
Guest
Hi Karikalan, You can just check the AppserverHandle:ASYNC-REQUEST-COUNT and when it returns zero there are no more outstanding/active async requests and you should then be able to run your sync request. /* loop until all async requests are complete */ DO WHILE AppserverHandle:ASYNC-REQUEST-COUNT <> 0: PROCESS EVENTS. END. /* once DO WHILE block ends there are no more async requests */ /* so now we can run the sync request. */ RUN .p ON AppserverHandle. Brian
Continue reading...
Continue reading...