I have a SOAP client in PHP that makes calls to a WSDL service. One of the functions returns a base64binary data. I\'ve been trying to decode it without any
Although previous answer is absolutely correct but I feel this may be helpful to get quick solution.
When we check in response xml then we see base64 encoded data and we try to decode it in our code to get the real data but it is not required.
Remove base64_decode
.
Because SOAP client internally decode itself.