Re: cfx_pwtextcrypt CF9

2011-02-15 Thread Mack
I think you might be able to use java.security.KeyPairGenerator to generate the keys and then javax.crypto.Cipher to do the encryption/decryption. I haven't tested it though so i don't know if it will work. Personally I've used gnupg (GNU Privacy Guard) for RSA key generation and

How to get sql sent to sql server

2011-02-15 Thread boybles maldooney
I'm wondering what the best way is to get the sql generated by cfquery and then sent to the database. A sql statement that I'm using throws an error, so CF doesn't show the generated sql in the debugging info (only the sql error message thrown by SQL Server and passed into CF). Is there a

Re: How to get sql sent to sql server

2011-02-15 Thread Mack
Wrap the query in cftry/cfcatch, dump the error and the sql should be somewhere in the nested errors. -- Mack ~| Order the Adobe Coldfusion Anthology now!

Re: Data source continues working after user id revoked

2011-02-15 Thread george.e...@ssa.gov george.e...@ssa.gov
Bobby said: Why set a bad password intentionally? If it was to stop it from being used, you could just disable connections in the advanced settings of the datasource. It is an instant change. The bad password was not set intentionally (as far as we know). George

Re: Change in ColdFusion management

2011-02-15 Thread Michael Grant
I have been critical of Adobe's marketing here in Australia, and I'm not alone. Same here. And to be fair, I've only ever said two negative things about Adobe publicly. Lack of marketing in my neck of the woods was one of them. The other about masking the use of php on cf related pages on

Re: Re: Change in ColdFusion management

2011-02-15 Thread Scott Stroz
On Mon, Feb 14, 2011 at 11:45 PM, cft...@fusionlink.com wrote: Scott, I think its a bad decision and I took a great deal of time to make my blog post. I agree twitter is for initial reactions and banter, blog posts are for careful reflection and thought. You posted your blog entry

Re: Re: Change in ColdFusion management

2011-02-15 Thread Scott Stroz
John, After reading some other comments it finally struck me what bothers me most about your blog post, comments and your tweets. There is not one positive thing you say about the situation. Everything you state is negative. THAT is what make me think its FUD. THAT is what makes me think you did

Re: cfx_pwtextcrypt CF9

2011-02-15 Thread Leigh
I think you might be able to use java.security.KeyPairGenerator to generate the keys and then javax.crypto.Cipher to do the encryption/decryption. I haven't tested it though so i don't know if it will work. Yep, it does. I believe he is using this code to do the encryption

Re: CFX_HTTP5 - returns partial string

2011-02-15 Thread Brent Nicholas
Dave, Thanks for your reply. In this case CFHTTP won't do it since the connection requires NTLM due to internal security requirements. I've opened a dialog with the developer and he is looking into what it could be. On a side note, we might need some Google mini training out here for one of

RE: cfx_pwtextcrypt CF9

2011-02-15 Thread Brook Davies
Mack/Leigh, thanks for the constructive comments, I will check those options and see if I can get it working.. Brook -Original Message- From: Leigh [mailto:cfsearch...@yahoo.com] Sent: February-15-11 6:35 AM To: cf-talk Subject: Re: cfx_pwtextcrypt CF9 I think you might be able to

New Open Source Shopping Cart

2011-02-15 Thread Steve Bryant
I recently released a beta of a new free and open source shopping cart that I have created. It is slim on features, but built to be very easy to customize. For example, you can use externally defined products (even from multiple sources) and it is very easy to add fields to any existing

Re: Re: Change in ColdFusion management

2011-02-15 Thread Roger Austin
Brian Kotek brian...@gmail.com wrote: And to add to that, I can say that *if* I did have deep knowledge of what is going on with CF X, I *might* say that when people see what is coming, the naysayers are going to feel really silly. Really, really silly. Thanks for that teaser

Re: Change in ColdFusion management

2011-02-15 Thread Mary Jo Sminkey
Perhaps, but I think there needs to be a serious discussion about this. Adobe went about a weird way in announcing it and I guess hoped it wouldn't get much notice as a result. This is one of the biggest decisions they have made with ColdFusion in several years. I find it comical how

Re: Re: Change in ColdFusion management

2011-02-15 Thread Adrocknaphobia
Russ, You are a dick. -Adam ** I thought about that one first. On Mon, Feb 14, 2011 at 5:09 PM, Russ Michaels r...@michaels.me.uk wrote: Well we can't be sure that was how Adobe intended to announce it, Adam does have a tendency to post first, think later :-) On Tue, Feb 15, 2011 at

RE: Re: Change in ColdFusion management

2011-02-15 Thread Mark A. Kruger
I vote that this thread has officially jumped the shark... let's kill it while we still have a chance and an Emmy. Mark A. Kruger, MCSE, CFG (402) 408-3733 ext 105 Skype: markakruger www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Adrocknaphobia

