I want to access a webservice in android which has a complex type inside another complex type. An example of the soap request is
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:tem="http://tempuri.org/" xmlns:pat=" http://schemas.datacontract.org/2004/07/Patient_Service.App_Code.Common"> <soapenv:Header/> <soapenv:Body> <tem:PatientLookups> <tem:oBenefitsandEligibilityEntity> <pat:ID>?</pat:ID> <pat:Name>?</pat:Name> <pat:Age>?</pat:Age> <pat:ContactDetails> <pat:PatientContactEntity> <pat:FirstName></pat:FirstName> <pat:LastName></pat:LastName> </pat:PatientContactEntity> </pat:ContactDetails> </tem:oBenefitsandEligibilityEntity> </tem:PatientLookups> </soapenv:Body> NB: The nested complex types are marked in red color: I successfully called a webservice with single complex type by using KvmSerializable . But how it is possible to pass values to nested complex types? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

