Re: sFTP using CFFTP and the AES-256 Cipher

2014-07-15 Thread Scott Stewart
and now that we have the correct login credentials this works On 7/9/2014 2:44 PM, Scott Stewart wrote: > Dave, this gives me a different error, about an invalid key or > passphrase, but I'm much closer to a solution. > > Thanks > > sas > > > On Wed, Jul 9, 2014 at 2:07 PM, Dave Watts

Re: sFTP using CFFTP and the AES-256 Cipher

2014-07-09 Thread Scott Stewart
Dave, this gives me a different error, about an invalid key or passphrase, but I'm much closer to a solution. Thanks sas On Wed, Jul 9, 2014 at 2:07 PM, Dave Watts wrote: > > > The receiving box is using the AES-256 cipher, and it doesn't appear that > > CF9 supports it. I've already dumped

Re: sFTP using CFFTP and the AES-256 Cipher

2014-07-09 Thread Dave Watts
> The receiving box is using the AES-256 cipher, and it doesn't appear that > CF9 supports it. I've already dumped the results of > java.security.Security.getProviders(). and there's nothing in the providers > array that specifically references AES-256..I'm also a noob when it comes > to keyed enc

sFTP using CFFTP and the AES-256 Cipher

2014-07-09 Thread Scott Stewart
Hey all, I'm trying to implement an sFTP connection between an IIS webserver and another server. It's the typical CF generates a consumable file and drops it off somewhere via SFTP scenario. However The receiving box is using the AES-256 cipher, and it doesn't appear that CF9 supports it. I'

Using CFFTP under proxy - proxy password missing

2007-03-28 Thread Marco Antonio C. Santos
Hi all. How can I access a FTP server under a proxy. OK, ok: using proxyserver attribute, right? But where proxypassword enters? Whitout proxypassword is impossible to access a remote ftp server inside our intranet. Cheers ~| U

RE: Using CFFTP Via SSH

2006-04-24 Thread Damien McKenna
> -Original Message- > From: Michael Traher [mailto:[EMAIL PROTECTED] > Sent: Monday, April 24, 2006 10:34 AM > > Hi Damien, I have updated my cfsftp.cfc and it now does > 'rename' (or mv) as you requested and I've made some other minor > improvements. Cool, thanks for getting to it bef

Re: Using CFFTP Via SSH

2006-04-24 Thread Michael Traher
Hi Damien, I have updated my cfsftp.cfc and it now does 'rename' (or mv) as you requested and I've made some other minor improvements. I'm looking into the key based authentication - may come in next release :-) When you posted this I was on holiday in Florida - Marco Island. From you web site I

RE: Using CFFTP Via SSH

2006-04-14 Thread Damien McKenna
> -Original Message- > From: [EMAIL PROTECTED] > Sent: Friday, April 14, 2006 10:48 AM > > Mike Traher recently posted a cfc to his blog which may be what you're > looking for. /me tips his hat to Kola and Mike. Perfect. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Co

RE: Using CFFTP Via SSH