string function???

2011-02-15 Thread Richard White
Hi, i have various strings in the following format: '({name1}+{name2})/365.25' i need to get all the names from in between the curly brackets {} and place them in an array. (so the above example would put name1 and name2 in an array) what would be the best way to do this? thanks

Re: string function???

2011-02-15 Thread Raymond Camden
Regular expressions. Have you looked into them? On Tue, Feb 15, 2011 at 10:57 AM, Richard White rich...@j7is.co.uk wrote: Hi, i have various strings in the following format: '({name1}+{name2})/365.25' i need to get all the names from in between the curly brackets {} and place them in

Re: string function???

2011-02-15 Thread Richard White
i understand them to a certain extent but not sure how to split a string using them. do you have any pointers? Regular expressions. Have you looked into them? ~| Order the Adobe Coldfusion Anthology now!

Re: string function???

2011-02-15 Thread Raymond Camden
Well you have multiple ways you can do this - but you may want to try reMatch. Given a regex it will return all the matches. On Tue, Feb 15, 2011 at 11:05 AM, Richard White rich...@j7is.co.uk wrote: i understand them to a certain extent but not sure how to split a string using them. do you

RE: string function???

2011-02-15 Thread Bobby Hartsfield
Check out refind using the returnSubExpressions set to TRUE. It will return an array of position and length for each of the matched items. You can use those len and pos values to grab each value with the mid() function. For example... cfset str = '({name1}+{name2})/365.25' / cfdump

Re: string function???

2011-02-15 Thread Richard White
thanks guys the combination of the 2 answers works perfectly: cfset str = '({name1}+{name2})/365.25' / cfdump var=#rematch('\{(.*?)\}', str)# / ~| Order the Adobe Coldfusion Anthology now!

RE: string function???

2011-02-15 Thread Bobby Hartsfield
Oh Yeah! ReMatch... forgot about that one for a minute. .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Richard White [mailto:rich...@j7is.co.uk] Sent: Tuesday, February 15, 2011 12:26 PM To: cf-talk Subject: Re: string function???

Re: Re: Change in ColdFusion management

2011-02-15 Thread Russ Michaels
Adam, insulting people that try to support/defend you and Adobe is certainly not very smart, and I suspect is one of the reasons you are being replaced. ~| Order the Adobe Coldfusion Anthology now!

Re: Change in ColdFusion management

2011-02-15 Thread Judah McAuley
On Mon, Feb 14, 2011 at 11:30 PM, Matt Quackenbush quackfu...@gmail.com wrote: Damn!  Mike Kear and Michael Grant, both?  In the same thread?!?!?! THE HEAVENS HAVE OPENED!  :-) For what it's worth, I think that the move seems pretty reasonable to me. I appreciate the hard work that Adam has

Re: Re: Change in ColdFusion management

2011-02-15 Thread Gerald Guido
when people see what is coming, the naysayers are going to feel really silly. Really, really silly. That is made of 100% pure Awesome, and the best thing that has come out of this thread. Thanx for making my day, G! On Tue, Feb 15, 2011 at 12:52 AM, Brian Kotek brian...@gmail.com wrote:

Re: Re: Change in ColdFusion management

2011-02-15 Thread Brian Kotek
lol. Maybe you should wait until you see what poor replaced Adam is doing next. (hint: it's not what a company does with an employee they are upset with or replacing). On Tue, Feb 15, 2011 at 12:42 PM, Russ Michaels r...@michaels.me.uk wrote: Adam, insulting people that try to

Re: Re: Change in ColdFusion management

2011-02-15 Thread Russ Michaels
Crikey, well if Adobe promote staff for bad behavior then we are all in the wrong job :-) On Tue, Feb 15, 2011 at 6:09 PM, Brian Kotek brian...@gmail.com wrote: lol. Maybe you should wait until you see what poor replaced Adam is doing next. (hint: it's not what a company does with an

Re: Re: Change in ColdFusion management

2011-02-15 Thread Brian Kotek
That's one way to look at it. But the much more likely view (and the one Adobe sees) is that the people who think he's guilty of bad behavior are not only a tiny minority, but are also wrong. On Tue, Feb 15, 2011 at 1:17 PM, Russ Michaels r...@michaels.me.uk wrote: Crikey, well if Adobe

Re: Re: Change in ColdFusion management

2011-02-15 Thread Judah McAuley
On Tue, Feb 15, 2011 at 10:42 AM, Brian Kotek brian...@gmail.com wrote: That's one way to look at it. But the much more likely view (and the one Adobe sees) is that the people who think he's guilty of bad behavior are not only a tiny minority, but are also wrong. Perhaps I have a

Re: Re: Change in ColdFusion management

2011-02-15 Thread Charlie Griefer
Adam posted that from his gmail account. Doesn't seem that he was acting in any official capacity for his company there (also no sig indicating that he's an Adobe employee). Yeah, I understand that there are some politics in play, but regardless of the position we hold, or the company for

