Re: Bcrypt.class error

2014-12-19 Thread Dean Lawrence
Well, this ended up not working, as it failed again first thing this morning. I tried re-initing my app and it still did threw the error. What also found out though, was that instead of rebooting CF, I could get it to work by renaming the webservice CFC, making a call to the webservice (which

Re: Bcrypt.class error

2014-12-18 Thread Russ Michaels
that is a pretty generic error, but as it only happens after a while you might solve the problem by caching your object in application scope so it doesn;t have to be instan tiated every time. application.bcrypt = CreateObject(java, BCrypt); obviously check that it exists before creating it , or

Re: Bcrypt.class error

2014-12-18 Thread Dean Lawrence
Yea, it is the generic nature of the error that is so frustrating. Like I said, I can still call the same class file and make the identical method call from another cf file even after the webservice starts throwing the error, so my assumption is that it is being cached somewhere. I tried clearing

Re: Bcrypt.class error

2014-12-18 Thread Byron Mann
Based on your description, I think this is the line causing an error. bcrypt.checkpw(lcase(password),Member.getMemberPassword()) I might just add some more granular logging before the statement that would maybe nail down what is amiss. try { writeoutput(lcase(password)); } catch (any e) {

Re: CF11 mail issue

2014-12-17 Thread Russ Michaels
are you use a FQDN for the mail server? if so, try using the IP address instead and see if that helps. Might be some weird dns caching issue. On Wed, Dec 17, 2014 at 6:14 AM, Gonzo Rock gonzor...@gmail.com wrote: Pressing on I coded up a simple template to send a simple email using cfmail

Re: CF11 mail issue

2014-12-17 Thread Byron Mann
Could it just be the password is not what you think the CF7 machine has configured? Try the cfmail test with user/password/server (IP is Russ suggested) from the CF7 machine. That might tell you if the password is off. Any antivirus or OS firewall on the CF11 machine possibly blocking the

Re: CF11 mail issue

2014-12-17 Thread Gonzo Rock
Yes... 107.14.166.72 tried that first a few days back and again just now. The error messages I was getting yesterday No SMTP server defined makes it seem like it does not see the neo-mail.xml file, though the CFadmin clearly does. On Wed, Dec 17, 2014 at 4:28 AM, Russ Michaels

Re: CF11 mail issue

2014-12-17 Thread Gonzo Rock
Bryon... YES! I shut off the firewall as one of the first tasks without results but it never occurred to me to shut off avast!. What the hell is wrong with me? :( Fail! CF11 just sent me my test email ... Now off to configure avast to not fuc# with CF ha! ... and found gold at the bottom of

Re: cfmail causing problems for our server

2014-12-16 Thread Will Swain
Mandrill is excellent. We've used it for a while. Just whack their smtp server into the cf admin and off you go. It's more customisable than that of course, but the base function of running your mail through their servers should do the job. On 10 December 2014 at 23:35, Russ Michaels

Re: CF11 mail issue

2014-12-16 Thread Russ Michaels
can you telnet into the mail server on port 25 from the cf11 machine ? On Wed, Dec 17, 2014 at 12:11 AM, Gonzo Rock gonzor...@gmail.com wrote: I am setting up a new CF11 server on my network. Have a CF7 running currently too. I am having trouble getting the CF11 server to verify a mail

Re: CF11 mail issue

2014-12-16 Thread Gonzo Rock
Good idea... yes... both machines can initiate a telnet connection in that it gets to the opening prompt, Welcome to Road Runner... and waits for instructions. I type QUIT and the session terminates. On Tue, Dec 16, 2014 at 5:10 PM, Russ Michaels r...@michaels.me.uk wrote: can you telnet into

Re: CF11 mail issue

2014-12-16 Thread Gonzo Rock
Pressing on I coded up a simple template to send a simple email using cfmail ... it's the first user added cfm on the server. Executing it I got this for an error in the mail.log file. Error,scheduler-1,12/16/14,20:17:08,,javax.mail.AuthenticationFailedException: 535 No SMTP server defined. Use

Re: Work Around for SSLv3 Vulnerability?

2014-12-15 Thread Michael Grant
Well thank you for writing this. Hopefully it helps others. On Saturday, December 13, 2014, Wil Genovese jugg...@trunkful.com wrote: Well you question was one of the reasons I did the research. We had several clients at CF Webtools and a few at other hosting companies that needed to know

Re: Work Around for SSLv3 Vulnerability?

2014-12-13 Thread Michael Grant
Wow I could've used this four weeks ago! Haha. Good article. On Monday, December 8, 2014, Wil Genovese jugg...@trunkful.com wrote: I just published blog posts today on how to prevent ColdFusion from falling back to SSLv3 with CFHTTP.

Re: Work Around for SSLv3 Vulnerability?

2014-12-13 Thread Wil Genovese
Well you question was one of the reasons I did the research. We had several clients at CF Webtools and a few at other hosting companies that needed to know for sure how CFHTTP and SSL was working. Regards, Wil Sent from a hand held device that autocorrects my typos in a mist humorous

Re: postParametersLimit in CF11

2014-12-12 Thread Chris
Nathan, Russ, thanks for the comments. The application with all the post parameters definitely needs a rewrite. Our involvement is only in hosting it. The current owners want it to run ... and we have to justify why the settings should or should not be modified sigh. best regards, Chris On

Re: postParametersLimit in CF11

2014-12-12 Thread Russ Michaels
well you can put it in perspective, the default asp.net setting is 5000, which is obviously a lot higher than CF's 100 you are probably going to be safe putting it up higher, but you should tell your client to make sure they have something in place to stop that form being abused and DOS'ed On

Re: SQLServer JDBC Driver - maximum number of connections

2014-12-12 Thread Byron Mann
One thing maybe to check is the DSN is set to the maintain connection, could be the upgrade did not bring this over which might account to a large number of sql connections being made. The only times I have seen a similar error were with session limits on a firewall and a windows OS reaching

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
If you implement the query syntax I sent earlier you will have a 0 in the disagree column. Ok thanks I will try that. ~| Order the Adobe Coldfusion Anthology now!

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
Jon, there is only one table. There isn't one table for the responses and one for the questions. I could be wrong, but it seems like you might be making it harder than it needs to be from the query side, if you are looking for totals of responses by question. You might be able to just

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
William, your suggestion is what I went with it initially: Here is my code: cfoutput cfloop index=i list=#variables.list1# cfif listFind(variables.list2, i) td align=centercfoutput#getimprovedCompetence.TOTALIMPROVEDCOMPETENCE#/cfoutput/td cfelse td align=center0/td /cfif /cfloop /cfoutput

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
I get the following error on Jon's example: Msg 207, Level 16, State 1, Line 2 Invalid column name 'disagree'. Disagree is not a column. It's the value. Yes, using Steve’s example query as a foundation. I assumed you were using a relational model with separate questions/answer tables but

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Jon Clausen
Please see my last response. In your situation you should use Steve’s example. My SQL example was just that - an example. It doesn’t reflect your actual column names. Jon On Dec 11, 2014, at 8:50 AM, Torrent Girl moniqueb...@gmail.com wrote: I get the following error on Jon's example:

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
Oh sorry I missed that :) Please see my last response. In your situation you should use Steve’s example. My SQL example was just that - an example. It doesn’t reflect your actual column names. Jon On Dec 11, 2014, at 8:50 AM, Torrent Girl moniqueb...@gmail.com wrote:

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
Thanks Steve! Here is my final query that worked: select increasedKnowledge, Sum(case increasedKnowledge WHEN 'agree' then 1 else 0 end) as 'agree', Sum(case increasedKnowledge WHEN 'disagree' then 1 else 0 end) as 'disagree', Sum(case increasedKnowledge WHEN 'Neither Agree nor Disagree'

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
Steve now my output is off. How do I handle that? (I wish I could attach images to my posts) Your task shouldn't be to handle values that were not returned from the query. You need to think of a way to make sure they are returned. You should be able to accomplish that by using case

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Russ Michaels
there are many browser plugins where you can take screenshots and post online and send a link. Why not use one of those ? On Thu, Dec 11, 2014 at 3:13 PM, Torrent Girl moniqueb...@gmail.com wrote: Steve now my output is off. How do I handle that? (I wish I could attach images to my posts)

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Steve Milburn
Start by showing us the code your using to display the results of your query. On Thu, Dec 11, 2014 at 10:13 AM, Torrent Girl moniqueb...@gmail.com wrote: Steve now my output is off. How do I handle that? (I wish I could attach images to my posts) Your task shouldn't be to handle values

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
Good idea. I saved an image here: http://4.bp.blogspot.com/-dGtVwwkzAvc/VIm9VwuYORI/Dy0/PDbajG1LnEU/s1600/output.png So what I need to do is get the values in the appropriate cells on the table. When I loop or output with a query, I get too many cells. there are many browser plugins

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Jon Clausen
Since you’re handling all of the the counts in the case statements, you don’t need to select the increasedKnowlege column value, order or group by it anymore. Your SQL should be: SELECT Sum(case increasedKnowledge WHEN 'agree' then 1 else 0 end) as 'agree', Sum(case increasedKnowledge WHEN

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
Ah! Thanks That did it. Here is the final output http://2.bp.blogspot.com/-oKsNq87XFTA/VInEGGQsv1I/DzE/wY-FE_hTcIg/s1600/finalOutput.png Thanks so much to all of you! Since you’re handling all of the the counts in the case statements, you don’t need to select

RE: Creating columns that aren't included in a query result

2014-12-11 Thread William Seiter
, December 11, 2014 5:42 AM To: cf-talk Subject: Re: Creating columns that aren't included in a query result William, your suggestion is what I went with it initially: Here is my code: cfoutput cfloop index=i list=#variables.list1# cfif listFind(variables.list2, i) td align=centercfoutput

Re: postParametersLimit in CF11

2014-12-11 Thread Nathan Strutz
I'm sorry that I don't have an answer to your question or a solution to your problem, but I just have to ask, is it possible that your application just needs to adapt to what is a fairly standard security practice across the industry? It sounds like one of those jokes that ends in just because

Re: postParametersLimit in CF11

2014-12-11 Thread Russ Michaels
Also you need to consider why this limit exits. What would happen if your form with 2000 fields was dos attacked for example, have you tested it under load? If I wanted to take someone's site down, a form like That would be an easy target. On Thu, Dec 11, 2014 at 18:36 PM, Nathan Strutz

Re: Eliminating CFM extensions in IIS 7

2014-12-10 Thread Jon Clausen
You need to specify a rewrite handler for everything in the /news/ path. Assuming /news.cfm handles all of your requests for that path, your rule would look something like this: rule name=“News Handler stopProcessing=true

RE: Eliminating CFM extensions in IIS 7

2014-12-10 Thread Robert Harrison
-Original Message- From: Jon Clausen [mailto:jon_clau...@silowebworks.com] Sent: Wednesday, December 10, 2014 10:05 AM To: cf-talk Subject: Re: Eliminating CFM extensions in IIS 7 You need to specify a rewrite handler for everything in the /news/ path. Assuming /news.cfm handles all of your

RE: CF 11 Admin Panel

2014-12-10 Thread Steve LaBadie
Thanks for the link Russ After I did the install I went ahead and did the updates and it crash CF. I had to uninstall and re-install. Any ideas or advice? Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu -Original Message- From: Russ Michaels

RE: Eliminating CFM extensions in IIS 7

2014-12-10 Thread Robert Harrison
[mailto:jon_clau...@silowebworks.com] Sent: Wednesday, December 10, 2014 10:05 AM To: cf-talk Subject: Re: Eliminating CFM extensions in IIS 7 You need to specify a rewrite handler for everything in the /news/ path. Assuming /news.cfm handles all of your requests for that path, your rule would look something

RE: cfmail causing problems for our server

2014-12-10 Thread Robert Harrison
Use a mail relay like STMP.com. Just change the smtp server for your mail blast to send through the relay. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: Dave Long

Re: cfmail causing problems for our server

2014-12-10 Thread Steve Milburn
Amazon SES was made for just this type of scenario. On Wed, Dec 10, 2014 at 1:23 PM, Dave Long d...@northgoods.com wrote: My customer's site allows interested visitors to subscribe to intermittent e-mail notifications regarding his annual event. My hosting provider tells me that use of

Re: cfmail causing problems for our server

2014-12-10 Thread Jon Clausen
). Then you can also ensure CAN-SPAM compliance as well. If you’re using a CMS to send the mail through, then you might need to create a module to hook in to the main mailing list feature, but the long-term result would be better. Jon On Dec 10, 2014, at 1:23 PM, Dave Long d

RE: cfmail causing problems for our server

2014-12-10 Thread Rob Voyle
I use and like mail chimp Rob Sent from my Verizon Wireless 4G LTE smartphone div Original message /divdivFrom: Dave Long d...@northgoods.com /divdivDate:12/10/2014 12:23 PM (GMT-06:00) /divdivTo: cf-talk cf-talk@houseoffusion.com /divdivSubject: cfmail causing problems

RE: cfmail causing problems for our server

2014-12-10 Thread Dave Long
Thanks, everyone. I'll check them out. -Original Message- From: Rob Voyle [mailto:robvo...@voyle.com] Sent: Wednesday, December 10, 2014 12:42 PM To: cf-talk Subject: RE: cfmail causing problems for our server I use and like mail chimp Rob Sent from my Verizon Wireless 4G LTE

Re: bypassing the site-wide error handler

2014-12-10 Thread Chris
Thanks Dave, Rodney. That really helped. It turned out our issue was the same cfscript in the application's header and the sitewide error handler's header. When the second instance of cfscript tried to run, it broke the error handler, thus presenting the raw error to the user. best, Chris On

RE: Sending SMS

2014-12-10 Thread UXB Internet
Verizon: vtext.com Nextel: messaging.nextel.com Sprint: messaging.sprintpcs.com Cingular: cingularme.com Virgin Mobile: vmobl.com T-Mobile: tmomail.net Thanks this was helpful. Dennis Powers UXB Internet - A website Design and Hosting Company P.O. Box 6028, Wolcott, CT

Re: Sending SMS

2014-12-10 Thread richpaul7 .
you're welcome. Yea this has been working well for us for years, to send out alerts to our registered users. On Wed, Dec 10, 2014 at 3:09 PM, UXB Internet denn...@uxbinternet.com wrote: Verizon: vtext.com Nextel: messaging.nextel.com Sprint: messaging.sprintpcs.com Cingular:

Re: cfmail causing problems for our server

2014-12-10 Thread Russ Michaels
if it is just bulk SMTP you need then www.mandrill.com allows 12,000 per month for free. For something more advanced try www.sendgrid.com, they also offer an API which allows you to send emails without using CFMAIL or SMTP which has its benefits. If you want an actual mailing list manager then

Re: CF 11 Admin Panel

2014-12-10 Thread Russ Michaels
Railo compatible too. 5. On Wed, Dec 10, 2014 at 3:30 PM, Steve LaBadie slaba...@po-box.esu.edu wrote: Thanks for the link Russ After I did the install I went ahead and did the updates and it crash CF. I had to uninstall and re-install. Any ideas or advice? Steve LaBadie, Web Manager

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Russ Michaels
why do you need the 2nd loop rather than simply outputting the value of the query column from the main loop? On Thu, Dec 11, 2014 at 12:02 AM, Torrent Girl moniqueb...@gmail.com wrote: I am hoping I can explain this correctly. I have a table which houses responses to a survey. The columns

RE: Creating columns that aren't included in a query result

2014-12-10 Thread William Seiter
If I understand correctly Select response1 from [table] The resulting Query can equal 'response1' == 'Agree' or 'Disagree' or 'Neither Agree nor Disagree' or 'Strongly Agree' or 'Strongly Disagree' Then you loop over the results from the query and (I am guessing here) you want to place an 'X'

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Torrent Girl
Not quite. The value returned in a COUNT of the number of each response (sorry I should have said that earlier. So, it no one answered disagree it is not returned, but in the loop I want it represented as 0. If I understand correctly Select response1 from [table] The resulting Query can

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Torrent Girl
Sorry let me try that again...what I meant was Not quite. The value returned is a COUNT of the number of each response (sorry I should have said that earlier. So, if no one answered disagree it is not returned, but in the loop I want it represented as 0. :) If I understand

RE: Creating columns that aren't included in a query result

2014-12-10 Thread William Seiter
... -- William Seiter -Original Message- From: Torrent Girl [mailto:moniqueb...@gmail.com] Sent: Wednesday, December 10, 2014 4:29 PM To: cf-talk Subject: Re: Creating columns that aren't included in a query result Russ there is only one loop. It's a very simple table with a static

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Jon Clausen
I could be wrong, but it seems like you might be making it harder than it needs to be from the query side, if you are looking for totals of responses by question. You might be able to just use a GROUP BY clause to handle it. SELECT questions.id,questions.question,

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Torrent Girl
disagree is not an actual column it is a value. I could be wrong, but it seems like you might be making it harder than it needs to be from the query side, if you are looking for totals of responses by question. You might be able to just use a GROUP BY clause to handle it. SELECT

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Jon Clausen
Are you looking for a count of responses, or the actual value, though? In my test I used a bit datatype on the column so count() is all I needed for my example. If you’ve got a text value of ‘YES’ or something else, though, you could use a sub-function or a conditional inside count to

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Russ Michaels
can you show us the actualy query, as a query shouldn't return nothing, it should return 0 if the count is 0 The only instance where you should get nothing is if there are no rows of data returned On Thu, Dec 11, 2014 at 12:23 AM, Torrent Girl moniqueb...@gmail.com wrote: Not quite. The value

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Steve Milburn
Your task shouldn't be to handle values that were not returned from the query. You need to think of a way to make sure they are returned. You should be able to accomplish that by using case statements in your query. Syntax may vary depending on your database, but should be something like this

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Torrent Girl
Jon can I do this even though disagree, etc. are columns but actual values? I could be wrong, but it seems like you might be making it harder than it needs to be from the query side, if you are looking for totals of responses by question. You might be able to just use a GROUP BY clause

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Torrent Girl
can you show us the actualy query, as a query shouldn't return nothing, it should return 0 if the count is 0 The only instance where you should get nothing is if there are no rows of data returned On Thu, Dec 11, 2014 at 12:23 AM, Torrent Girl moniqueb...@gmail.com wrote: Here is my query:

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Torrent Girl
I am looking for how many people answered disagree etc. BUT, if no one answered disagree I want to be able to put a 0 in the disagree column. The problem is if no one answered disgree I have to fake it which is where I am stuck.

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Steve Milburn
If you implement the query syntax I sent earlier you will have a 0 in the disagree column. On Wednesday, December 10, 2014, Torrent Girl moniqueb...@gmail.com wrote: I am looking for how many people answered disagree etc. BUT, if no one answered disagree I want to be able to put a 0 in

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Jon Clausen
Yes, using Steve’s example query as a foundation. I assumed you were using a relational model with separate questions/answer tables but that is not the case. You won’t need joins or conversions. Steve’s Sum(case response = 'agree' then 1 else 0 end) as agree”… query is what you are looking

Re: CF 11 Admin Panel

2014-12-09 Thread Russ Michaels
http://www.adobe.com/content/dam/Adobe/en/products/coldfusion/pdfs/cf11/cf11-lockdown-guide.pdf On Tue, Dec 9, 2014 at 1:24 PM, Steve LaBadie slaba...@po-box.esu.edu wrote: We have just come out of the dark ages from a Window 2003 server with CF MX7 to Windows 2012 R2 with CF11 standard. I

Re: GC overhead limit exceeded

2014-12-09 Thread Byron Mann
Could this maybe be a difference in the jvm.config upon upgrade? I have not upgraded anything to CF11, but previous versions were basically a new install. So the memory limits in your prior version may have been tuned more appropriately to your application.

Re: Problem returning JSON from CFCS

2014-12-09 Thread Byron Mann
So the http response actually has Echo is on? Maybe there is just some additional output occurring in the CFC or Application.cfc that is outputting that string prior to the JSON response. On Tue, Dec 9, 2014 at 4:48 PM, Steve Durette st...@durette.org wrote: Hi all, I'm having a problem

RE: test

2014-12-09 Thread Robert Harrison
Test from address2. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: rob...@creativecyberspace.com [mailto:rob...@creativecyberspace.com] Sent: Tuesday, December 09, 2014

RE: test

2014-12-09 Thread robert
Test from address 1 -Original Message- From: Robert Harrison rharri...@aimg.com Sent: Tuesday, December 9, 2014 5:10pm To: cf-talk cf-talk@houseoffusion.com Subject: RE: test Test from address2. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext

Re: Problem returning JSON from CFCS

2014-12-09 Thread Steve Durette
Ok now I feel really stupid. Weeks ago I decided that I needed an empty Aplication.cfc in the directory with the CFCs. I was in the command line so I decided to do a ECHO. Application.cfc and that would have given a file with a blank line. However I missed the period right after echo and the

RE: GC overhead limit exceeded

2014-12-08 Thread Mark A Kruger
www.coldfusionmuse.com O: 402.932.3318 E: mkru...@cfwebtools.com Skype: markakruger -Original Message- From: Don [mailto:danfar...@hotmail.com] Sent: Saturday, December 06, 2014 4:12 PM To: cf-talk Subject: Re: GC overhead limit exceeded I guess this application ran fine under previous Coldfusion

Re: GC overhead limit exceeded

2014-12-08 Thread Don
Dan, I was just reading this post by CF Gurur Mike B. It has some cf10 specific tips that might be applicable to you since your problem is OOM. http://www.cfwhisperer.com/post.cfm/coldfusion-10-enhanced-performance-setti ngs -mark Cheers Mark. We are also looking at the database ( MS SQL

RE: GC overhead limit exceeded

2014-12-08 Thread Mark A Kruger
[mailto:danfar...@hotmail.com] Sent: Monday, December 08, 2014 1:12 PM To: cf-talk Subject: Re: GC overhead limit exceeded Dan, I was just reading this post by CF Gurur Mike B. It has some cf10 specific tips that might be applicable to you since your problem is OOM. http://www.cfwhisperer.com

Re: GC overhead limit exceeded

2014-12-08 Thread Don
I created another page ( that is not accessing the DB ) under the root directory and was able to access this fine on the domain whilst the site was still down.. It wasn't until I ran the application which is accessing the DB that we are experiencing that site blowing up ( massive lag ). So

Re: Work Around for SSLv3 Vulnerability?

2014-12-08 Thread Wil Genovese
I just published blog posts today on how to prevent ColdFusion from falling back to SSLv3 with CFHTTP. http://www.trunkful.com/index.cfm/2014/12/8/Preventing-SSLv3-Fallback-in-ColdFusion http://www.coldfusionmuse.com/index.cfm/2014/12/8/colfusion-jvm-versions-sslv3-tls Enjoy! Wil Wil

Re: bypassing the site-wide error handler

2014-12-08 Thread Dave Watts
Hi, when can an application bypass the CF v9 site-wide error handler? We host an app, that uses cftry/catch, but that appears to not handle the errors correctly. The errors do not trigger the site-wide error handler, and the errors are displayed to the users. The site-wide error handler

Re: bypassing the site-wide error handler

2014-12-08 Thread Rodney Enke
The site wide error handler will not run if there is a local error handler, such as CFTRY/CFCATCH or CFERROR, unless the CFTRY/CFCATCH block rethrows the error. - Rodney On Mon, Dec 8, 2014 at 8:52 PM, Dave Watts dwa...@figleaf.com wrote: Hi, when can an application bypass the CF v9

Re: GC overhead limit exceeded

2014-12-06 Thread Don
I guess this application ran fine under previous Coldfusion incarnations. It was only after the upgrade to CF 11 that the problems started. ~| Order the Adobe Coldfusion Anthology now!

Re: Eclipse CFEclipse

2014-12-04 Thread Casey Dougall
We've gone down this road many a time, and I was a hard convert when coldfusion builder 1.0 came out myself but it really didn't take long to get use to. Today I switch between CB3 and sublimetext depending on what I'm working on. Svn is best when you tie it into continuous integration where

Re: Eclipse CFEclipse

2014-12-04 Thread Matt Quackenbush
You realize that this thread is over 7 YEARS old, right? Lol On Dec 4, 2014 7:38 AM, Casey Dougall casey.doug...@gmail.com wrote: We've gone down this road many a time, and I was a hard convert when coldfusion builder 1.0 came out myself but it really didn't take long to get use to. Today I

Re: Eclipse CFEclipse

2014-12-04 Thread Casey Dougall
Omg, this is what I get for archiving mail... I'm totally not going to do that anymore. Stupid inbox.google.com made it so easy to archive we hen I switched back to gmail unread messages from eons ago made there way to the top, front and center On Thu, Dec 4, 2014, 8:50 AM Matt Quackenbush

Re: Eclipse CFEclipse

2014-12-04 Thread Matt Quackenbush
Lol. That's awesome. :-) On Dec 4, 2014 7:55 AM, Casey Dougall casey.doug...@gmail.com wrote: Omg, this is what I get for archiving mail... I'm totally not going to do that anymore. Stupid inbox.google.com made it so easy to archive we hen I switched back to gmail unread messages from

Re: Eclipse CFEclipse

2014-12-04 Thread Nathan Strutz
Yeah, you've got to hit the sweep button as soon as you get Inbox to clear out all your old stuff. BTW, I have invites to anyone who wants to try Google Inbox. Yes, you too can have the opportunity to reply to seven year old threads. Nathan Strutz On Thu Dec 04 2014 at 8:57:53 AM Matt

Re: Eclipse CFEclipse

2014-12-04 Thread Claude Schnéegans
BTW, I have invites to anyone who wants to try Google Inbox. Yes, you too can have the opportunity to reply to seven year old threads. This one also is at least 7 years old ;-) Any one can get a Gmail address, no invite is necessary ;-)

Re: Eclipse CFEclipse

2014-12-04 Thread Matt Quackenbush
1. Nathan didn't reply to a 7-yr-old message. 2. Gmail != Google Inbox http://www.google.com/inbox/ On Thu, Dec 4, 2014 at 10:41 AM, wrote: BTW, I have invites to anyone who wants to try Google Inbox. Yes, you too can have the opportunity to reply to seven year old threads. This

Re: Eclipse CFEclipse

2014-12-04 Thread Phillip Vector
Just to point out... On Dec 6, 2007 6:29 AM, Tom Chiverton tom.chiver...@halliwells.com wrote: Yeah.. He did. On Thu, Dec 4, 2014 at 8:57 AM, Matt Quackenbush quackfu...@gmail.com wrote: 1. Nathan didn't reply to a 7-yr-old message. 2. Gmail != Google Inbox

Re: Eclipse CFEclipse

2014-12-04 Thread Matt Quackenbush
On Thu, Dec 4, 2014 at 10:59 AM, Phillip Vector vec...@mostdeadlygame.com wrote: Just to point out... On Dec 6, 2007 6:29 AM, Tom Chiverton tom.chiver...@halliwells.com wrote: Yeah.. He did. On Thu, Dec 4, 2014 at 8:57 AM, Matt Quackenbush quackfu...@gmail.com wrote: 1. Nathan

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Russ Michaels
no, you install FR onto your Railo or CF server, and it integrates with it by installing an FR JAR file. If you follow the manual installation instructions you will get a better idea how it works, On Tue, Dec 2, 2014 at 5:25 AM, Don danfar...@hotmail.com wrote: There is absolutely no

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Don
Doesnt seem anyone noticed my reply so I'll post this again... I noticed a sharp drop in JVM memory during this process ( it all happened in about one minute ) Say from the average JVM Freememory of : 255 Megs Dropping to around : 30 Megs Any thoughts or ideas? It did come back up to normal

RE: how to diagnose a potential bottleneck

2014-12-02 Thread Mark A Kruger
, December 02, 2014 9:36 AM To: cf-talk Subject: Re: how to diagnose a potential bottleneck Doesnt seem anyone noticed my reply so I'll post this again... I noticed a sharp drop in JVM memory during this process ( it all happened in about one minute ) Say from the average JVM Freememory of : 255

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Don
This does not necessarily mean anything Don. It could simply mean migration from eden to persistent memory where GC recovers in due course. It's the overall pattern of GC recovery that means the most when talking about gross numbers. You should see a saw tooth pattern over time with steep drops

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Money Pit
Russ Michaels wrote: doing debugging and load testing on a live production server is generally a bad idea. On general principles, sure... although I'd say that a diagnostic reporter like F-R belongs first and foremost on a production box. To the OP... it sounds like you are stuck, so how good

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Don
Russ Michaels wrote: doing debugging and load testing on a live production server is generally a bad idea. On general principles, sure... although I'd say that a diagnostic reporter like F-R belongs first and foremost on a production box. To the OP... it sounds like you are stuck, so how good

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Money Pit
If you want code samples on the error dumping stuff let me know. I worked something up for an article years ago but its grown up since. A breadcrumb array kept in the session scope has been key. Stores everything the user does and gets dumped to the error file. --m@--

Re: how to diagnose a potential bottleneck

2014-12-02 Thread .jonah
You can also configure CF to log slow pages and if you have enterprise, server monitor can log/alert you to slow/hung requests. On 12/2/14, 10:52 AM, Money Pit wrote: Russ Michaels wrote: doing debugging and load testing on a live production server is generally a bad idea. On general

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Don
A breadcrumb array kept in the session scope has been key. Stores everything the does and gets dumped to the error file. Am curious as to what you did there. Would you mind sharing how you did that? ( I dont need code ) just your idea(s) explained with some more detail.

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Don
You can also configure CF to log slow pages and if you have enterprise, server monitor can log/alert you to slow/hung requests. On 12/2/14, 10:52 AM, Money Pit wrote: Another good suggestion. But I'm not recieving much in the way of information from the host anymore. Seems they might not

Re: how to diagnose a potential bottleneck

2014-12-02 Thread .jonah
Sounds like it's time to move on. On 12/2/14, 1:11 PM, Don wrote: I'm not recieving much in the way of information from the host anymore. Seems they might not like me poking around too much I dont know. ~| Order the

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Don
Sounds like it's time to move on. On 12/2/14, 1:11 PM, Don wrote: I'm not recieving much in the way of information from the host anymore. Seems they might not like me poking around too much I dont know. lol, well that's exactly what the developer of their e-commerce software

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Maureen
Sounds like they need a new host. Is that an option? On Tue, Dec 2, 2014 at 4:33 PM, Don danfar...@hotmail.com wrote: Sounds like it's time to move on. On 12/2/14, 1:11 PM, Don wrote: I'm not recieving much in the way of information from the host anymore. Seems they might not like me

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Russ Michaels
FR is indeed meant to run on a production server, and I was not saying otherwise. But you can also install it on dev to help you with the debugging and load testing as well. I think you are incorrectly assuming that FusionReactor is a debugging and load testing tool, which is not the case. FR is

<    1   2   3   4   5   6   7   8   9   10   >