2006-04-14 Thread kola.oyedeji
e [mailto:[EMAIL PROTECTED] > Sent: 14 April 2006 04:54 > To: CF-Talk > Subject: Re: Using CFFTP Via SSH > > Hey Scott, > I ran into this exact issue last week. > > Check out: > > http://www.glub.com/products/secureftp/ > > It's a java package that r

Re: Using CFFTP Via SSH

2006-04-13 Thread Billy Jamme
Hey Scott, I ran into this exact issue last week. Check out: http://www.glub.com/products/secureftp/ It's a java package that runs quite nicely in a command line. As an added bouns it has batch scripting. The way I implemented it was to dynamically generate a batch file using cffile, then

Re: Using CFFTP Via SSH

2006-04-13 Thread Denny Valliant
On 4/13/06, James Holmes <[EMAIL PROTECTED]> wrote: > > Can't an SSH tunnel be set up so that the standard FTP used by CF goes > via the tunnel? Yeah, that would work too, I bet. Not as nifty as an Open Source java solution tho. ;-) Another option is skipping the cfftp, and setting up (if you'r

RE: Using CFFTP Via SSH

2006-04-13 Thread Damien McKenna
> -Original Message- > From: blists [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 13, 2006 3:10 PM > > Search the archive, I posted how I did this with jscapes FTP Factory > (http://www.jscape.com/sftp/index.html) , including code a > few months back Nice, but it costs $600 :-\

Re: Using CFFTP Via SSH

2006-04-13 Thread blists
Search the archive, I posted how I did this with jscapes FTP Factory (http://www.jscape.com/sftp/index.html) , including code a few months back At 11:38 AM 4/12/2006, you wrote: >We've got a requirement to use CFFTP via SSH (SFTP). Has anyone been able to >do this? > > > >Thanks > > > >Scott

Re: Using CFFTP Via SSH

2006-04-13 Thread Andrew Grosset
Yeh, I'm going to have to get my eyes tested...! >Thanks Andrew... That's the wrong protocol tho. heh... I guess that's >the danger of acronyms, CFFTP looks a lot like CFHTTP when you're >scanning the list. :) > >> I think this tag does: > >> http://www.cftagstore.com/tags/cfxhttp5.cfm > > > >s.

Re: Using CFFTP Via SSH

2006-04-13 Thread Andrew Grosset
Oops! I guess my eyesite is not what it was... >Thanks Andrew... That's the wrong protocol tho. heh... I guess that's >the danger of acronyms, CFFTP looks a lot like CFHTTP when you're >scanning the list. :) > >> I think this tag does: > >> http://www.cftagstore.com/tags/cfxhttp5.cfm > > > >s. isa

Re: Using CFFTP Via SSH

2006-04-13 Thread James Holmes
Can't an SSH tunnel be set up so that the standard FTP used by CF goes via the tunnel? On 4/13/06, Damien McKenna <[EMAIL PROTECTED]> wrote: > > -Original Message- > > From: Scott Stewart [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, April 12, 2006 2:38 PM > > > > We've got a requirement

Re: Using CFFTP Via SSH

2006-04-12 Thread Denny Valliant
It's a pain in the ass I'd bet, but you could use a Java SSH library. I thought it was cool that I could use the javamail API and get SSL imap mail without installing anything new. If someone does request the SSH stuff, could they put in one for ssl via imap as well? Um... wait, I dont' think the

Re: Using CFFTP Via SSH

2006-04-12 Thread S . Isaac Dealey
Thanks Andrew... That's the wrong protocol tho. heh... I guess that's the danger of acronyms, CFFTP looks a lot like CFHTTP when you're scanning the list. :) > I think this tag does: > http://www.cftagstore.com/tags/cfxhttp5.cfm >>> Scott Stewart wrote: >> >>> CFFTP doesn't support Secure FTP, u

Re: Using CFFTP Via SSH

2006-04-12 Thread James Blaha
Scott, Another option, you can go to SSH.com downaload the Windows SSH client then setup a PUBLIC KEY autehenitcation to the server you want to connect to so you dont have to enter in a uid and password then use CFEXECUTE to execute the main batch script. Regards, Jim Batch File 1: i.e. "C:

RE: Using CFFTP Via SSH

2006-04-12 Thread Scott Stewart
have received this communication in error, please notify us immediately by replying to the message and deleting it from your computer. -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 12, 2006 3:36 PM To: CF-Talk Subject: RE: Using CFFTP Via SSH

RE: Using CFFTP Via SSH

2006-04-12 Thread Damien McKenna
> -Original Message- > From: Damien McKenna > Sent: Wednesday, April 12, 2006 3:06 PM > > CFMX doesn't support SFTP, or FTPS. I suggest using the psftp command > that comes with PuTTY to do this, which is what I'm doing at work. When I get a chance I'll doll up my code a bit more and re

RE: Using CFFTP Via SSH

2006-04-12 Thread Damien McKenna
> -Original Message- > From: Andrew Grosset [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 12, 2006 3:24 PM > > >> CFFTP doesn't support Secure FTP, unfortunately. > > I think this tag does: > http://www.cftagstore.com/tags/cfxhttp5.cfm That tag is for HTTP, not FTP. -- Damien McKe

Re: Using CFFTP Via SSH

2006-04-12 Thread Andrew Grosset
I think this tag does: http://www.cftagstore.com/tags/cfxhttp5.cfm >> Scott Stewart wrote: > >> CFFTP doesn't support Secure FTP, unfortunately. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237608 Archives: http:/

Re: Using CFFTP Via SSH

2006-04-12 Thread S . Isaac Dealey
> Scott Stewart wrote: >> We've got a requirement to use CFFTP via SSH (SFTP). Has >> anyone been able to >> do this? > CFFTP doesn't support Secure FTP, unfortunately. Yet... It really ought to be included in the next version tho, so now's a good time to request it. :) http://www.macromedia.com

RE: Using CFFTP Via SSH

2006-04-12 Thread Damien McKenna
> -Original Message- > From: Scott Stewart [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 12, 2006 2:38 PM > > We've got a requirement to use CFFTP via SSH (SFTP). Has > anyone been able to do this? CFMX doesn't support SFTP, or FTPS. I suggest using the psftp command that comes wi

Re: Using CFFTP Via SSH

2006-04-12 Thread Rick Root
Scott Stewart wrote: > We've got a requirement to use CFFTP via SSH (SFTP). Has anyone been able to > do this? CFFTP doesn't support Secure FTP, unfortunately. Rick ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237

Using CFFTP Via SSH

2006-04-12 Thread Scott Stewart
We've got a requirement to use CFFTP via SSH (SFTP). Has anyone been able to do this? Thanks Scott Scott A. Stewart Webmaster/ Developer GlobalNet Services, Inc http://www.gnsi.com 11820 Parklawn Dr Rockville, MD 20852 Voice: (301) 770-9610 x 335 Fax: (3

File Upload using CFFTP

2002-04-30 Thread Thanh Nguyen
One quick question about CFFTP. How do I get the local file name in the tag so that the uploaded file will the same name as the local file? Thanks. __ Your ad could be here. Monies from ads go to support thes

Re: Using CFFTP - resulting filesize is 0 bytes??

2001-11-30 Thread BILLY CRAVENS
D]> Sent: Friday, November 30, 2001 3:25 PM Subject: RE: Using CFFTP - resulting filesize is 0 bytes?? > USERNAME="username" >PASSWORD="password" >SERVER="serverip" >LOCALFILE="Africa.rm" >REMOTEFILE="Africa.rm&quo

RE: Using CFFTP - resulting filesize is 0 bytes??

2001-11-30 Thread Bosky, Dave
-Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Friday, November 30, 2001 3:44 PM To: CF-Talk Subject: Re: Using CFFTP - resulting filesize is 0 bytes?? Without the code you're using you will only be getting guesses. Lets see the code On Fri, 30 Nov 2001, Bosky,

Re: Using CFFTP - resulting filesize is 0 bytes??

2001-11-30 Thread Alex
Without the code you're using you will only be getting guesses. Lets see the code On Fri, 30 Nov 2001, Bosky, Dave wrote: > Anyone know what may be causing this file to be ftp'ed and have a filesize > of 0 bytes? > > Thanks. > Dave > > > > > ~~~

Using CFFTP - resulting filesize is 0 bytes??

2001-11-30 Thread Bosky, Dave
Anyone know what may be causing this file to be ftp'ed and have a filesize of 0 bytes? Thanks. Dave ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetpro

Need help for using cfftp to access to MVS system

2001-05-11 Thread yungchih chen
Hi, has anyone use cfftp to acess to MVS system? I am able to open a connection, but not able to list the directory. I can get the current directory, but for some reason when I try to list directory, I kept getting 0 record. here is my code Did you succeed? #cfftp.succeeded# cfftp.errorcode:#c

Help for using cfftp to access to MVS system

2001-05-09 Thread PGI Interactive
Hi, has anyone use cfftp to access to MVS system? I am able to open the connection and get the currentdirectory, but I am not able to list the directory or send a file to the MVS system. When i try to list the directory, I kept getting 0 file. here is my code Did you succeed? #cfftp.succeeded#