2012-04-22 18:10:21 +02:00
|
|
|
<?php
|
|
|
|
|
2013-08-23 23:25:16 +02:00
|
|
|
require '../../../../../vendor/autoload.php';
|
|
|
|
|
2012-04-22 18:10:21 +02:00
|
|
|
use BeSimple\SoapCommon\Helper as BeSimpleSoapHelper;
|
|
|
|
use BeSimple\SoapServer\SoapServer as BeSimpleSoapServer;
|
|
|
|
|
2013-08-23 23:25:16 +02:00
|
|
|
use BeSimple\SoapClient\Tests\ServerInterop\Fixtures;
|
2012-04-22 18:10:21 +02:00
|
|
|
|
|
|
|
$options = array(
|
|
|
|
'soap_version' => SOAP_1_1,
|
|
|
|
'features' => SOAP_SINGLE_ELEMENT_ARRAYS, // make sure that result is array for size=1
|
|
|
|
'attachment_type' => BeSimpleSoapHelper::ATTACHMENTS_TYPE_MTOM,
|
|
|
|
'cache_wsdl' => WSDL_CACHE_NONE,
|
|
|
|
'classmap' => array(
|
2013-08-23 23:25:16 +02:00
|
|
|
'base64Binary' => 'BeSimple\SoapClient\Tests\ServerInterop\Fixtures\base64Binary',
|
2014-08-14 11:21:26 +02:00
|
|
|
'AttachmentType' => 'BeSimple\SoapClient\Tests\ServerInterop\Fixtures\AttachmentRequest',
|
2012-04-22 18:10:21 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
class Mtom
|
|
|
|
{
|
2014-08-14 11:21:26 +02:00
|
|
|
public function attachment(Fixtures\AttachmentRequest $attachment)
|
2012-04-22 18:10:21 +02:00
|
|
|
{
|
|
|
|
$b64 = $attachment->binaryData;
|
|
|
|
|
2013-08-23 23:25:16 +02:00
|
|
|
file_put_contents(__DIR__.'/'.$attachment->fileName, $b64->_);
|
2012-04-22 18:10:21 +02:00
|
|
|
|
2013-08-23 23:25:16 +02:00
|
|
|
return 'File saved succesfully.';
|
2012-04-22 18:10:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-23 23:25:16 +02:00
|
|
|
$ss = new BeSimpleSoapServer(__DIR__.'/Fixtures/MTOM.wsdl', $options);
|
2012-04-22 18:10:21 +02:00
|
|
|
$ss->setClass('Mtom');
|
|
|
|
$ss->handle();
|