I am having some difficulty. The company I work for has a vendor that has a SOAP web service (built using WCF if it matters), which is the only way we can retrieve the CSV files we need. I am able to successfully connect to their soap service using PHP's built-in SoapClient functions and retrieve the list of files that their system says are available. Below is how they word what their service does regarding actually downloading those files:
Method signature: StreamBody downloadDailyCSV(string fileName)
fileName: The name of the CSV file to download
Returns: A StreamBody containing file data which can be read in chunks of up to 4,096 bytes
They provide some sample code in C# for connecting to their service and downloading the stream, but I am very unclear on how to do this with PHP's soapclient. I have tried using the Curl system to connect to their service but it's not working that way either. Is there some type of soap call or argument I am missing?
I appreciate your help.