Does cfhttp for coldfusion 10 only supports up to TLS 1.0?

天涯浪子 提交于 2019-12-02 01:14:28

问题


Does cfhttp for coldfusion 10 only supports up to tls 1.0?

When I disable tls 1.0 in the web server only allowed 1.1 and higher it seems to break the scheduled tasks.

CF 10 with JRE 1.6


回答1:


The problem is with the Java version you are using, not CF10.

TLS 1.1 is only supported in Java 1.8 on CF10 (Oddly 1.7 and above in CF11)

See this Adobe Blog as a starting guide to updating your Java.

http://blogs.coldfusion.com/post.cfm/how-to-change-upgrade-jdk-version-of-coldfusion-server

  1. Using ColdFusion administrator console.

    • Download the latest minor version of the supported JDK or Server JRE.
    • Install the JDK or Server JRE.
    • Navigate to ColdFusion Administrator > Server Settings > Java and JVM section.
    • Browse the path to the JDK or Server JRE from the “Java Virtual Machine Path” textbox which you intended to use with ColdFusion.
    • Click “Submit Changes”. Restart the ColdFusion Application service.
  2. By changing the JDK or Server JRE path from the jvm.config file.

    • Download the latest minor version of the supported JDK or Server JRE.
    • Install the JDK or Server JRE.
    • Open jvm.config file located at \cfusion\bin.
    • Change the value of java.home to the JDK or Server JRE path. [For example: C:\Program Files\Java\jdk1.8.0_25\jre or C:/Program Files/Java/jdk1.8.0_25/jre]
    • Save the changes to the jvm.config file.
    • Restart the ColdFusion Application service.

You will require Update 14 and above if you want to install Java 1.8 on CF10



来源:https://stackoverflow.com/questions/37046087/does-cfhttp-for-coldfusion-10-only-supports-up-to-tls-1-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!