Hello guys I need help to consume a webservice with the structure below ... I have the following WSDL:

   
     
       
     
   
 
 
   
     
     
     
     
     
     
     
     
     
   
 
 
   
     
     
   
 

I am not able to consume the method as follows:


Fcard_VendorServicesService fc = new Fcard_VendorServicesService(); retConsultarPartidas retCP = fc.consultarPartidas(); ArrayOfarrayPartidas afp = retCP.arrayPartidas;

how to access the values ??of:

<xsd:element name="codigo" type="xsd:int" />   <xsd:element name="data" type="xsd:string" />   <etc...>

thanks!