Hello All,
One of my Application Scenario is that...
When I click on one ID from client side (Grid View) ; Server Action then take that ID and calls to API for response.
AIP Response has base64 data(1 to 5 MB). I convert base64 to binary data.
While sending 5 MB file from Server side to client side it takes much time. And even after that Refresh(Ajax Client side Refresh Widget) take much time to refresh the Grid. Is there any solution which can speed up the performance (Sending binary data from Server side to Client side) of the application.?
I have to give this option for download files on the client side.
Thanks
Hi JK2020,
Sending / receiving data from client-side to server-side is depending on the network (this can be specially critical on phones). This is something that needs to be in mind when developing the app to try to minimize this payload or process it background. With binaries, this takes even more importance.
Several things you can take into account:
Kind Regards,João
Hi,
Just an idea, you could zip the binary on the client side, then send the zip to the server and server doing extract.