Re: AWeber Email List Management

2014-07-16 Thread Dean Lawrence
Thanks Maureen and Bryon for your suggestions. Yes, PHP is an option, but I am not posting directly to AWeber because I have to do work with the submitted data first prior to sending it to their server, including setting some CF session values. I was primarily trying to not have to work with 2

Re: Template request runs twice

2014-07-16 Thread Donnie Carvajal
Hi Russ, Thanks for the response. We have not updated the JVM. I did have a cftransaction rollback in the code for testing. I removed this line and it only ran once. Do you think a cftransaction rollback would run the request again? one cause for this is if you have updated to a newer

looping over PDF subforms

2014-07-16 Thread Scott Stewart
So I'm still trying to produce a section 508 Compliant PDF using cfdocument, or cfpdf or something I know there are methods to populate pre defined PDF forms, which would work except that alot of my data is multiple row format and I don't know how many rows may be returned and I can't limit

Re: looping over PDF subforms

2014-07-16 Thread Randi Knutson
I am...I just have a cfdocumentsection within a cfloop that is looping through however many rows my query returned. Sometimes the page breaks can get goofy if there is a lot of data, in which case I test for greater than however many rows I can fit and insert a page break.

Re: looping over PDF subforms

2014-07-16 Thread Scott Stewart
I can generate HTML tables and such all day long and use CFDOCUMENT to turn it into a PDF, but it's not 508 Compliant because CFDOCUMENT doesn't support tagging, My thought is to create predefined PDFs that are compliant and populate them like you would a PDF Formthen merge the whole mess

oAuth 2 (Google) and CFML without cfoauth

2014-07-16 Thread John M Bliss
Hope to save someone a bunch of time: http://www.brandiandjohn.com/post.cfm/oauth-2-google-and-cfml-without-cfoauth -- John Bliss - http://www.linkedin.com/in/jbliss ~| Order the Adobe Coldfusion Anthology now!

Re: looping over PDF subforms

2014-07-16 Thread Randi Knutson
Fair enough. I got my client to exempt on the fly pdfs from 508 requirements. Although CF11/Splendor has some nice enhancements. PDFs and CF do seem to be a niche, at least in Adobe's eyes. I think they are badly underestimating it, but if only I ran the world...everything would be nice then.

Re: looping over PDF subforms

2014-07-16 Thread Scott Stewart
We've got a temporary waiver to figure it out, but we can't push it off for much longer On Wed, Jul 16, 2014 at 4:32 PM, Randi Knutson rknut...@otan.us wrote: Fair enough. I got my client to exempt on the fly pdfs from 508 requirements. Although CF11/Splendor has some nice enhancements.

CF 9 admin login problem

2014-07-16 Thread Ben Conner
Hi, Tried to log in to the CF 9 admin this evening and got the following: *The getVerityService method was not found.* Either there are no methods with the specified method name and argument types or the getVerityService method is overloaded with argument types that ColdFusion cannot decipher

Re: CF 9 admin login problem

2014-07-16 Thread Dave Watts
Tried to log in to the CF 9 admin this evening and got the following: ... My first guess, whenever I see CF admin login failures of any sort, is that you might have more than one CF admin directory and CF is using the wrong one. Dave Watts, CTO, Fig Leaf Software 1-202-527-9569

Re: CF 9 admin login problem

2014-07-16 Thread Ben Conner
Good catch. That's apparently what it was. I had tried the internal IP address of that box, which didn't work. Tried the external URL and it worked fine. Much appreciated. Now I can calm down a bit. ;-) --Ben On 7/16/2014 9:03 PM, Dave Watts wrote: Tried to log in to the CF 9 admin this

Re: looping over PDF subforms

2014-07-16 Thread Dave Watts
So I'm still trying to produce a section 508 Compliant PDF using cfdocument, or cfpdf or something I know there are methods to populate pre defined PDF forms, which would work except that alot of my data is multiple row format and I don't know how many rows may be returned and I can't