• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Coldfusion 10 CFFTP Problems

Explorer ,
Apr 13, 2015 Apr 13, 2015

Copy link to clipboard

Copied

I am trying to simply open a connection output if it succeeded and close the connection. The page I have works fine in CF9 but in CF10 hitting the same server with the same credentials stalls the page out. It doesn't error out or timeout it just sits there forever loading the page and never finishes connecting.

I have tried an sftp client other than coldfusion from the same server with the same credentials and it works fine. When I look at the SFTP logs it shows that coldfusion connected but it is not authenticating and completing the connection.

Did something change with CFFTP in Coldfusion 10 that I missed? Any thoughts or suggestions to get this working?

Here is what the page has on it.

<cfftp action = "open"

server = "server"

stoponerror="yes"

username = "user"

password = "pass"

connection = "sftptest"

secure = "yes">

<cfoutput> Connection Open :#cfftp.succeeded# </cfoutput>

        

<cfftp connection = "sftptest"

    action = "close"

    stopOnError = "yes">

TOPICS
Advanced techniques

Views

745

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Apr 22, 2015 Apr 22, 2015

Copy link to clipboard

Copied

Have you looked at the various ColdFusion logs?

You may well see something that gives you a clue as to what is happening.

Cheers

Eddie

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 02, 2015 May 02, 2015

Copy link to clipboard

Copied

LATEST

What happens when you use just

<cfftp action = "open"

server = "server"

stoponerror="yes"

username = "user"

password = "pass"

connection = "sftptest">

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation