如何使用在iOS中具有身份验证的SOAP

如何使用在iOS中具有身份验证的SOAP,ios,authentication,soap,Ios,Authentication,Soap,我有一个带有身份验证密钥的SOAP web服务 这是请求 <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">

我有一个带有身份验证密钥的SOAP web服务

这是请求

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <FlightSearch xmlns="http://someurl.com/">
      <Authkey>string</Authkey>
      <from>string</from>
      <SesID>string</SesID>
    </FlightSearch>
  </soap:Body>
</soap:Envelope>

一串
一串
一串
这是回应

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <FlightSearchResponse xmlns="http://someurl.com/" />
  </soap:Body>
</soap:Envelope>

请帮助我使用此文件中的数据。谢谢