samug Posted July 5, 2017 Share Posted July 5, 2017 I need create an abstact complexType in php with nusoap to create this type in wsdl: <xsd:complexType abstract="true" name="abstractClass"> <xsd:sequence> <xsd:element minOccurs="0" name="identifier" nillable="true" type="xsd:string"/> </xsd:sequence> </xsd:complexType> I don't know how to put it to be abstract. I'm using this in PHP: $server->wsdl->addComplexType( 'abstractClass', 'complexType', 'struct', 'sequence', '', array('identifier' => array('minOccurs' => '0','name' => 'identifier','type' => 'xsd:string')) ); Thanks. Quote Link to comment Share on other sites More sharing options...
Jacques1 Posted July 6, 2017 Share Posted July 6, 2017 (edited) NuSOAP is dead. The last version on SourceForge is from 2011, and the code is written for PHP 4 which had its last release back in 2008. You'd need a time machine or a complete rewrite to fix that. I couldn't find any such feature in the code either, so I think it's safe to assume it doesn't and will never exist. Edited July 6, 2017 by Jacques1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.