ZF-7181: Namespaces and WSDL Autodiscovery - PHP 5.3
Description
In the new relase of PHP (5.3) namespaces was introduced. When using these in conjuction with the AutoDiscover there are some problemes.
Consider this example.
/**
* @param some\package\Product
* @return boolean
*/
function foo($obj) {
// implementation
returns true;
}
When the autodiscover generates the WSDL, the complex definition of Object is namespaced in the wsdl complex name and in the message part type definition, example.
This looks ok, but when trying to connect this to SoapUi ie. this failes because of the slashes in the namespace.
I found a workaround for this, by rewriting the type which is send down to DefaultComplexType.php. That way the namespace is seperated by . (dott) in the wsdl, but it uses the correct namespace when reflects the object, creating the complex type.
We will probably end up extending the wsdl strategy classes, implementing this solution, but it would be nice if this could be fixed in an upcomming release of the Zend framework.
Comments
Posted by Benjamin Eberlei (beberlei) on 2009-07-03T04:27:04.000+0000
very good point :-)
Posted by Sasa Stamenkovic (umpirsky) on 2011-08-15T13:49:31.000+0000
Can you share the workaround please?