Hi, Not sure if this is resolved. mostly this error is due to a webserver security certificate being issued to a name for ed: hostname "AX2012R3.Contoso.com" (in certificate cn=AX2012R3) and the public dns name being "Ax2012R3.net". so, the AsynchClient url you're trying to access is http://Ax2012R3.net:8303/AsynchServer the security certificate cn should be looking like "AX2012R3.net" I fixed this issue by doing the following opened a VS2013 x64 Native Tools Command Prompt and created a certificate manually: makecert -sky exchange -r -n "cn=ax2012r3.net" -len 2048 -ss MY -sr LocalMachine Once the certificate is created, follow the standard procedure of importing it into the Trusted Root certification Authorities in both Server and Client. Let me know if this helps
↧