Has someone any idea if I can output a PHP SOAP response while the request is in process, I tried severel things but no results, it seems to be not possible, is that possible at all?
So my thing is, how do I output the result of a SOAP request while SOAP is still in process?
There is no way you can read
results which the server sent back alreadyfor a soap response. The soap response comes in an envelope, analogous to a real postal letter. Both comes as a single message, and once delivered, you can open and read it. There is no way to can read the first page of a postal letter while “the rest is still arriving”..On the other hand, if you are calling multiple Soap services, then you can do that asynchronously and show each soap response as soon as that particular soap response envelope has completed delivery. This is just like regular asynchronous ajax processing, and there is nothing additional to it.