RE: Sending File Data Over Webservice

2008-02-28 Thread Robert Rawlins - Think Blue
Message- From: Mark Kruger [mailto:[EMAIL PROTECTED] Sent: 27 February 2008 21:19 To: CF-Talk Subject: RE: Sending File Data Over Webservice Robert, We have a web service used for the state of California that wraps image files up as base64 - exactly as you suggest below. The image files

RE: Sending File Data Over Webservice

2008-02-28 Thread Dave Watts
What are the overheads like on using cfcontent to deliver a file opposed to simply having it available in a web accessible directory? Significant, in my past experience. The CFCONTENT request monopolizes a CF thread for the duration of the download. As an alternative, you might consider

RE: Sending File Data Over Webservice

2008-02-28 Thread Robert Rawlins - Think Blue
: 28 February 2008 09:07 To: CF-Talk Subject: RE: Sending File Data Over Webservice What are the overheads like on using cfcontent to deliver a file opposed to simply having it available in a web accessible directory? Significant, in my past experience. The CFCONTENT request monopolizes a CF

RE: Sending File Data Over Webservice

2008-02-28 Thread Mark Kruger
in Linux. Would you have to pass arguments to a shell script Dave? -Mark -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Thursday, February 28, 2008 3:07 AM To: CF-Talk Subject: RE: Sending File Data Over Webservice What are the overheads like on using cfcontent to deliver

RE: Sending File Data Over Webservice

2008-02-28 Thread Dave Watts
I have never used the symlink idea - although I've heard him mention it before. I'd be interested in a code snippet on how to do this on the fly in Linux. Would you have to pass arguments to a shell script Dave? Yes, or in Windows, to a batch file that runs the Sysinternals tool

RE: Sending File Data Over Webservice

2008-02-28 Thread Robert Rawlins - Think Blue
I wonder if this can also be done using underlying JAVA classes and things like that? Might be worth looking around for some libraries. Rob -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: 28 February 2008 16:36 To: CF-Talk Subject: RE: Sending File Data Over

RE: Sending File Data Over Webservice

2008-02-28 Thread Mark Kruger
, February 28, 2008 10:36 AM To: CF-Talk Subject: RE: Sending File Data Over Webservice I have never used the symlink idea - although I've heard him mention it before. I'd be interested in a code snippet on how to do this on the fly in Linux. Would you have to pass arguments to a shell script

RE: Sending File Data Over Webservice

2008-02-27 Thread Mark Kruger
Robert, We have a web service used for the state of California that wraps image files up as base64 - exactly as you suggest below. The image files are obviously much smaller than media files (mostly less than half a meg), but I can tell you that you are on the right track thinking that it is a