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',
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.