Rule Definition
When designing web service to get/put/post data, you want to make sure that you minimize the number of calls between the client application and web service server.
By minimizing the number of calls, you improve application speed, reduce communications overhead (why send three request when you can do it by one), and reduce network traffic.
Remediation
Try to create a process queue that will manage all the requests with a limited number of concurrent requests. When a request callback has been managed a new request could be fired.
Violation Code Sample
>>> from httplib import HTTPConnection
>>> conn = HTTPConnection("www.python.org")
>>> for url in urllist:
>>> conn.request("GET", url)
Reference
CISQ OMG ASCPEM-PRF-08
Related Technologies
Technical Criterion
CWE-1050 - Excessive Platform Resource Consumption within a Loop
About CAST Appmarq
CAST Appmarq is by far the biggest repository of data about real IT systems. It's built on thousands of analyzed applications, made of 35 different technologies, by over 300 business organizations across major verticals. It provides IT Leaders with factual key analytics to let them know if their applications are on track.