Re: retrieve remote images using cfhttp?

2001-03-23 Thread coldfusion
turns out that this is how you can do it... although i couldnt find it anywhere within 3 books or any of the online help (v4.5). thanks for all the help and suggestions cfhttp method="get" url="http://www.lexus.com/images/home/mn_ph_sc_top.jpg" path="c:\images\cars\" file="myfile.jpg"/cfhttp

RE: retrieve remote images using cfhttp?

2001-03-22 Thread Bryan Love
All CFHTTP does with an action of GET is execute the page specified in the URL and return the contents to a variable. You can output this content and it will look as if you had gone to that page, but you cannot just grab files (physically) from another machine using this method. In order to do

RE: retrieve remote images using cfhttp?

2001-03-22 Thread Mike Sullivan
have you tried 'resolveurl="true"'? ie cfhttp method="GET" url="http://www.lexus.com/images/home/mn_ph_sc_top.jpg" resolveurl="true" mike -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED]] Sent: Thursday, March 22, 2001 1:06 PM To: CF-Talk Subject: retrieve

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