Re: Re: Change in ColdFusion management

2011-02-15 Thread Brian Kotek
Only if said employee was posting in the context of their position, and not responding personally to a personal accusation or comment. So, yes, you have a misunderstanding of the Adobe corporate culture. Glad to help clear that up for you! On Tue, Feb 15, 2011 at 1:48 PM, Judah McAuley

Re: Re: Change in ColdFusion management

2011-02-15 Thread Russ Michaels
Brian, if you think it is wrong I wont argue, all I can suggest is try searching the cf-talk archives and will find otherwise. I only read the occasional post on here and even I seen it to be a fairly regular occurrence, and that is discounting the ones directed at me. If I am in a tiny minority

Re: Re: Change in ColdFusion management

2011-02-15 Thread Adrocknaphobia
Russ, It's clear you have beef with me. Saying I post first and think later is an insult. Just because you don't like what I post, doesn't mean I don't think about it. I promise that if you don't attack me, I won't attack you. -Adam On Tue, Feb 15, 2011 at 11:28 AM, Russ Michaels

Re: Re: Change in ColdFusion management

2011-02-15 Thread Judah McAuley
Fascinating. I guess things work differently there than anywhere else I've been. Thank you for clearing that up. On Tue, Feb 15, 2011 at 10:57 AM, Brian Kotek brian...@gmail.com wrote: Only if said employee was posting in the context of their position, and not responding personally to a

Re: Re: Change in ColdFusion management

2011-02-15 Thread Russ Michaels
Other way round Adam, you need to drop the vendetta. On Tue, Feb 15, 2011 at 8:11 PM, Adrocknaphobia adrocknapho...@gmail.comwrote: Russ, It's clear you have beef with me. Saying I post first and think later is an insult. Just because you don't like what I post, doesn't mean I don't think

Re: Re: Change in ColdFusion management

2011-02-15 Thread Adrocknaphobia
Dropped. -Adam On Tue, Feb 15, 2011 at 12:26 PM, Russ Michaels r...@michaels.me.uk wrote: Other way round Adam, you need to drop the vendetta. On Tue, Feb 15, 2011 at 8:11 PM, Adrocknaphobia adrocknapho...@gmail.com wrote: Russ, It's clear you have beef with me. Saying I post

Re: Change in ColdFusion management

2011-02-15 Thread Nicholas Tunney
Wow, its like history in the making, bridges being built, right here on the cf-talk list. I'll expect the president to claim this was his doing on CNN at 5PM EDT. Don't miss it! -Nic On 2/15/11 4:01 PM, Adrocknaphobia adrocknapho...@gmail.com wrote: Dropped. -Adam On Tue, Feb 15, 2011 at

Re: Change in ColdFusion management

2011-02-15 Thread Jochem van Dieten
On Mon, Feb 14, 2011 at 7:46 PM, wrote: http://www.codfusion.com/blog/post.cfm/so-there-s-this-story-about-a-frog-in-boiling-water So you claim the following problems: - a rise in serious bugs and security flaws like the FCKeditor hack The criteria for meriting a security patch have been

Re: SELECT - Option selected

2011-02-15 Thread Torrent Girl
this is an old post but I am pulling my hair out as well. Does anyone know the answer to the select=true, select=selected problem? It is not working in IE or FF for me. TIA ~| Order the Adobe Coldfusion Anthology now!

Re: SELECT - Option selected

2011-02-15 Thread Brian Cain
If you are talking the HTML select element it is selected=selected Sent from my iPhone On Feb 15, 2011, at 4:47 PM, Torrent Girl moniqueb...@gmail.com wrote: this is an old post but I am pulling my hair out as well. Does anyone know the answer to the select=true, select=selected problem?

Re: Re: Change in ColdFusion management

2011-02-15 Thread James Holmes
Well, here's Adam's promotion: http://www.adrocknaphobia.com/post.cfm/i-lvl-d-up-flash-builder-product-manager I'll leave it to others to decide if they are in the wrong job. -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 16 February 2011 02:17, Russ Michaels

Re: Change in ColdFusion management

