Hi raveendran,
I'm new at this but I think you cat do this:
$server->wsdl->addComplexType(
'getMetadataSize',
'complexType',
'struct',
'sequence',
'',
array(
'startTime' => array('name' => 'startTime', 'type' => 'xsd:dateTime'),
'endTime' => array('name' => 'endTime', 'type' => 'xsd:dateTime')
)
);
|
This will create a complexType with name getMetadataSize but not an element called getMetadateSize containing a complexType structured as yours is. Your problem is similar to the one I am have.
I am trying to translated a massive set of XSD files into nuSOAP WSDL/SOAP framework but it looks to be difficult to shoehorn these complex XSDs into this framework.
Maybe someone else can explain better to us what we don't understand?
Ciao,
Soapy