how can i convert SOAP struct like
<wsdl:types>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.example.org/service1/">
<xsd:complexType name="requestDescriptor">
<xsd:all>
<xsd:element name="x" type="xsd:string"></xsd:element>
<xsd:element name="xx" type="xsd:string"></xsd:element>
<xsd:element name="xxx" type="xsd:int"></xsd:element>
<xsd:element name="xxxx" type="xsd:string"></xsd:element>
<xsd:element name="xxxxx" type="xsd:string"></xsd:element>
</xsd:all>
</xsd:complexType>
</xsd:schema>
</wsdl:types>
to a php object if i call
$soapC = new SoapClient("http://192.168.1.3/forga/tests/vodSoapWS.wsdl");
$ret = $soapC->__getTypes();
$x = $ret[0];
the problem is $x type is string how can i used it as an object ??