Re: Coldfusion 8 erratic behavior

2013-05-25 Thread Bobby
Like Russ said, check the stack. If you can't seem to catch it, you can set up FusionReactor to send you notifications (that include the stack trace) when threads hit a certain time in their life span. You said you didn't think it was DB. How did you determine that? Does it mean you are using

checking for encryption

2013-05-25 Thread Rob Voyle
Hi Folks I have a variable that may or may not be encrypted. How do I test for the encryption. If I try to decrypt it when its not encrypted I get an error message The input and output encodings are not same.. Thanks Rob

Re: checking for encryption

2013-05-25 Thread Matt Quackenbush
Try/catch around the decryption? If you get that known message you could ignore it and move on. I'm not saying this is a good solution, but could get you going. The main issue would be if the key was changed or something like that, it'd hit the same exception. Off the top of my head I am not

Issue with accessing session vars from CFCs after upgrading to CF 10

2013-05-25 Thread Michael Sale
Having a weird issue since upgrading from CF 901 to 10. I'm calling CFC files over HTTP (using Ext/Sencha) and it seems when I do, I lose the session scope alltogether. The CFCs are set to allow remote access and were all working just fine before the upgrade. I know the session scope is

Re: Coldfusion 8 erratic behavior

2013-05-25 Thread Richard Steele
Thanks. But no, the db queries are fast. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: checking for encryption

2013-05-25 Thread Rob Voyle
Thanks Matt, Worked like a charm Rob On 25 May 2013 at 12:31, Matt Quackenbush wrote: Try/catch around the decryption? If you get that known message you could ignore it and move on. I'm not saying this is a good solution, but could get you going. The main issue would be if the key