system.net.httpClient POST method

We have an API service that would never respond to httpPost so we import the urllib and urllib2 and use those functions for posting to that particular API service.
One thing that we found necessary, after running for a while, is that we needed to explicitly .close() the request to prevent overrunning the max connections.
.close() is hardly documented and some say it is not necessary
Here’s a snip from our code:

	try:
		apiRequest 	= urllib2.Request(endPoint, data, header)
		apiResponse	= urllib2.urlopen(apiRequest)
		qctResponse	= apiResponse.read()
		apiResponse.close()		# close the connection JIRA Issue: QCT-1678