CFFTP with form browsed file

2011-09-13 Thread Chad Baloga
Does anyone know if it is possible to upload a file browsed by a user using CFFTP instead of CFFILE upload? We are trying to find a solution which will upload files faster than using CFFILE upload. Any ideas? ~| Order the

Re: CFFTP with form browsed file

2011-09-13 Thread Russ Michaels
in order to FTP a file from the client machine you would need to be able to connect to the clients machine, which means they would need to be running an FTP server, or you would need to run some kind of FTP client on their machine to FTP the file to your server. Otherwise the file needs to be on

Re: CFFTP with form browsed file

2011-09-13 Thread Chad Baloga
OK thanks. We were using the asfusion uploader and now started moving to the cffileupload tag as well, but users are still complaining it is taking too long to upload files (Some files are as big as 800mb). in order to FTP a file from the client machine you would need to be able to connect

SAML and ColdFusion - struggling.

2011-09-13 Thread Mark A. Kruger
I'm in over my head trying to figure out SAML using Shibboleth server. I thought I had a grip on this but apparently not. I've installed Shibboleth and configured the XML files to point to the meta data provided by my customer. My problem is that I don't know what to DO with it? As I

Re: CFFTP with form browsed file

2011-09-13 Thread Russ Michaels
big files are going to take a long time to upload, this is just a fact of life i'm afraid. most peoples broadband speed has much slower upstream than downstream, changing protocols is not going to suddenly make things faster. The FTP protocol is intended for file transfers yes, but on single file

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Azadi Saryev
Andrew Not sure if you you solved this or not... IIRC, gmail/google apps mail also has a rate limit in addition to daily mails per account limit - if you exceed some number of emails per minute it starts rejecting mail. Some number was sometimes different in my tests, but it hovered around

Re: SAML and ColdFusion - struggling.

2011-09-13 Thread Russ Michaels
hey Mark, perhaps it would be best to start with the SAML portion first and get that working, it may be that you don't need Shibboleth in order to get the data you need. This seems a good place to start http://webdevwork.blogspot.com/2008/09/single-sign-on-with-saml-and-coldfusion.html HTH

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Russ Michaels
a cheap solution for bulk email is www.sendgrid.com which solves all your worries, We are working on a CFML application that wraps around their API to create CF based bulk mailing solution. On Tue, Sep 13, 2011 at 5:50 PM, Azadi Saryev azadi.sar...@gmail.com wrote: Andrew Not sure if you you

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Andrew Scott
Thanks Azadi, I have moved this part of the system to another dedicated email server that is controlled by me now. Which now seems to be working great, but I will keep that in mind for the future. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+:

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Andrew Scott
Well that is expensive when you compare that our solution is actually free. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/108193156965451149543 On Wed, Sep 14, 2011 at 2:56 AM, Russ Michaels r...@michaels.me.uk wrote: a cheap solution for

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Cameron Childress
On Tue, Sep 13, 2011 at 12:56 PM, Russ Michaels r...@michaels.me.uk wrote: a cheap solution for bulk email is www.sendgrid.com which solves all your worries, We are working on a CFML application that wraps around their API to create CF based bulk mailing solution. I has a conversation with

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Russ Michaels
that would depend. If you are purely talking about the cost to send the email then yes. But are you taking into consideration the time you need to spend to actually provide the same service that companies like sendgrid do. setting up relationships with DNSBL lists and spam databases, all the

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Russ Michaels
indeed there are many such companies out there, different people will have different experiences, you will find varied reviews of them all on google. On Tue, Sep 13, 2011 at 6:04 PM, Cameron Childress camer...@gmail.com wrote: On Tue, Sep 13, 2011 at 12:56 PM, Russ Michaels r...@michaels.me.uk

RE: SAML and ColdFusion - struggling.

2011-09-13 Thread Mark A. Kruger
Russ, Thanks... are you volunteering to help? -Mark Mark Kruger - CFG CF Webtools www.cfwebtools.com www.coldfusionmuse.com O: 402.408.3733 x105 E: mkru...@cfwebtools.com Skype: markakruger -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Tuesday, September

Re: CFFTP with form browsed file

2011-09-13 Thread Gerald Guido
The FTP protocol is intended for file transfers yes, but on single file uploads I don;t imagine you will see a big difference. One would think... but actually HTTP needs to encode(base64) the binary content into plain text and increases the total transfer size by ~1/3. So an 800 meg file will

Re: CFFTP with form browsed file

2011-09-13 Thread Gerald Guido
but actually HTTP needs to encode(base64) the binary content into plain text and increases the total transfer size by ~1/3. Actuully scratch that. I was thinking of something else. But I did have good luck with the embedded FTP client. It worked very well. Especially for failed uploads. G!

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Andrew Scott
Russ, I don't wish to get into a heavy debate on this, and as the campaigns that are being sent are by subscription all those issues you have pointed out become mute. Now for someone else then this might be something that they could consider. -- Regards, Andrew Scott WebSite:

Re: CFFTP with form browsed file

2011-09-13 Thread Nick Voss
Have you tried using an Ajax call to execute the ftp protocol using the browser? The danger would be you'd expose the username/password of your receiving FTP server, so you'd have to configure an account with put-only privileges and some sort of receiving script. You'll have a challenge with

cf.Objective() 2012 - May 16-19 - Hyatt Regency, downtown Minneapolis

