Replaced webservice.* service name by besimple.soap.*

This commit is contained in:
Francis Besset
2011-07-18 22:59:20 +02:00
parent 055bb8a96c
commit c13a96131b
6 changed files with 48 additions and 48 deletions

View File

@ -163,10 +163,10 @@ class SoapWebServiceController extends ContainerAware
private function getWebServiceContext($webservice)
{
if(!$this->container->has('webservice.context.'.$webservice))
if(!$this->container->has('besimple.soap.context.'.$webservice))
{
throw new NotFoundHttpException(sprintf('No webservice with name "%s" found.', $webservice));
}
return $this->container->get('webservice.context.'.$webservice);
return $this->container->get('besimple.soap.context.'.$webservice);
}
}