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

Sending File Data Over Webservice

2008-02-27 Thread Robert Rawlins
Hello Guys, I'm after a little advice on refactoring a web service which I have running on one of my applications. The webservice isnt a standard ColdFusion webservice running over SOAP, this is a custom REST service which simply recieves POST data into the FORM scope and then spits back an

RE: Sending File Data Over Webservice

2008-02-27 Thread Mark Kruger
type architecture. -Mark Mark A. Kruger, CFG, MCSE (402) 408-3733 ext 105 www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Robert Rawlins [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 27, 2008 2:48 PM To: CF-Talk Subject: Sending File Data Over