Search code examples
iosiphoneswiftsoapios9.1

for SOAP xml parsing which framework is better (iOS swift)


i am new to soap xml parsing and i have a data like this so how can i send request and get response?? Here is my Schema

<xs:element name="Firmalar">
<xs:complexType>
  <xs:sequence>
    <xs:element name="FirmaNo" type="xs:int" minOccurs="0" />
  </xs:sequence>
</xs:complexType>


Solution

  • This is a very well written library to parse SOAP XMLs. It is iOS 8 and over only.

    Alternatively you can use NSXMLParser and implement your own parsing mechanism.