FetchXML. The entered and stored passwords do not match

591 views Asked by At

My CRM updated, and since then my custom reporting tool hasnt been working.

It uses PHP and the EntityUtils provided in examples. The issue is that I can authenticate with a LiveID but when I use CURL to get the soap response it gives a response of:

S:Senderwst:FailedAuthenticationAuthentication Failure0x800488210x80041012The entered and stored passwords do not match.

I've made sure that the email/password is correct by logging in, and verified that all URLs are correct.

1

There are 1 answers

0
Guido Preite On BEST ANSWER

Disclaimer: the solution was found by Andrew Campey on Dynamics Community Forum (link)

SSL v3.0 has been removed from Dynamics CRM due to the Poodle vulnerability. Non .NET clients need to handle most of the authentication process, including the SSL version.

The solution is to change the SSL version inside the curl request, from 3 to 4:

curl_setopt($cURLHandle, CURLOPT_SSLVERSION, 4);