RE: Long running process - cflock cfthread

2008-07-28 Thread Richard Meredith-Hardy
Thanks for this. Actually the earlier response made me forget about the cleverness of cfthread in this situation and look at just using cflock which I think does the trick perfectly well. Regards Richard -Original Message- From: Rich Kroll [mailto:[EMAIL PROTECTED] Sent: 28 July

RE: (ot) URL Hack Attempt Leaves Me Scractching My Head... To Ben Forta

2008-07-28 Thread Mark Kruger
Gabriel, Nice job on this. Looks like it works rather spendidly. -Mark Mark A. Kruger, CFG, MCSE (402) 408-3733 ext 105 www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Gabriel [mailto:[EMAIL PROTECTED] Sent: Sunday, July 27, 2008 7:05 PM To:

RE: (ot) URL Hack Attempt Leaves Me Scractching My Head

2008-07-28 Thread Mark Kruger
Gabriel, One that might need adding is execute. execute something I notice you are trapping sp_ nice catch. Mark A. Kruger, CFG, MCSE (402) 408-3733 ext 105 www.cfwebtools.com www.coldfusionmuse.com www.necfug.com -Original Message- From: Gabriel [mailto:[EMAIL PROTECTED] Sent:

Re: [ot] - Payment Gateways?

2008-07-28 Thread Gerald Guido
it may be just because Paypal having been around for such a long time, there are more people using it, thus more people to report problems. This is true, but my impression is that it not so much people having problems as much as the Shoot first, ask questions later approach that they take that

Re: Barclays ePDQ MPI Integration

2008-07-28 Thread [EMAIL PROTECTED] [EMAIL PROTECTED]
Just Bumping and hopefully someone will have dealt with this... Heya Folks, Has anyone out there had any success in connecting via XML to BarclayCards ePDQ MPI? Having some troubles and would like some help . .. example code would be tremendous... Thank you in advance Paul

RE: Barclays ePDQ MPI Integration

2008-07-28 Thread Paul Vernon
I've never used BarclayCard to do this but have used many, many others... Do you have any URL's to documentation, or a specific problem you need to test for? I can certainly take a look for you... Paul Just Bumping and hopefully someone will have dealt with this... Heya Folks, Has

RE: (ot) URL Hack Attempt Leaves Me Scractching My Head... To Ben Forta

2008-07-28 Thread Che Vilnonis
Gabriel... would you post the page in complete working order with your code modifications? Thanks! -Original Message- From: Gabriel [mailto:[EMAIL PROTECTED] Sent: Sunday, July 27, 2008 8:05 PM To: CF-Talk Subject: RE: (ot) URL Hack Attempt Leaves Me Scractching My Head... To Ben Forta

RE: (ot) URL Hack Attempt Leaves Me Scractching My Head... To Ben Forta

2008-07-28 Thread Mark Kruger
Che, I tested a working example of his code... I posted on my blog if you want the skinny. http://www.coldfusionmuse.com -Mark -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Monday, July 28, 2008 8:46 AM To: CF-Talk Subject: RE: (ot) URL Hack Attempt Leaves Me

RE: (ot) URL Hack Attempt Leaves Me Scractching My Head... To Ben Forta

2008-07-28 Thread Che Vilnonis
Thanks Mark. So, the function checkSQLInject(str) and the function checkforattack() are no longer needed from Mary's original blocker.cfm file? -Original Message- From: Mark Kruger [mailto:[EMAIL PROTECTED] Sent: Monday, July 28, 2008 9:52 AM To: CF-Talk Subject: RE: (ot) URL Hack

Re: Client Certificate Validation in Coldfusion 8

2008-07-28 Thread Mike Henry
Thanks for the reply... Are you using this to validate Client Certificates? On the server, I don't have access to the PEM file for the client cert. In addition, I don't think I want to run a batch process from a web transaction. Can I implicitly trust IIS (or any webserver) to validate the

Sticky Sessions - managing session variables- Any Difference?

2008-07-28 Thread coldfusion . developer
Is there a difference between regular application, session variable managment vs how it should be done using sticky sessions? Does anyone know of any good articles? Thanks D ~| Adobe® ColdFusion® 8 software 8 is the most

RE: (ot) URL Hack Attempt Leaves Me Scractching My Head... To Ben Forta

2008-07-28 Thread Mark Kruger
Che, That depends... Mary Jo's function does all the scope checking for you ... So you might want to use the reMatcher.reset().find() in Mary Jo's function in place of the call to checkSQLInject() inside of the checkforattack() function. That would make use of Gabriel's cod, but keep all the

Re: Client Certificate Validation in Coldfusion 8

2008-07-28 Thread Web Specialist
Mike, because our application needs to create and validate certificates, openssl is a great tool to do that. Another option for you is certman custom tags. This custom tags display certificate dates. Do you can download this great tool here and study his routines: http://certman.riaforge.org/

Re: Newb AJAX question

2008-07-28 Thread Bret McDermitt
Thanks for the feedback. So this seems more like a work-around instead of a fix, there's no way you can think of to get this done using a JS include and ajax? Appreciate it. Bret Why not check for the CGI variable and if it doesn't exist (or if it's blank, I'm not sure what it looks like),

Re: Newb AJAX question

2008-07-28 Thread Tom Chiverton
On Monday 28 Jul 2008, Bret McDermitt wrote: I have a framed app and I'm trying to authenticate it's use by domain. So if someone in domain a.com wants to use it, I would like to be able to check and see if that domain is authorized. Norton killed my odds of going the CGI route, Tell me you

Re: Newb AJAX question

2008-07-28 Thread Phillip M. Vector
Well... As I see it, if something Norton cooked up is preventing you from seeing what domain the user is going to, then the easiest thing is to remove Norton from the users computer (and I'm always in support of removing that spyware). I suppose that you can use a onload to write a value (the

Re: (ot) URL Hack Attempt Leaves Me Scractching My Head... To Ben Forta

2008-07-28 Thread Mary Jo Sminkey
The code on my blog is a working example, but it's not drop in ready - you would still need to check the form and cookie scope for example... So either way you will need to do some tweaking to get it to work for you situation. I'm going to post an updated version of my tool later today, just want

Re: Client Certificate Validation in Coldfusion 8

2008-07-28 Thread Mike Henry
This looks like a great tool... I installed it and appears to be useful, but the client certificate isn't stored on the server. It's presented by the client at run-time through SSL. I don't know how to get the client cert from Coldfusion. I appear to only have access to the CGI variables in

Re: Client Certificate Validation in Coldfusion 8

2008-07-28 Thread Web Specialist
Mike, Your validation needs to occur at handshake level but I don't know how to do that: http://docs.sun.com/app/docs/doc/820-2493/aakhe?l=ena=view Cheers Marco Antonio On Mon, Jul 28, 2008 at 12:12 PM, Mike Henry [EMAIL PROTECTED] wrote: This looks like a great tool... I installed it and

Re: (ot) URL Hack Attempt Leaves Me Scractching My Head... To Ben Forta

2008-07-28 Thread Mary Jo Sminkey
Version 2 of the scanner I did is now available here: http://www.cfwebstore.com/index.cfm?fuseaction=page.downloaddownloadID=18 This has *not* been heavily tested as of yet, so use at your own risk! --- Mary Jo ~| Adobe®

Re: CFPOP and Email gateway

2008-07-28 Thread Varun Dixit
Thanks for the info Dave. It's always good to know of alternate solutions, but, I was thinking more on the line of gateway which would continuously listen for emails (just like it would do for SMS messages), any thoughts on that? Is it possible to listen for emails at all? Varun, I forgot to

Data source [datasourceNameHere] verification failed

2008-07-28 Thread Joe Velez
Here's an interesting one I recently had issues with. The server only has about 8 sites running on it, 1 is a city web site which does get a lot of traffic, but the server should still be able to handle it. Recently, I've been seeing this type of error: Data source [myDatasource] verification

Re: jsmx and progress bar

2008-07-28 Thread Richard White
hi does anyone have any ideas on how to achieve this? thanks ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;203748912;27390454;j

Re: (ot) URL Hack Attempt Leaves Me Scractching My Head... To Ben Forta

2008-07-28 Thread Mary Jo Sminkey
This has *not* been heavily tested as of yet, so use at your own risk! There was a little mistake in the scanner I posted earlier that could cause it to hang, if anyone downloaded it before, please grab the updated copy. In just some basic iteration checking, the new version does appear to be

Re: jsmx and progress bar

2008-07-28 Thread Phillip M. Vector
Progress bar for what? For multiple page cart? For loading content? For users RSVPing? Richard White wrote: hi does anyone have any ideas on how to achieve this? thanks ~| Adobe® ColdFusion® 8 software 8 is the

Right of @ Replace email

2008-07-28 Thread Paul Ihrig
i know i have done this befor i am trying to get the values of an email address from right of the AT @ symbol. so far i can get the stuff from the left then try to use replace to clear it out but next to my replace i still am retuning the domain like @gmail.com i just want gmail.com cfset xclude

Re: Right of @ Replace email

2008-07-28 Thread Greg Morphis
what about something like right(email, instr(email,'@')+1, len(email)) note: didn't test On Mon, Jul 28, 2008 at 1:32 PM, Paul Ihrig [EMAIL PROTECTED] wrote: i know i have done this befor i am trying to get the values of an email address from right of the AT @ symbol. so far i can get the

RE: Right of @ Replace email

2008-07-28 Thread Robert Harrison
(20080728) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http

Re: Barclays ePDQ MPI Integration

2008-07-28 Thread Les Mizzell
Has anyone out there had any success in connecting via XML to BarclayCards ePDQ MPI? I have a Barclays payment gateway set up for a company that sells insurance to traveling medical personal. I've had a death in the family and will be out for a few days, but would be happy to assist towards

Re: Right of @ Replace email

2008-07-28 Thread Paul Ihrig
thanks Greg instr isnt a function in CFC but you lead me to #right(getaUser.usr_email, find('@', getaUser.usr_email))# which is just what i wanted. thanks! -paul ~| Adobe® ColdFusion® 8 software 8 is the most important and

can't enable debug output in coldfusion 8

2008-07-28 Thread Alex I
already re-installed CF8 and can't find any solution... i'm simply trying to enable debug output in CF admin and nothing happens when i check Enable Robust Exception Information setting. Request Debugging is not working as well. (?cfdebug) BTW, running CF8 on Vista32/IIS7 anyone else having

Re: jsmx and progress bar

2008-07-28 Thread Richard White
for 'JSMX', it allows us to make calls to the server to do functions that can return results. we want to show a progress bar while it is on the server running the function to show the user how long it will be before the server returns the result Progress bar for what? For multiple page cart?

Re: Right of @ Replace email

2008-07-28 Thread Paul Ihrig
Robert that works great as well. thanks On Mon, Jul 28, 2008 at 2:40 PM, Robert Harrison [EMAIL PROTECTED] wrote: Try #ListLast(myfield,@)# Robert B. Harrison Director of Interactive services Austin Williams 125 Kennedy Drive, Suite 100 Hauppauge NY 11788 T : 631.231.6600 Ext. 119 F :

Re: Right of @ Replace email

2008-07-28 Thread Greg Morphis
Yeah, sorry I'm in DB land.. but I knew it would help get you to where you needed to be. On Mon, Jul 28, 2008 at 1:54 PM, Paul Ihrig [EMAIL PROTECTED] wrote: thanks Greg instr isnt a function in CFC but you lead me to #right(getaUser.usr_email, find('@', getaUser.usr_email))# which is just

RE: Barclays ePDQ MPI Integration

2008-07-28 Thread Paul Giesenhagen
Thank you Les, I am looking for the code that is posting to the bank for authorization .. anything you can provide you can email to [EMAIL PROTECTED] Thank you! -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Monday, July 28, 2008 1:54 PM To: CF-Talk Subject: Re:

RE: [ot] - Payment Gateways?

2008-07-28 Thread Al Musella, DPM
I use google checkout for a non-profit organization - they do not charge any processing fees for nonprofits - at least until the end of 2009... they have been excellent so far. At 09:10 PM 7/27/2008, William Seiter wrote: I get the feeling that Paypal is a bad choice. I have had some runins

Re: jsmx and progress bar

2008-07-28 Thread Josh Nathanson
What sort of thing are you doing on the server exactly? I don't think you can really get the exact progress, but you can do sort of an estimation that is better than nothing. I do this when doing multiple inserts into a database that can be a bit slow. You do a test single insert via ajax,

Re: jsmx and progress bar

2008-07-28 Thread Richard White
Hi Josh we are doing something very complex actually that has so many different things that could effect the time it takes. jsmx only passes back information when it is done but if we could get it to pass back at various stages in the cycle then it would be perfect we are generating a

RE: (ot) URL Hack Attempt Leaves Me Scractching My Head

2008-07-28 Thread Robert Harrison
Version 2 of the scanner I did is now available here: http://www.cfwebstore.com/index.cfm?fuseaction=page.downloaddownloadID=18 Am I missing something here. I thought CFQUERYPARAM solved this problem. Is this redundant or is there some problem with CFQUERYPARAM I'm missing? Robert B. Harrison

RE: jsmx and progress bar

2008-07-28 Thread Robert Harrison
Some progress bar tools might be a good addition for CF. This is the same problem I've been dealing with on large file uploads. I previously ran a thread about some problems with that, and upgrading to CF8 (as the list suggested) did fix the timeout problems, but it still has no way to indicate

Grials vs Coldfusion

2008-07-28 Thread henry ho
reading through the dzone rss feed today, I found: http://fbflex.wordpress.com/2008/07/26/nine-lessons-from-building-a-grails-flex-flash-website/ Very interesting for someone who'd like to get his hand dirty with Flex like me. However, how different would it be if CF is used in place of

Re: jsmx and progress bar

2008-07-28 Thread Josh Nathanson
Richard, it sounds like you might be able to implement the process I mentioned. If you were able to determine a baseline processing time for a simple data set, you could use this to estimate the amount of time it would take for more complex data sets. You'd have to do a lot of testing to see

Re: (ot) URL Hack Attempt Leaves Me Scractching My Head

2008-07-28 Thread Cutter (CFRelated)
MaryJo produces a product that she supports on older platforms, hence the need to bypass cfqueryparam. Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Robert Harrison wrote: Version 2

Re: can't enable debug output in coldfusion 8

2008-07-28 Thread Qing Xia
Maybe there is something in the CF code that is suppressing the debug output...? On Mon, Jul 28, 2008 at 2:54 PM, Alex I [EMAIL PROTECTED] wrote: already re-installed CF8 and can't find any solution... i'm simply trying to enable debug output in CF admin and nothing happens when i check

Re: (ot) URL Hack Attempt Leaves Me Scractching My Head

2008-07-28 Thread Brad Wood
Goodness sakes-- cfqueryparam has been around since ColdFusion 4.5.1. How far back does she need to support? :) ~Brad - Original Message - From: Cutter (CFRelated) [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, July 28, 2008 2:56 PM Subject: Re: (ot) URL Hack

Re: (ot) URL Hack Attempt Leaves Me Scractching My Head

2008-07-28 Thread Kris Jones
I have a client who reluctantly upgraded to CF5 from CF4.0 last year (yes, that would be 2007) because an sysadmin _accidentally_ upgraded, and they couldn't find the original 4.0 disks. While they'd like to upgrade to CF7 or CF8, the cost of migrating the many, many apps they have is cost

Export to Excel and PDF from the Spry Filtered Data Set??

2008-07-28 Thread Elena Aminova
Is there a way to go about exporting to PDF and Excel from the Spry Filtered Data Set? I am not sure how to go about doing that from my Search output, which is Spry filtered XML Data Set Thanks. Elena. ~| Adobe®

Re: (ot) URL Hack Attempt Leaves Me Scractching My Head

2008-07-28 Thread Mary Jo Sminkey
MaryJo produces a product that she supports on older platforms, hence the need to bypass cfqueryparam. Actually, that's not really the issue so much as customers that are running older versions of my software that don't have all the text inputs covered with cfqueryparams. While this is

PDF delivery via CFContent in IE7 ... doesn't.

2008-07-28 Thread Matt Robertson
This is driving me nuts. It works great in Safari, FF and, up until recently, in IE. Server is CF 6.1 I have to serve up pre-existing pdf files stored off the web root and pushed to the authenticated visitor via cfcontent. User clicks on link located at foo.cfm: a

Re: PDF delivery via CFContent in IE7 ... doesn't.

2008-07-28 Thread Will Tomlinson
This is driving me nuts. It works great in Safari, FF and, up until recently, in IE. Server is CF 6.1 I could swear I ran into this same thing with WMV's. IE7 wasn't set as default for that file type. I had to go in and change IE7's settings before it would shoe the movie. Otherwise, I

Re: PDF delivery via CFContent in IE7 ... doesn't.

2008-07-28 Thread Matt Robertson
I had to go in and change IE7's settings before it would shoe the movie You mean Windows' settings, right? I don't know anywhere where IE7 does file type support, although that doesn't mean its not hiding somewhere inside. Since I have the full Acrobat (5) on my desktop unit, I'll try it on

Re: jsmx and progress bar

2008-07-28 Thread Richard White
very good point about the estimated time being better than nothing. i haven't read anything anywhere else that suggests how to do this, and also as suggested cfflush may not be the right option for this scenario, so until something else is available then i think your option may be best josh

Unknown JS error when doing AJAX.

2008-07-28 Thread Phillip M. Vector
I'm setting up a AJAX JS which updates a field on the form that is called character as div id=characterStuff/div When this function is run, it submits ok, but I get an Unknown runtime Error in the area of {document.. The thing is, I thought Firefox was more solid on JS and it runs perfectly on

Re: Unknown JS error when doing AJAX.

2008-07-28 Thread Josh Nathanson
I don't know if you posted the entire code there, but if so, the second close curly bracket should be a semicolon. xmlHttp.onreadystatechange= function() { document.getElementById(character).innerHTML=xmlHttp.responseText; } } == make that a semicolon -- Josh - Original Message -

Re: Grials vs Coldfusion

2008-07-28 Thread Paul Hastings
henry ho wrote: Very interesting for someone who'd like to get his hand dirty with Flex like me. However, how different would it be if CF is used in place of Grials? well for one thing you wouldn't spend about 2 months on this site, figuring out how to get Flex, Flash and Grails to work

Re: Unknown JS error when doing AJAX.

2008-07-28 Thread Phillip M. Vector
No. I didn't post the whole code. Trying to cut down on extra code.. function updatestats() { xmlHttp=GetXmlHttpObject(); cfoutput var url=#myself#AJAX.ShowCharacter; url=url+House=+document.getElementById(House).value;

Re: Unknown JS error when doing AJAX.

2008-07-28 Thread Josh Nathanson
Your bracketing looks fine. Don't you have to do some kind of Active-X thingamabob for IE's xmlHttp implementation, or do you have that in another part of the code? Also, did you console.log the final url content to make sure it's what you're expecting? Finally, I don't think it's strictly

Re: PDF delivery via CFContent in IE7 ... doesn't.

2008-07-28 Thread Will Tomlinson
I had to go in and change IE7's settings before it would shoe the movie You mean Windows' settings, right? I don't know anywhere where IE7 does file type support, although that doesn't mean its not hiding somewhere inside. Since I have the full Acrobat (5) on my desktop unit, I'll try it on

Re: Unknown JS error when doing AJAX.

2008-07-28 Thread Phillip M. Vector
Josh Nathanson wrote: Your bracketing looks fine. *nods* Don't you have to do some kind of Active-X thingamabob for IE's xmlHttp implementation, or do you have that in another part of the code? Another part of the code. // Set variable for AJAX var xmlHttp; // Load in the AJAX object

Re: can't enable debug output in coldfusion 8

2008-07-28 Thread Al Musella, DPM
I am still on an older version of cf, but does cf 8 have a restrict debug output to specified ips? Check that your ip address is specified. Maybe there is something in the CF code that is suppressing the debug output...? On Mon, Jul 28, 2008 at 2:54 PM, Alex I [EMAIL PROTECTED] wrote:

Re: Client Certificate Validation in Coldfusion 8

2008-07-28 Thread Mike Henry
Found the solution... cfset x509 = GetPageContext().getRequest().getAttribute(javax.servlet.request.X509Certificate) cfoutputnot before = #x509[1].getNotBefore()#/cfoutputbr / cfoutputnot after = #x509[1].getNotAfter()#/cfoutput Mike, Your validation needs to occur at handshake level but I

Re: Grials vs Coldfusion

2008-07-28 Thread Andrew Scott
Lession1: Yes in some cases ant is all that is needed, however when you deal with the Java world you have dependancies and version conflicts. Maven2 is a means to minimise conflicts with incorrect versions of dependant libraries. Lesson2: I can't speak of BlazeDS as I know very little about it,

Re: cfflush in CF 8

2008-07-28 Thread Wes Middendorff
I am also having issues with the cfflush tag using IIS. Unfortunately the environment I am in is pretty locked down and I cannot even use firefox to determine if the problem is IE. My biggest problem is that this link no longer works. Does anyone know what this solution was? My solution for

Re: cfflush in CF 8

2008-07-28 Thread Wes Middendorff
This link no longer works, does anyone know what this solution was supposed to be? My solution for cfflush on CF8 with IIS: http://orangepips.instantspot.com/blog/index. cfm/2007/12/12/cfflush-Problem-and-Solution-on-CF8-with-IIS-

Re: cfflush in CF 8

2008-07-28 Thread James Holmes
Copy and paste the link carefully. The page is working fine. On Tue, Jul 29, 2008 at 10:23 AM, Wes Middendorff [EMAIL PROTECTED] wrote: This link no longer works, does anyone know what this solution was supposed to be? My solution for cfflush on CF8 with IIS:

Re: Unknown JS error when doing AJAX.

2008-07-28 Thread Brad Wood
Just tossing out an idea here. I have had problems with IE sometimes where, depending on the version of MSXML.dll being used IE will crash unexpectedly. Sometimes it appears to be related to the encoding used, but that is hard to nail down. Usually I tended to get the error in IE 6 on machines

Re: can't enable debug output in coldfusion 8

2008-07-28 Thread Brad Wood
Also, check for this anywhere in your code: cfsetting showdebugoutput=No ~Brad - Original Message - From: Al Musella, DPM [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, July 28, 2008 8:18 PM Subject: Re: can't enable debug output in coldfusion 8 I am still on an