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

nicola.davies

2014-12-16 Thread Matthew Allen
http://travestigokce.com/ziothebj/fomcnpnmnrudamcjdfyyciezgwhxqncuyxm.vkoqkuuutptkxffzgbkmoxgxajmqysyb Matthew Allen 12/16/2014 10:06:54 AM ~| Order the Adobe Coldfusion Anthology now!

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

CF11 mail issue

2014-12-16 Thread Gonzo Rock
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 server connection. These are the details: CF7 is on Win2003 and using: username:pass@mailserver on port 25 for CFMail CF11 is on Win2008 and using the

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

MS2008 SQL Express Driver versions changes?

2014-12-12 Thread Don
All our currently troubles began with the upgrade to CF11. Under CF9 our application ran perfectly. All kinds of strange errors GC out memory / java.sql.SQLNonTransientConnectionException Random down times. No pattern or common error that I have yet detected. I have even considered the

SQLServer JDBC Driver - maximum number of connections

2014-12-12 Thread Don
How could one determine this limitation on maximum number of connections exceeded? [Macromedia][SQLServer JDBC Driver]A problem occurred when attempting to contact the server (Server returned: Connection reset). Please ensure that the server parameters passed to the driver are correct and

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 the

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

2014-12-11 Thread William Seiter
I know this topic has gone far since we last reviewed together, but I wanted to touch on this subject quickly. cfset variables.list1 = Agree,Disagree,Neither Agree nor Disagree,Strongly Agree,Strongly Disagree cfset variables.list2 = '#ValueList(getincreasedKnowledge.INCREASEDKNOWLEDGE)#' List

postParametersLimit in CF11

2014-12-11 Thread Chris
Hi, we see the postParametersLimit (post request parameters) in CF11 is 100, the same as in CF9. This is from the CF11 Lockdown Guide. Can anyone confirm the default limit is 100? That seems low, but perhaps Adobe did not change the hash methods or hash collision resolution methods. We set

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

Eliminating CFM extensions in IIS 7

2014-12-10 Thread Robert Harrison
I'm no expert on this, and struggle with IIS config, so hopefully someone on the list can help. I'm trying to use URLs like mysite.com/news/2014/the-article. Below is a url rewrite that rewrites a request like mysite.com/news/ to myside/news.cfm. That part works. But, if you add another

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
News was just an example. Can I do it for every first level item mysite.com/this or mysite.com/that without needing to add a specific rule for each? Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com

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
Thank you. I was able to use this and adjust to the solution I needed. Really appreciate the assist. 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: Jon Clausen

cfmail causing problems for our server

2014-12-10 Thread Dave Long
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 cfmail to contact his 5,000+ mailing list is triggering blacklisting when we use it to notify subscribers of event changes and

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
My recommendation would be to have them create a MailChimp or Vertical Response (Constant Contact, Exact Target, etc.) account and just send emails through their API. VR’s API is especially easy to send custom HTML through (http://developers.verticalresponse.com/docs/read/api_reference/emails

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
the lockdown guide is not perfect and in my experience just following the guide exactly does cause problems, so you do need to really know what you are doing on the server with permissions to cover the bits it doesn't tell you. I do not follow it myself, I have my own process, so I cannot tell

Creating columns that aren't included in a query result

2014-12-10 Thread Torrent Girl
I am hoping I can explain this correctly. I have a table which houses responses to a survey. The columns can have any of the following values: Agree,Disagree,Neither Agree nor Disagree,Strongly Agree,Strongly Disagree I have a table with the headers equal to all of the values above. I have a

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
It seems illogical that a column would not exist from the query. Could you post the query that is being run? As to your display issue... cfif structKeyExists([qName],'[colName]') td#[qName].[colName]#/td cfelse td0/td /cfif One of these per column...

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

CF 11 Admin Panel

2014-12-09 Thread Steve LaBadie
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 just completed the install and want to know if someone could point me in the right direct for best practices for setting up the Admin Panel. Steve LaBadie, Web Manager East

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

Problem returning JSON from CFCS

2014-12-09 Thread Steve Durette
Hi all, I'm having a problem returning JSON from a CFC. Windows server 2012 Railo 4.2.1.008 IIS When I use fiddler it shows the data in the JSON view, but in the raw data view, Echo is on is before the JSON. This is causing the query .getjson to fail on character E. I'm sure that it is

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 

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
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 Mark Kruger - CFG CF Webtools www.cfwebtools.com

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
MSSQL express has some limitations as to size (of the DB) and connection limits. If I have time I'll look for a matrix - but such things could definitely result in degraded performance. I'm at a loss to say how they would contribute to a memory leak however. -Original Message- From: Don

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

bypassing the site-wide error handler

2014-12-08 Thread Chris Norloff
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 works

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

GC overhead limit exceeded

2014-12-06 Thread Don
Here is the latest error. Remember I said this application made heavy use of nested custom tags and the request scope? Typejava.lang.OutOfMemoryError Detail An exception occurred while invoking an event handler method from Application.cfc. The method name is: onRequestStart. Message GC

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
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 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

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