ColdFusion 9- I/O Exception: peer not authenticate
I am using ColdFusion 9 Enterprise edition and using CFHTTP to send data to consume an API for SMS services, but I am getting the following Error I/O Exception: peer not authenticated. 
My Code
<cfhttp url='https://sms.itpark.pk/api/sendsms' method='POST' multipart='yes' result='res'> <cfhttpparam type="header" name="username" value="03xxxxxxxx" > <cfhttpparam type="header" name="mask" value="ITPARK" > <cfhttpparam type="header" name="password" value="00xxxxxxx" > <cfhttpparam type="header" name="to" value="92300xxxxxxx" > <cfhttpparam type="header" name="from" value="92300xxxxxxx" > <cfhttpparam type="header" name="message" value="Some Message" > </cfhttp>
What I Tried:
I've Googled and searched and tested all possible solutions. Even Installed the Certificate of the service provider, tried changing the JVM but ColdFusion 9 won't start. Tried to follow the instructions on adobe Website to patch 9.0.2, installed JDK1.7 but still the server won't start when restarted. May be the patch did not install correctly, though followed the exact instructions.. Then I installed ColdFusion 2021 developer edition to test and it worked. Its due to the JVM. CF9 supports Java version 1.6 and CF2021 supports Java 1.8, I even tried to add -Dhttps.protocols=TLSv1.2 but still no help.
Urgent Help Needed
