How can I integrate a soap client in TYPO3 Extbase? I have installed php_soap on the webserver. Can I use the normal http://php.net/manual/de/soapclient.soapclient.php implementation?
$client = new SoapClient("my.wsdl", array('login' => "my_name",
'password' => "my_passwort"));
Maybe there are some extbase implementations available?
Thanks for a quick tipp. I dint' find good extbase documentation for this purpose.
Just found this: Create object in extbase extension from a PHP standard class