2011-09-13 Thread Sean Corfield
Just saw the announcements of the date venue and wanted to spread the news! -- Sean A Corfield -- (904) 302-SEAN An Architect's View -- http://corfield.org/ World Singles, LLC. -- http://worldsingles.com/ Railo Technologies, Inc. -- http://www.getrailo.com/ Perfection is the enemy of the good.

Re: SAML and ColdFusion - struggling.

2011-09-13 Thread Russ Michaels
Free time is something I don't have in abundance, If you send me over the details I will happily take a look for you when I get a chance and see if I can make sense of it. But Shibboleth and SAML is new ground for me as well, however I have been looking into the google Single Singon service,

RE: SAML and ColdFusion - struggling.

2011-09-13 Thread Mark A. Kruger
Russ... all right - I'll see if anything else turns up. I have a Java guy helping me at the moment with some samples that Ben sent me... I'll keep poking at it. -Mark Mark Kruger - CFG CF Webtools www.cfwebtools.com www.coldfusionmuse.com O: 402.408.3733 x105 E: mkru...@cfwebtools.com Skype: 

CFHTTP, self-signed certificates - authentication issues.

2011-09-13 Thread .jonah
Hi. I'm trying to make a REST webservice call to another server on the local network using CFHTTP. The server communicates over HTTPS and has a self-signed certificate, so I imported it into the Java cacerts keystore (http://kb2.adobe.com/cps/400/kb400977.html) and I can list it and see it

Re: CFHTTP, self-signed certificates - authentication issues.

2011-09-13 Thread Russ Michaels
perhaps this will help you http://www.bpurcell.org/blog/index.cfm?entry=843mode=entry Russ I also tested the URL with cURL from the CF server and it does the authentication handshake but response is compressed(?) PKwSxKhmuecfkOOdw6UQ75SLViTBf3ZXzQNNBU8qiByUNxlswYhTmlXc3csh... What am I

CFFILE in CFWINDOW

2011-09-13 Thread Scott Spurlock
In CF8, I'm trying to upload multiple files via a CFFORM in a CFWINDOW.  I've googled enough to know it can't be done with just good ol' ColdFusion since the file upload fields aren't being passed along in the form.  I've looked at uploadify and some other AJAX solutions, but I don't need

Re: CFFILE in CFWINDOW

2011-09-13 Thread Chad Baloga
Have you tried cffileupload? I wrote some code a few weeks ago that has a cffileupload in a cfwindow On Sep 13, 2011 6:33 PM, Scott Spurlock spurlock.sc...@yahoo.com wrote: In CF8, I'm trying to upload multiple files via a CFFORM in a CFWINDOW. I've googled enough to know it can't be done with

Re: CFHTTP, self-signed certificates - authentication issues.

2011-09-13 Thread .jonah
Thanks Russ. That was one of the posts I found and used to import the certificate. I'll re-do everything but I'm pretty sure I've got the cert installed correctly. .jonah On 9/13/11 1:37 PM, Russ Michaels wrote: perhaps this will help you

Caching ajax / dhtml

2011-09-13 Thread Matt Williams
I have some divs that are populated with tweet.js (jquery plugin for twitter). So on document.ready(), the divs are populated by the plugin. I don't want to hit twitter on every page load and want to cache the populated divs somehow. Is there a way to take those populated divs and cache them?

Re: CFFILE in CFWINDOW

2011-09-13 Thread Russ Michaels
there is a nice flash uploader at www.asfusion.com which might do what you need. On Tue, Sep 13, 2011 at 11:54 PM, Chad Baloga cbal...@gmail.com wrote: Have you tried cffileupload? I wrote some code a few weeks ago that has a cffileupload in a cfwindow On Sep 13, 2011 6:33 PM, Scott Spurlock

Re: Caching ajax / dhtml

2011-09-13 Thread William Seiter
JavaScript is run on the client side, so unless that JavaScript is pointed to your server to get the information... You will need to find another way. -- William Seiter On Sep 13, 2011, at 4:12 PM, Matt Williams mgw...@gmail.com wrote: I have some divs that are

Re: CFHTTP, self-signed certificates - authentication issues.

2011-09-13 Thread Matthew Williams
What version of ColdFusion? I've seen issues with even a Verisign cert under 9.x that required finagling at the java level to finally resolve the issue. -- Matthew Williams Geodesic GraFX www.geodesicgrafx.com/blog twitter.com/ophbalance

Re: Caching ajax / dhtml

2011-09-13 Thread Michael Grant
Not on the client side. Either way you have to hit a server. Better Twitter's than yours I'd say. On Tue, Sep 13, 2011 at 7:12 PM, Matt Williams mgw...@gmail.com wrote: I have some divs that are populated with tweet.js (jquery plugin for twitter). So on document.ready(), the divs are

Re: CFHTTP, self-signed certificates - authentication issues.

2011-09-13 Thread .jonah
The server is ColdFusion 9.0.1 hotfix 1 / Java 1.6.0_17 64 bit / Windows 2008 64 bit. Also, is there a way to verbosely log the cf / java behind cfhttp to see a more detailed error message? Thx, .jonah On 9/13/11 4:55 PM, Matthew Williams wrote: What version of ColdFusion? I've seen issues

Re: CFHTTP, self-signed certificates - authentication issues.

2011-09-13 Thread Leigh
Also, is there a way to verbosely log the cf / java behind cfhttp to see a more detailed error message? If you do not mind tons of logging, try using the jvm argument -Djavax.net.debug=all http://kb2.adobe.com/cps/998/9987e902.html