Quiero ignorar la verificación del certificado, ¿dónde y cómo hacerlo con el servicio web XMLRPC?

Estoy accediendo a un servicio web y obtengo este error cuando intento conectarme (el servicio web es XMLRPC y estoy usando el código fuente de wordpress xmlrpc para la solicitud y el manejo de la respuesta):

Error Domain = NSURLErrorDomain Code = -1202 "El certificado para este servidor no es válido. Es posible que se esté conectando a un servidor que pretende ser"** **.org "que podría poner en riesgo su información confidencial".

La gente de WebService dice que ignore la parte de verificación del certificado, por lo que si alguien tiene idea de cómo hacerlo, será de gran ayuda para mí.

después de alguna sugerencia, utilicé el siguiente delegado NSURLConnection, todavía el mismo error

 -(BOOL)connection:(NSURLConnection *)connection  canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace {  
 return [protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust];
 }   

 -(void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge {  
 if ([challenge.protectionSpace.authenticationMethod isEqualToString:NSURLAuthenticationMethodServerTrust])  
if ([trustedHosts containsObject:challenge.protectionSpace.host])  
  [challenge.sender useCredential:[NSURLCredential  credentialForTrust:challenge.protectionSpace.serverTrust] forAuthenticationChallenge:challenge];  
  [challenge.sender continueWithoutCredentialForAuthenticationChallenge:challenge];
}

Respuestas a la pregunta(4)

Su respuesta a la pregunta