Environment:
The WSDL (server) I work with, have the following schema sub-sections (I tried to w
I believe what you are looking for is:
itinerary0 = self.client.factory.create('itinerary')
itineraryArray = self.client.factory.create('itineraryArray')
print itineraryArray
itineraryArray.itinerary.append(itinerary0)
Just had to do this myself;) What helped me find it was printing to the console. That would have probably given you the following:
(itineraryArray){
itinerary[] =
}
Cheers,Jacques