php - Soap connection with Silex -
i've tried connect api here: http://www.hrd.pl/wsparcie/api/nawiazanie-polaczenia/ micro-framework silex.
i've found on github solution: https://github.com/ibsciss/zend-soap-service-provider i've made on readme. registered service that:
$app->register(new zendsoapserviceprovider());
and after i've got blank page , error.log says:
php fatal error: class 'zendsoapserviceprovider' not found in /home/stolarz/public_html/hosting-site/web/index.php on line 30
can give me hint, i've stucked. there way connect soap silex?
you need specify namespace of class trying instantiate.
use ibsciss\silex\provider\zendsoapserviceprovider;
Comments
Post a Comment