You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's located here: besimple/soap-wsdl/BeSimple/SoapWsdl/Dumper/Dumper.php
What I did is the following.
I created src/Webstuff/SoapBundle/SoapWsdl/Dumper/Dumper.php
That contains:
<?php
namespace Webstuff\SoapBundle\SoapWsdl\Dumper;
use BeSimple\SoapWsdl\Dumper as BaseDumper;
use BeSimple\SoapCommon\Definition\Definition;
class Dumper extends BaseDumper
{
public function __construct(Definition $definition, array $options = array())
{
echo 'CHECK';
exit;
}
}
?>
I have also added this to the WebstuffSoapBundle.php
public function getParent(){
return 'BeSimpleSoapBundle';
}
When visiting my wsdl path I would expect to see CHECK. But it's just loading the wsdl so this setup isn't working. I'm quite new to Symfony so I might be missing something. Hopefully someone can give me a push in the right direction! Thanks!
The text was updated successfully, but these errors were encountered:
You need to:
I. Extend the WebServiceContext (located as: besimple/soap/src/BeSimple/SoapBundle/WebServiceContext.php), so as to be able to use your dumper in "getWsdlFile" method instead of the parent dumper.
Hi all,
I'm trying to override this function:
It's located here: besimple/soap-wsdl/BeSimple/SoapWsdl/Dumper/Dumper.php
What I did is the following.
I created src/Webstuff/SoapBundle/SoapWsdl/Dumper/Dumper.php
That contains:
I have also added this to the WebstuffSoapBundle.php
When visiting my wsdl path I would expect to see CHECK. But it's just loading the wsdl so this setup isn't working. I'm quite new to Symfony so I might be missing something. Hopefully someone can give me a push in the right direction! Thanks!
The text was updated successfully, but these errors were encountered: