Hi - Keen for some thoughts on this.
I'm using an XMLTemplater to prepare a SOAP request and then an HTTPCaller to make the call to a web service. This is working well.
The SOAP request takes a BatchNumber which is default 1.
The service returns data in batches (if there are more than a 1000 records). With the first return a BatchCount is also returned which tells me how many batches there are in total.
With this - If I re-call the service again and set BatchNumber to 2 in the SOAP request - then I'll get the next set and so on.
The problem I have? How do I model this? I have the process running perfectly with 1 batch. Don't know how to effectively re-run the process based on the number of BatchNumbers.
Any thoughts?
Thanks