function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Jaybh01Jaybh01 

asynchronously callout using SOAP from Batch Apex

Can we make an asynchronous SOAP callout from Batch Apex?
RaidanRaidan
I don't believe so. You will need a listener to receive the notification when the process is done. In this case, Visualforce is the best candidate to execute an asynchronous SOAP.
Jaybh01Jaybh01
Thanks Raidan. My use case is, I will need to call  asynchronous service in a loop. It loops through a set of records and for each record, I will need to call the async service. It is not working. How I could achieve this?