I already seen the similar question's posted here. I am looking for a right way to start.
The requirement is, i have to build a restful web service, which expose a method(return product data from the internal DB ) to any client .
The maximum product data, service should expose is 10000 rows of record. We measure the size for 10000 products it comes somewhere between 4mb to 6mb.
I heard people facing problems sending large data through the network.
My question now is
1) Is it really possible to send almost 7,8mb data as service response? should i go for this requirement?(which is again a critical requirement from business .if we can achieve this that solve a lot of issues here.)
2) If yes which is the best method should i choose.?Since i have only read theories,and new to rest services, i am looking for an expert advise before starting the project.
please don't find this as a duplicate question,and give me some guidance to start.. which really helps.
Note: Right now one Rest service exist here which send 500 products to client.clients using http post method to retrieve data.same service we have to modify for sending 10.000 data
Thanks in advance SNA