Re: cfftp with SSL (Coldfusion 8)

2012-12-20 Thread Steve Milburn

Really?  I've used CF8 with Bitvise and Tumbleweed sFTP servers for a while
and it works a treat.  I used a blog post by Ben Nadel as a guide:
http://www.bennadel.com/blog/1337-My-First-ColdFusion-8-CFFTP-Experience-Rocky-But-Triumphant.htm

Anyway, this doesn't address the initial question of using CF with FTPS
which is a whole other can of worms. I just wanted to throw that out there.

Steve


On Wed, Dec 19, 2012 at 3:34 PM, Dan Crouch stario...@yahoo.com wrote:


 I have never had much luck when dealing with sftp or ftps through CF. We
 set up a test sftp server using Bitvise and I could not for the life of me
 connect to it. Using Chilkat's ssh/sftp .dll in a vb.net application, I
 was able to connect to it in minutes. So we just created an .exe and had
 the CF server call it as a scheduled task.




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353555
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: cfftp with SSL (Coldfusion 8)

2012-12-20 Thread James Davis

Neither CF8 or CF9 support SFTP using CFFTP. 

However, like Russ mentioned, you can use some java libraries as an 
alternative. One project I worked on that required connecting to an sftp server 
we used the apache commons-net library (commons.apache.org/net) and it worked 
like a charm. Not nearly as simple as a cfftp tag, but once I got it working, 
it's been rock solid. Being an apache project, their documentation is pretty 
good, although geared towards a java dev, so you'll have to translate it into 
your cf code. 

Good luck!

James

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353569
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfftp with SSL (Coldfusion 8)

2012-12-19 Thread Dan Crouch

I have never had much luck when dealing with sftp or ftps through CF. We set up 
a test sftp server using Bitvise and I could not for the life of me connect to 
it. Using Chilkat's ssh/sftp .dll in a vb.net application, I was able to 
connect to it in minutes. So we just created an .exe and had the CF server call 
it as a scheduled task. 

 But livedocs show support only for SSH http://livedocs.adobe.
 com/coldfusion/8/htmldocs/help.html?content=Tags_f_18.html.
 
 The same steps do not work when connecting to SSL.
 
 From memory, SFTP support was added to ColdFusion in version 8. So, 
 yes.
 SSL FTP is available to you.
 
 nathan strutz
 [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz]
 
 
 
 On Tue, Dec 18, 2012 at 11:35 AM, fun and learning
 funandlrnn...@gmail.comwrote:
 
 
  All -
 
  Is it possible to use cfftp to connect to a secure ftp server over 
 SSL?
 
  Thank you.
 
  

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353545
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfftp with SSL (Coldfusion 8)

2012-12-19 Thread Russ Michaels

You can probably do it directly with java or jsp I would imagine as a
workaround.

Regards
Russ Michaels
www.michaels.me.uk
www.cfmldeveloper.com - Free CFML hosting for developers
www.cfsearch.com - CF search engine
On Dec 19, 2012 8:34 PM, Dan Crouch stario...@yahoo.com wrote:


 I have never had much luck when dealing with sftp or ftps through CF. We
 set up a test sftp server using Bitvise and I could not for the life of me
 connect to it. Using Chilkat's ssh/sftp .dll in a vb.net application, I
 was able to connect to it in minutes. So we just created an .exe and had
 the CF server call it as a scheduled task.

  But livedocs show support only for SSH http://livedocs.adobe.
  com/coldfusion/8/htmldocs/help.html?content=Tags_f_18.html.
 
  The same steps do not work when connecting to SSL.
 
  From memory, SFTP support was added to ColdFusion in version 8. So,
  yes.
  SSL FTP is available to you.
  
  nathan strutz
  [www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz]
  
  
  
  On Tue, Dec 18, 2012 at 11:35 AM, fun and learning
  funandlrnn...@gmail.comwrote:
  
  
   All -
  
   Is it possible to use cfftp to connect to a secure ftp server over
  SSL?
  
   Thank you.
  
  

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353546
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


cfftp with SSL (Coldfusion 8)

2012-12-18 Thread fun and learning

All -

Is it possible to use cfftp to connect to a secure ftp server over SSL?

Thank you. 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353532
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfftp with SSL (Coldfusion 8)

2012-12-18 Thread Nathan Strutz

From memory, SFTP support was added to ColdFusion in version 8. So, yes.
SSL FTP is available to you.

nathan strutz
[www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz]



On Tue, Dec 18, 2012 at 11:35 AM, fun and learning
funandlrnn...@gmail.comwrote:


 All -

 Is it possible to use cfftp to connect to a secure ftp server over SSL?

 Thank you.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353535
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfftp with SSL (Coldfusion 8)

2012-12-18 Thread fun and learning

From memory, SFTP support was added to ColdFusion in version 8. So, yes.
SSL FTP is available to you.

nathan strutz
[www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz]



On Tue, Dec 18, 2012 at 11:35 AM, fun and learning
funandlrnn...@gmail.comwrote:


 All -

 Is it possible to use cfftp to connect to a secure ftp server over SSL?

 Thank you.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353536
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfftp with SSL (Coldfusion 8)

2012-12-18 Thread fun and learning

But livedocs show support only for SSH 
http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=Tags_f_18.html.

The same steps do not work when connecting to SSL.

From memory, SFTP support was added to ColdFusion in version 8. So, yes.
SSL FTP is available to you.

nathan strutz
[www.dopefly.com] [hi.im/nathanstrutz] [about.me/nathanstrutz]



On Tue, Dec 18, 2012 at 11:35 AM, fun and learning
funandlrnn...@gmail.comwrote:


 All -

 Is it possible to use cfftp to connect to a secure ftp server over SSL?

 Thank you.

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:353537
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm