RE: Using cfhttp to access FTP via IE

2003-11-04 Thread Dave Watts
If I do the following from within IE I can access the server and contents ftp://username:password@IPADDRESS/data But within my app I'm using the following and it doesn't work. Keeps telling me Connection Failure? What am I doing wrong? cfhttp url=""> method=get username=username

RE: Using cfhttp to access FTP via IE

2003-11-04 Thread Tyler Clendenin
if it is that important you can create a custom tag that parses the string and applies it to cfftp Tyler Clendenin GSL Solutions _ From: Bushy [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2003 2:22 PM To: CF-Talk Subject: Re: Using cfhttp to access FTP via IE Yes cfftp work

RE: Using cfhttp to access FTP via IE

2003-11-04 Thread Lewis Sellers
Your browser is an HTTP client and an FTP client. If you want to perform FTP operations from CF, you'll have to use CFFTP instead of CFHTTP. Dave Watts, CTO, Fig Leaf Software Like Dave says, HTTP and FTP are fairly different protocols. Different command sets, different ports, etc. Microsoft

RE: Using cfhttp to access FTP via IE

2003-11-04 Thread J E VanOver
Read Only?On WinXP it acts just like another explorer window.Drag and drop to ftp.Kinda nice! Jevo -Original Message- From: Lewis Sellers [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 04, 2003 12:36 PM To: CF-Talk Subject: RE: Using cfhttp to access FTP via IE Your browser is an HTTP

Using CFHTTP to download EPSes

2003-10-14 Thread Owens, Howard
Here's my tag: cfhttp url="" method=get path=#request.ImagePath# file=#ad_struct[loopCount].adID##request.filetype#.EPS?a=site/locationt=ts /f:eps Tag works fine for getting the JPG version of the image.But when adding the stuff to request the EPS version, nothing happens.However, if I

RE: Using CFHTTP to download EPSes

2003-10-14 Thread Owens, Howard
~~ -Original Message- From: Owens, Howard [SMTP:[EMAIL PROTECTED] Sent: Tuesday, October 14, 2003 11:32 AM To: CF-Talk Subject: Using CFHTTP to download EPSes Here's my tag: cfhttp url="" method=get path=#request.ImagePath

Running program using CFHTTP

2002-05-29 Thread phumes1
I'm looking at the documentation and it looks like I might be able to use cfhttp to run my program on the server from a client PC. I'm not having very much success using cfexecute. Some programs work...others don't. I even tried creating a .bat file without any success. This would be the

RE: Running program using CFHTTP

2002-05-29 Thread Philip Arnold - ASP
I'm looking at the documentation and it looks like I might be able to use cfhttp to run my program on the server from a client PC. I'm not having very much success using cfexecute. Some programs work...others don't. I even tried creating a .bat file without any success. This would be the

RE: Running program using CFHTTP

2002-05-29 Thread phumes1
At 02:04 PM 5/29/2002 +0100, you wrote: I'm looking at the documentation and it looks like I might be able to use cfhttp to run my program on the server from a client PC. I'm not having very much success using cfexecute. Some programs work...others don't. I even tried creating a .bat

Re: Running program using CFHTTP

2002-05-29 Thread Lewis Sellers
On Wed, 29 May 2002 09:20:09 -0400, in cf-talk you wrote: I've done this with another program that works OK. I have another program that just doesn't seem to work properly using CFEXECUTE so I was wondering if there was a way with CFHTTP? No. (Not unless it was designed to run that way.) I

Running program using CFHTTP

2002-05-29 Thread phumes1
I was successful getting my program to run using cfhttp. I created a virtual directory programs under IIS. I need to pass a filename to the program. How can I do this using the URL? WHen I run the below code I get the error that a input file does not exist which is the correct error

Re: Running program using CFHTTP

2002-05-29 Thread phumes1
At 09:50 AM 5/29/2002 -0400, you wrote: On Wed, 29 May 2002 09:20:09 -0400, in cf-talk you wrote: I've done this with another program that works OK. I have another program that just doesn't seem to work properly using CFEXECUTE so I was wondering if there was a way with CFHTTP? No. (Not

Using CFHTTP

2001-08-20 Thread A . Little
Hi all, I'm trying to use the cfhttp tag to get a webpage in a directory on our server which is not open to the general public. I don't like the idea of having to hard code a username and password into the attributes of the cfhttp tag. Is there a way round this? I've tried to change the login

RE: Using CFHTTP

2001-08-20 Thread Christopher Olive, CIO
, August 20, 2001 10:19 AM To: CF-Talk Subject: Using CFHTTP Hi all, I'm trying to use the cfhttp tag to get a webpage in a directory on our server which is not open to the general public. I don't like the idea of having to hard code a username and password into the attributes of the cfhttp tag

retrieving files using cfhttp

2001-05-29 Thread Chris Rice
Does anybody know if there is a way to output a binary image file retrieved using CFHTTP without first saving it to disk? I am attempting to serialize the image into WDDX, and have managed to do it by using the file and path attributes of CFHTTP (then using CFFILE), but would prefer

Re: retrieving files using cfhttp

2001-05-29 Thread Michael Lugassy
: Chris Rice [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, May 29, 2001 3:54 PM Subject: retrieving files using cfhttp Does anybody know if there is a way to output a binary image file retrieved using CFHTTP without first saving it to disk? I am attempting to serialize the image

using cfhttp for ASP?

2001-04-04 Thread SHEETS, DAYV (PB)
Can anyone tell me if it is possible to perform a cfhttp with ASP as the template? If it is possible please also provide an example of how this is accomplished. Thanks, Dayv ~~ Structure your ColdFusion code with Fusebox. Get the official book

RE: using cfhttp for ASP?

2001-04-04 Thread Dylan Bromby
you want to grab the content of an ASP page with CFHTTP? sure. CFHTTP URL="http://domain/path/file.asp" METHOD="GET" did you *try* it? -Original Message- From: SHEETS, DAYV (PB) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 04, 2001 8:31 AM To: CF-Talk Subject:

RE: using cfhttp for ASP?

2001-04-04 Thread Kurt Ward
Can't be done. Try ASPTear. -Original Message- From: SHEETS, DAYV (PB) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 04, 2001 11:31 AM To: CF-Talk Subject: using cfhttp for ASP? Can anyone tell me if it is possible to perform a cfhttp with ASP as the template? If it is possible

Re: using cfhttp for ASP?

2001-04-04 Thread Nick McClure
cfhttp will connect to whatever you tell it to; ASP, PHP, perl, CF, Python, HTML etc. Call it just as you always have. At 08:30 AM 4/4/2001 -0700, you wrote: Can anyone tell me if it is possible to perform a cfhttp with ASP as the template? If it is possible please also provide an example of

RE: using cfhttp for ASP?

2001-04-04 Thread Garza, Jeff
You can certainly call ASP pages from a CFM template using CFHTTP. We did that as a workaround to get some old data into our CF sites (lazy, and didn't want to rewrite the pages...). cfhttp url="myasppage.asp" method="POST" port="80" reso

RE: using cfhttp for ASP?

2001-04-04 Thread SHEETS, DAYV (PB)
asp text is not being shown. ?? Thanks, Dayv -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 04, 2001 8:44 AM To: CF-Talk Subject: RE: using cfhttp for ASP? you want to grab the content of an ASP page with CFHTTP? sure. CFHTTP URL="http:

Re: using cfhttp for ASP?

2001-04-04 Thread Dick Applebaum
If you mean to use an asp template as the target URL of cfhttp, the answer is yes. cfhttp simulates a browser request to the asp template and receives whatever target page is served as a result of the processing of the asp template. If you mean "can an asp template perform the equivalent of

RE: using cfhttp for ASP?

2001-04-04 Thread Dylan Bromby
specifiy the port as a parameter of CFHTTP, not in the URL attribute. and *just* to make sure...it's really running on port 800 not 80? -Original Message- From: SHEETS, DAYV (PB) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 04, 2001 9:08 AM To: CF-Talk Subject: RE: using cfhttp

RE: using cfhttp for ASP?

2001-04-04 Thread Garza, Jeff
: SHEETS, DAYV (PB) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 04, 2001 9:08 AM To: CF-Talk Subject: RE: using cfhttp for ASP? Sure did. ;) I created a page named "test.asp" and within the body I have %response.write "This is a test..." % In my cfm page I have in the bo

RE: using cfhttp for ASP?

2001-04-04 Thread Mark Woods
ttp://collections.sbc.com:800/test.asp" METHOD="GET" However, when I pull up the cfm page the asp text is not being shown. ?? Thanks, Dayv -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 04, 2001 8:44 AM To: CF-Talk Subject: RE:

RE: using cfhttp for ASP?

2001-04-04 Thread Nick McClure
04, 2001 8:44 AM To: CF-Talk Subject: RE: using cfhttp for ASP? you want to grab the content of an ASP page with CFHTTP? sure. CFHTTP URL="http://domain/path/file.asp" METHOD="GET" did you *try* it? -Original Message- From: SHEETS, DAYV (PB) [mailto:[EMAIL PROTECTED]]

RE: using cfhttp for ASP?

2001-04-04 Thread Nick McClure
To: CF-Talk Subject: using cfhttp for ASP? Can anyone tell me if it is possible to perform a cfhttp with ASP as the template? If it is possible please also provide an example of how this is accomplished. Thanks, Dayv ~~ Structure your ColdFusion

RE: using cfhttp for ASP?

2001-04-04 Thread Tumy, Brad
Frames. -Original Message- From: SHEETS, DAYV (PB) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 04, 2001 12:39 PM To: CF-Talk Subject: RE: using cfhttp for ASP? What I'd like to be able to accomplish is to incorporate my ASP scripts into my Cold fusion pages. Is this possible

RE: using cfhttp for ASP?

2001-04-04 Thread SHEETS, DAYV (PB)
I would like this funtion. Thanks! Dayv -Original Message- From: Nick McClure [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 04, 2001 9:46 AM To: CF-Talk Subject: RE: using cfhttp for ASP? This can be done also. you have to use the COM object from MS,. I have a function

RE: using cfhttp for ASP?

2001-04-04 Thread SHEETS, DAYV (PB)
Thanks Nick. When I execute the page however, I receive an error message "Connection Failure"... Thanks, Dayv -Original Message- From: Nick McClure [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 04, 2001 9:46 AM To: CF-Talk Subject: RE: using cfhttp for ASP?

RE: using cfhttp for ASP?

2001-04-04 Thread Philip Arnold - ASP
Can anyone tell me if it is possible to perform a cfhttp with ASP as the template? If it is possible please also provide an example of how this is accomplished. cfhttp url="http://www.myDomain.com/ASPpage.asp" method="get" All this will do is call the ASP page and return the results into the

Re: using cfhttp for ASP?

2001-04-04 Thread David E. Crawford
D] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, April 04, 2001 13:17 Subject: RE: using cfhttp for ASP? Thanks Nick. When I execute the page however, I receive an error message "Connection Failure"... Thanks, Dayv -Original Message- From: Nick McClu

RE: using cfhttp for ASP?

2001-04-04 Thread Garza, Jeff
l# CFELSE #cfhttp.filecontent# /cfoutput Jeff Garza Web Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- From: SHEETS, DAYV (PB) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 04, 2001 10:17 AM To: CF-Tal

RE: using cfhttp for ASP?

2001-04-04 Thread SHEETS, DAYV (PB)
David - YOU THE MAN! That did it. A million thanks! Dayv -Original Message- From: David E. Crawford [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 04, 2001 10:49 AM To: CF-Talk Subject: Re: using cfhttp for ASP? Depending on your version of CF you may have to specify the port

Re: retrieve remote images using cfhttp?

2001-03-23 Thread coldfusion
quot; file="myfile.jpg"/cfhttp - Original Message - From: [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, March 22, 2001 1:05 PM Subject: retrieve remote images using cfhttp? i have been trying for the better part of the morning to figure out where i

retrieve remote images using cfhttp?

2001-03-22 Thread coldfusion
i have been trying for the better part of the morning to figure out where i am going wrong with the CFHTTP tag. i get a list of about 200 cars two times a week and the majority have photos (with full url to other sites) but cant seem to figure out how to get CFHTTP to download an image off of

RE: retrieve remote images using cfhttp?

2001-03-22 Thread Bryan Love
Developer [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 22, 2001 1:06 PM To: CF-Talk Subject: retrieve remote images using cfhttp? i have been trying for the better part

RE: retrieve remote images using cfhttp?

2001-03-22 Thread Mike Sullivan
M To: CF-Talk Subject: retrieve remote images using cfhttp? i have been trying for the better part of the morning to figure out where i am going wrong with the CFHTTP tag. i get a list of about 200 cars two times a week and the majority have photos (with full url to other sites) but ca

Re: retrieve remote images using cfhttp?

2001-03-22 Thread Jason Lotz
CF-Talk" [EMAIL PROTECTED] Sent: Thursday, March 22, 2001 2:39 PM Subject: RE: retrieve remote images using cfhttp? have you tried 'resolveurl="true"'? ie cfhttp method="GET" url="http://www.lexus.com/images/home/mn_ph_sc_top.jpg" resolveurl="true" mi

RE: retrieve remote images using cfhttp?

2001-03-22 Thread lsellers
i have been trying for the better part of the morning to figure out where i am going wrong with the CFHTTP tag. i get a list of about 200 cars two times a week and the majority have photos (with full url to other sites) but cant seem to figure out how to get CFHTTP to download an image

Question: Using CFHTTP to Masquerade

2001-01-22 Thread David Adams
Because of my environment, I am only allowed one port for my webserver, which is port 80, and I would like to include a search interface on my site, running on port 90. Can I use CFHTTP to masquerade? This is the code I would normally use to access my search server, if I had the freedom to

RE: Question: Using CFHTTP to Masquerade

2001-01-22 Thread Dylan Bromby
why don't you just try it? -Original Message- From: David Adams [mailto:[EMAIL PROTECTED]] Sent: Monday, January 22, 2001 9:16 AM To: CF-Talk Subject: Question: Using CFHTTP to Masquerade Because of my environment, I am only allowed one port for my webserver, which is port 80, and I

RE: Question: Using CFHTTP to Masquerade

2001-01-22 Thread lsellers
Because of my environment, I am only allowed one port for my webserver, which is port 80, and I would like to include a search interface on my site, running on port 90. Can I use CFHTTP to masquerade? No. CFHTTP has nothing to do with setting up what ports the http server answers on.

Output from .cfm to .html using cfhttp

2000-09-25 Thread David
Hi all, We need to output the result of a .cfm to .html. The idea was to have some user input and when he clicks submit, a .html file will be generated. So in CFHTTP tag, we specified the url as "http://somedomain#cgi.script_name#?action=#url.action#" referring to the page that does the

Errors when using CFHTTP / WDDX on 4.5

2000-07-12 Thread Geoffrey V. Brown
Hi, Since I've upgraded to 4.5, using cfhttp with any xml or text templates is not working. We now get an error that states that the ascii file that we are attempting to display is invalid. To work with the data read from cfhttp, we need to dump the content to a file, then read it back

<    1   2   3