I've spent almost two full days trying to resolve this issue, but to no avail. Any help is greatly appreciated.
I am trying to make a Soap Request in PHP using php's build in SoapClient. I have verified that trying to send a request where the size of envelope is smaller than 4MB works great. The communication between the called server and my client has no issues in this circumstance. As soon as I tip the size of the envelope just over 4MB, my php instance takes somewhere between 1-2 minutes to throw a SoapFault where the error message is "Error fetching HTTP headers". I have my max_post_size and memory_limits set to 150M in my php.ini and my IIS request limit is set to 500MB.
I have verified that if I am not using php to make the SOAP request, I can complete my request and response chain with bodies upwards of 4MB in no time at all, so I feel that I've narrowed this down to a php/SoapClient issue.
If anybody has any ideas, I would greatly appreciate the help. I am not sure what else to try at this point.
PHP Warning: SoapClient::__doRequest(): SSL: An existing connection was forcibly closed by the remote host. in C:\myvu\services\vendor\vu\file_storage_client\FileStorageClient\File\VuStore\VuStoreFileManager.php on line 54 [07-May-2015 08:31:48 America/Chicago] Error Fetching http headers
Thank you!
Phil