Remove the $soapClient class property and __wakeup() method. Storing a \SoapClient instance as a class property causes a fatal serialization error.
Replace with a getSoapClient() method that builds a fresh \SoapClient on demand, avoiding serialization.
Fixes: #3587054
Closes #3587054