hi,I'm converting my app to Swift 2. I found something different in session.dataTaskWithRequest. In the code below I use an HTTP URL to post the request. But this is somewhere converted to a HTTPS URL. So the server isn't reachable because the server don't use SSL? Why is this happening? Could I change this to HTTP anyway? func post(params : NSDictionary, url : String, postCompleted : (succeeded: Bool, msg: String, json: NSDictionary?) -> ()) { let request = NSMutableURLRequest(URL: NSURL(string: url)!) let session = NSURLSession.sharedSession() request.HTTPMethod = POST do { request.HTTPBody = try NSJSONSerialization.dataWithJSONObject(params, options: []) } catch let error as NSError { print(Error in request post: (error)) request.HTTPBody = nil } catch { print(Catch all error: (error)) } request.addValue(application/json, forHTTPHeaderField: Content-Type) request.addValue(application/json, forHTTPHeaderField: Accept) let task = session.dataTaskWithRequest(request, completionHandler: {data, resp