Posts

Showing posts from October, 2019

How to implement SOAP Web service with SWIFT programming language?

Firest Create a function   SoapReq.Swift and past this code.                       import UIKit          import Alamofire             class SoapReq: NSObject, XMLParserDelegate, NSURLConnectionDelegate {         var mutableData:NSMutableData  = NSMutableData()         var currentElementName:NSString = ""         var responseString = ""         var delegate: writeValueBackDelegate?         var url = ""         var soapMe = "<?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/'>"         func soapmesss(){           ...