|
|
|
|
@ -158,6 +158,18 @@ $options = [ |
|
|
|
|
'location' => $webCodePath.'webservices/additional_webservices.php', |
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
$soapServer = new SoapServer(null, $options); |
|
|
|
|
$soapServer->addFunction('wsConvertPpt'); |
|
|
|
|
$soapServer->handle(); |
|
|
|
|
$soapServer = new \nusoap_server(null, $options); |
|
|
|
|
$soapServer->register( |
|
|
|
|
'wsConvertPpt', |
|
|
|
|
[ |
|
|
|
|
'secret_key' => 'xsd:string', |
|
|
|
|
'file_data' => 'xsd:base64Binary', |
|
|
|
|
'file_name' => 'xsd:string', |
|
|
|
|
'service_ppt2lp_size' => 'xsd:string', |
|
|
|
|
], |
|
|
|
|
[ |
|
|
|
|
'data' => 'xsd:string' |
|
|
|
|
] |
|
|
|
|
); |
|
|
|
|
$soapServer->configureWSDL('wsConvertPpt'); |
|
|
|
|
$soapServer->service($HTTP_RAW_POST_DATA); |
|
|
|
|
|