Hi there,
I'm currently try a connect to the LL-Webservices (LL-version 9.7.1) via PHP using the SOAP-Module.
Creating the SoapClient seems to be successfully because I get no error :-) But if try to authenticate me i run into an error.
<?php
$client = new SoapClient("http://[DOMAIN]/webservice/Authentication.svc?wsdl");
$result = $client->AuthenticateUser( "username", "password" );
var_dump($result);
?>
This error returns:
Fatal error: Uncaught SoapFault exception: [a:InternalServiceFault] Could not load file or assembly 'vjslib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The system cannot find the file specified. in
\Inetpub....
Has anyone tried successfully to connect via PHP/SOAP or had this error and fixed it?
Thanks for answers.
Regards
Markus Tamler