An unhandled exception occurred while processing the request. Win32Exception: An existing connection was forcibly closed by the remote host
An unhandled exception occurred while processing the request. Win32Exception: An existing connection was forcibly closed by the remote host

Azure .NET web apps connecting to an AWS SQL database kept throwing up this error sporadically, seemingly without any pattern. The full message was this: An unhandled exception occurred while processing the request. Win32Exception: An existing connection was forcibly closed by the remote host. Unknown location.SqlException: A connection was successfully established with the server, but... » read more

How to use Chilkat S3_DownloadBytes and S3_UploadBytes to copy images in Classic ASP

Copy images between Amazon s3 buckets in memory only using Chilkat’s S3_DownloadBytes and S3_UploadBytes. Example classic ASP code.  Function http_copy_bytes(contentType,bucketSourceName,bucketDestName,objectName,justFileName)     Dim success, binaryImage      ‘ Set up chilkat http     Dim http : Set http = Server.CreateObject(“Chilkat.Http”)     http_unlock(http)     http.AwsAccessKey = AwsAccessKey ‘ your key     http.AwsSecretKey = AwsSecretKey ‘ your key ... » read more