Re: CF Developer Edition on a NAS Drive

2012-08-22 Thread Cameron Childress
On Tue, Aug 21, 2012 at 5:47 PM, Peter Donahue pdonah...@satx.rr.comwrote: In addition to addressing our file storage issues I'll finally have a local environment for developing and testing Web sites before they go live. As others have suggested, there are better ways to do this than the NAS

RE: Verity Collections Stalling

2012-08-22 Thread Mosh Teitelbaum
Paul: Not happy to hear that but I suppose it's better than continuing to rip my hair out. Thanks for the help. -- Mosh Teitelbaum evoch, LLC http://www.evoch.com/ Paul Vernon wrote: Seriously, that solution is what I came up with after spending more time than I'd like to admit to

cfmailparam

2012-08-22 Thread Robert Harrison
I just found out (with no help from the Adobe documentation) that you can get an email generated via CF mail to return a read receipt by adding the following to the mail content. cfmailparam name=Disposition-Notification-To value=m...@domain.com This is the Message

Re: cfmailparam

2012-08-22 Thread Brian Thornton
Robert this isn't a CF feature as much as it s a W3c mail standard and is based on the mail provider ie exchange. On Wed, Aug 22, 2012 at 12:29 PM, Robert Harrison rob...@austin-williams.com wrote: I just found out (with no help from the Adobe documentation) that you can get an email

RE: cfmailparam

2012-08-22 Thread Ben Forta
Short answer: It's not going to work reliably. Longer answer: You can request notification, but there is no guarantee that servers or clients will provide it. You may have more luck determining that the message was delivered to a specific mailbox on the server depending on the server used, but

Re: cfmailparam

2012-08-22 Thread Raymond Camden
This may be off topic - but how exactly did the docs fail you? cfmailparam is documented, is it not? http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7c15.html Or is your argument that an example isn't provided? On Wed, Aug 22, 2012 at 12:29 PM, Robert

Re: cfmailparam

2012-08-22 Thread Dave Watts
I just found out (with no help from the Adobe documentation) that you can get an email generated via CF mail to return a read receipt by adding the following to the mail content. cfmailparam name=Disposition-Notification-To value=m...@domain.com This is the Message

RE: cfmailparam

2012-08-22 Thread Robert Harrison
OK. I get it. It's not an Adobe thing, but it would have been helpful if the Adobe documentation said something more. It says: Name; Required if you do not specify file attribute; Name of header. Case-insensitive. Mutually exclusive with file attribute. Where it says Name

cfmailparam

2012-08-22 Thread Robert Harrison
So, I've found two headers I can use: cfmailparam name=Disposition-Notification-To value=n...@domain.com cfmailparam name=Return-Receipt-To value=n...@domain.com The first one seems to work effectively. The

Re[2]: Installing Railo on IIS7.5

2012-08-22 Thread Michael David
I have some time tomorrow to load this up and give it a shot. Might anyone have any thoughts on how stable (or not) Beta 4.0 is? -- Cheers! Michael David -- Original Message -- From: Matt Quackenbush quackfu...@gmail.com To: cf-talk cf-talk@houseoffusion.com Sent: 8/20/2012

Query with no results is not defined

2012-08-22 Thread Brian Cain
Hello, I have migrating from CF7 to CF9, and have found a strange problem. It seems when I try to reference a query that has no results, CF thinks that object does not exist but this behavior is not consistent. I have full debugging turned on for my local machine, and I can even see the

Re: Query with no results is not defined

2012-08-22 Thread Cameron Childress
On Wed, Aug 22, 2012 at 5:38 PM, Brian Cain bcc9...@gmail.com wrote: Has anyone encountered this behavior, or have any idea why this is occurring? Is it in a CFC? Smells like an improperly scoped query. Show some code? -Cameron -- Cameron Childress -- p: 678.637.5072 im: cameroncf

Re: Query with no results is not defined

2012-08-22 Thread Brian Cain
It is not in a CFC CFQUERY name=PastDueInvoices datasource=#appdatasource# SELECT r.ID, r.InvoiceDate, r.DueByDate, r.DatePaid, r.Approved, Sum(li.Quantity*li.Cost) - Sum(li.Quantity*li.Discount) as AmountDue FROM Receipts r LEFT JOIN LineItems li ON li.ReceiptID = r.ID WHERE

Re: Query with no results is not defined

2012-08-22 Thread Alan Rother
Try explicitly scoping the variable As in variables.PastDueInvoices - first its just good form, second it does make the app run faster, as when you don't provide the explicit scope, CF has to check through a number of scopes for it. It could also explain the issue - if for example anywhere else

Re: Query with no results is not defined

2012-08-22 Thread Brian Cain
I tried that and it still does not exist. On Wed, Aug 22, 2012 at 4:57 PM, Alan Rother alan.rot...@gmail.com wrote: Try explicitly scoping the variable As in variables.PastDueInvoices - first its just good form, second it does make the app run faster, as when you don't provide the explicit

Re: Query with no results is not defined

2012-08-22 Thread Raymond Camden
What do you see if you cfdump variables? cfdump var=#variables# On Wed, Aug 22, 2012 at 5:01 PM, Brian Cain bcc9...@gmail.com wrote: I tried that and it still does not exist. On Wed, Aug 22, 2012 at 4:57 PM, Alan Rother alan.rot...@gmail.com wrote:

Re: Query with no results is not defined

2012-08-22 Thread Claude Schnéegans
second it does make the app run faster, as when you don't provide the explicit scope May be 1 msec faster on the server, but at least 1 sec longer for me to write the code, neither my server neither myself are paid on a hourly rate ;-)

Re: Query with no results is not defined

2012-08-22 Thread Claude Schnéegans
IT ERRORS RIGHT HERE! Waht is the error message ? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: cfmailparam

2012-08-22 Thread Dave Watts
So, I've found two headers I can use: cfmailparam name=Disposition-Notification-To value=n...@domain.com cfmailparam name=Return-Receipt-To value=n...@domain.com The first one seems to work effectively.

Re: cfmailparam

2012-08-22 Thread Azadi Saryev
As others have said, non of these headers are 'standard', and their implementation is dependent on mail server and mail client settings on the receiving end. MS uses 'Return-Receipt-To' header to request a DSN from the mail server. Try and see if that one works for you. Alternatively, you can