Hi, iḿ working in an GPON OSS project based fully in PHP.
i work a lot with php soap to communicate with other systems an it works very fine.
now I'm trying to map an output response to a soap response and I don't know how to declare an outpur response with "unknown" output length...
e.g. this is a fixed out response:
<xsd:complexType name="datosSalidaConsultaAten">
<xsd:sequence>
<xsd:element name="resultado" type="xsd:int" minOccurs="0" />
<xsd:element name="descripcion" type="xsd:string" minOccurs="0" />
<xsd:element name="id" type="xsd:int" minOccurs="0" />
<xsd:element name="RxOpticalLevel" type="xsd:string" />
<xsd:element name="TxOpticalLevel" type="xsd:string" />
<xsd:element name="Power_feed_voltage" type="xsd:string" />
<xsd:element name="Laser_bias_current" type="xsd:string" />
<xsd:element name="Temperature" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
I need something like this:
<xsd:complexType name="datosSalidaConsultaMacAddress">
<xsd:sequence>
<xsd:element name="resultado" type="xsd:int" minOccurs="0" />
<xsd:element name="descripcion" type="xsd:string" minOccurs="0" />
<xsd:element name="id" type="xsd:int" minOccurs="0" />
<xsd:element name="mac" type="xsd:string" CAN be MULTIPLE LINES LIKE THIS />
</xsd:sequence>
</xsd:complexType>
idont known if i explain it well....
thaks anyway
Bernardo