Thank-you very much for your answer. i tried it and it works very fine. now I have a very similar doubt. If a find an wsdl where one operation use a complex typoe as for example:
- <xsd:complexType name="WeatherSummary">
- <xsd:sequence>
<xsd:element maxOccurs="1" minOccurs="1" name="location" nillable="true" type="xsd:string" />
<xsd:element maxOccurs="1" minOccurs="1" name="wind" nillable="true" type="xsd:string" />
<xsd:element maxOccurs="1" minOccurs="1" name="sky" nillable="true" type="xsd:string" />
<xsd:element maxOccurs="1" minOccurs="1" name="temp" nillable="true" type="xsd:string" />
<xsd:element maxOccurs="1" minOccurs="1" name="humidity" nillable="true" type="xsd:string" />
<xsd:element maxOccurs="1" minOccurs="1" name="pressure" nillable="true" type="xsd:string" />
<xsd:element maxOccurs="1" minOccurs="1" name="visibility" nillable="true" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
(
http://live.capescience.com/wsdl/AirportWeather.wsdl)
How should I define my type for making the invocation. i tried an ArraList but it did not work.
Thanks again for your help, looking forward to your new answer,
Guadalupe