Added besimple.soap.cache service

This commit is contained in:
Francis Besset
2011-09-04 01:59:32 +02:00
parent 502ba41935
commit 1a4e9246db
7 changed files with 124 additions and 1 deletions

View File

@ -11,6 +11,7 @@
namespace BeSimple\SoapBundle\Soap;
use BeSimple\SoapBundle\Converter\ConverterRepository;
use BeSimple\SoapCommon\Cache;
use Zend\Soap\Wsdl;
/**
@ -39,7 +40,7 @@ class SoapServerFactory
'classmap' => $this->classmap,
'typemap' => $this->createSoapServerTypemap($request, $response),
'features' => SOAP_SINGLE_ELEMENT_ARRAYS,
'cache_wsdl' => $this->debug ? WSDL_CACHE_NONE : WSDL_CACHE_DISK,
'cache_wsdl' => Cache::getType(),
)
);
}