
AeroProDrive
-
Posts
3 -
Joined
-
Last visited
Community Answers
-
AeroProDrive's post in Curl Soap Response Parsing Issue was marked as the answer
I think I found the problem. The @result is of bool type while I was expecting the string from the xml
Therefore I changed return $result; to return $result === true ? "true" : "false";
Now it works like a charm
Thank you so much