2011-02-15 Thread Eric Cobb
perhaps I am just weird. No, you are a dick. I thought we already established that! ;) (sorry Russ, I just couldn't resist!) Thanks, Eric Cobb ECAR Technologies, LLC http://www.ecartech.com http://www.cfgears.com On 2/15/2011 1:28 PM, Russ Michaels wrote: Brian, if you think it is wrong

Re: Change in ColdFusion management

2011-02-15 Thread Russ Michaels
Well you know being a dick certainly would be a great job, certainly more fun than being a COO :-) (presuming it means the same thing over there as it does over here of course) On Tue, Feb 15, 2011 at 9:35 PM, Eric Cobb cft...@ecartech.com wrote: perhaps I am just weird. No, you are a

RE: Change in ColdFusion management

2011-02-15 Thread Mark A. Kruger
Russ - actually there could be some advantages. For example, Viagra would make you taller. -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Tuesday, February 15, 2011 7:11 PM To: cf-talk Subject: Re: Change in ColdFusion management Well you know being a dick

Re: Change in ColdFusion management

2011-02-15 Thread Kelly
Simmer down now boys! lol On 2/15/2011 9:16 PM, Mark A. Kruger wrote: Russ - actually there could be some advantages. For example, Viagra would make you taller. -Original Message- From: Russ Michaels [mailto:r...@michaels.me.uk] Sent: Tuesday, February 15, 2011 7:11 PM To:

Re: Change in ColdFusion management

2011-02-15 Thread Gerald Guido
Worst. Thread. Evar. On Tue, Feb 15, 2011 at 9:23 PM, Kelly webd...@gmail.com wrote: Simmer down now boys! lol On 2/15/2011 9:16 PM, Mark A. Kruger wrote: Russ - actually there could be some advantages. For example, Viagra would make you taller. -Original Message- From:

Re: Change in ColdFusion management

2011-02-15 Thread Sean Corfield
On Tue, Feb 15, 2011 at 6:37 PM, Gerald Guido gerald.gu...@gmail.com wrote: Worst. Thread. Evar. How do we move a thread to cf-community? :) -- Sean A Corfield -- (904) 302-SEAN Railo Technologies, Inc. -- http://getrailo.com/ An Architect's View -- http://corfield.org/ If you're not annoying

Re: Change in ColdFusion management

2011-02-15 Thread Gerald Guido
How do we move a thread to cf-community? :) Summon Darth Dinowitz. G! On Tue, Feb 15, 2011 at 9:54 PM, Sean Corfield seancorfi...@gmail.comwrote: On Tue, Feb 15, 2011 at 6:37 PM, Gerald Guido gerald.gu...@gmail.com wrote: Worst. Thread. Evar. How do we move a thread to cf-community?

Re: Change in ColdFusion management

2011-02-15 Thread denstar
Wait, wait, I got one! http://www.youtube.com/watch?v=5w_DqhpMuFY Ok, now we can move it. :Den -- I teach at Harvard that the world and the heavens, and the stars are all real, but not so damned real, you see. Josiah Royce On Tue, Feb 15, 2011 at 7:54 PM, Sean Corfield wrote: On Tue, Feb

Re: cfx_pwtextcrypt CF9

2011-02-15 Thread denstar
There are examples of doing lots of weird PGP related things here: http://subversion.assembla.com/svn/cfmlprojects/trunk/src/cfopenpgp/src/tag/cfopenpgp/cfc/openpgp.cfc This uses BouncyCastle (you have to add the jars), so it's sorta stand-alone from what CF comes with. It's butt-ugly, but

Re: Change in ColdFusion management

2011-02-15 Thread Kelly
LOL On 2/15/2011 10:18 PM, denstar wrote: Wait, wait, I got one! http://www.youtube.com/watch?v=5w_DqhpMuFY Ok, now we can move it. :Den ~| Order the Adobe Coldfusion Anthology now!

JVM help!

2011-02-15 Thread Duncan
Hi Everyone, We have recently put together a new CF server, moving from 32 bit, 4Gb RAM Windows over to 64bit, 16Gb RAM Windows. We have pretty much done a default set up, and placed the same set of applications on the new server, and have run in the machine for a bit. After a few weeks we have

Re: JVM help!

2011-02-15 Thread Wil Genovese
Set min max heap to be equal. Set gc intervals to 1 And try again. These are not hard set numbers but in many cases works good enough to start figuring out what is really happening. You should install monitoring package and look for the cause of the memory issue. Typically it's

Re: JVM help!

2011-02-15 Thread Duncan
Hi Will, Thanks - but I am confused about your terminology. You state we are looking for a memory issue, is this inextricably linked to the execution time? i.e. could it be the JVM trying to cleanup the stuff in memory prior to the end of the request? As I pointed out the exact same code, with

Re: JVM help!

2011-02-15 Thread Carl Meyer
Hi Duncan, you do not have a -XX:PermSize=m set on your new 64 bit. Apply other suggestions mentioned plus a minimum setting for Perminant Generation as without one it can try size down to Java default. What size? The value depends perhaps with the MaxPermSize you have set already use say half