Pagination in SOAP web service

0
Hello, I am trying to retrieve large datasets using a SOAP web service, but my server crashes due to the high volume of data. Is there a way to implement pagination or batch processing concepts in Mendix SOAP web services? Background: I have a button that, when clicked, will call a web service to retrieve a dataset, which I want to display in datagrid2.
asked
2 answers
0

Hi,

 

Consider using the task queue. https://docs.mendix.com/refguide/task-queue/ 

 

Go Make It

answered
0

Hello Raghavendra,

you need to implement strategies to prevent server crashes.

1.pagination approach- modify soap service to accept page parameter.

2.Batch processing- break the request into smaller chunks.

3.Process each batch separately with delay between them.

answered