Re: CF Load testing tools

2006-06-14 Thread Josh Nathanson
Message - From: Munson, Jacob [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, June 14, 2006 3:11 PM Subject: RE: CF Load testing tools There's also OpenSTA, which I haven't used but have heard good things about. And it's open source, which I know doesn't get

Re: CF Load testing tools

2006-06-14 Thread James Holmes
Yes, that's what I found when I tried it. I recommend it to all. You can even distribute your tests to a farm of clients to come closer to simulating a real-life load situaiton. On 6/15/06, Josh Nathanson [EMAIL PROTECTED] wrote: Quick report: OpenSTA rocks. It lets you record browser sessions

RE: Did my own CF/SQL Server performance testing, my world is tur ned upside down.

2006-05-21 Thread Dave Watts
Well, OK, not that dramatic, but every DBA I have ever known has told me that if you want performance, you use stored procedures. My quick test this evening has me rethinking that. Just a warning - quick tests are often worth about the time you put into them. The straight query using

Re: Did my own CF/SQL Server performance testing, my world is tur ned upside down.

2006-05-21 Thread Barney Boisvert
It's worth mentioning that there is some overhead for calling a stored proc that isn't involved with straight queries, though it should be minimal. Where stored procs REALLY shine is when you've got a query whose result is only used for some logic driving another query. Using a stored proc in

Did my own CF/SQL Server performance testing, my world is turned upside down.

2006-05-20 Thread Pete Ruckelshaus
Well, OK, not that dramatic, but every DBA I have ever known has told me that if you want performance, you use stored procedures. My quick test this evening has me rethinking that. Using essentially the same query (basically a login query against a single table, pass in username and password,

Re: Did my own CF/SQL Server performance testing, my world is turned upside down.

2006-05-20 Thread Tony
here's what i have found... i agree. when it comes to small queries like that with NOT MUCH LOGIC involved. When it comes to a larger Stored Proc with LOTS of gobbledeegoop, i think it changes then. but yeah, for the most part, i refactored most if not all of my smaller queries into straight

Re: Did my own CF/SQL Server performance testing, my world is turned upside down.

2006-05-20 Thread Phillip Beazley
On 5/20/06, Pete Ruckelshaus [EMAIL PROTECTED] wrote: Has anyone else found this to be the case? I'm really thinking about ripping out all of my SP's and just using queries, it would make my life easier on a number of levels. I have all of my queries as methods in a CFC, so code reuse

CFUNITED-06 interview 20: John Paul Ashenfelter - Testing CF Applications

2006-05-17 Thread Michael Smith
of CFUNITED 2005 recordings and materials/laptop bag * Fusetalk Forum on CFUNITED Talk to other Attendees. * CFLive - Thursday 12:30pm - John Paul Ashenfelter on Agile Programming * Interview with John Paul Ashenfelter on Testing CF Applications CFUNITED is the premier ColdFusion Conference near

Stress testing software

2006-03-16 Thread Jason Rogoz
Does anyone have any recommendations for stress testing software? The programmer before me created an application using the fusebox architecture and i'm experiencing high server load with 20-30 users which does not seem like it should be happening...or does anyone have any ideas on what

RE: Stress testing software

2006-03-16 Thread Munson, Jacob
I asked a Macromedia employee what he recommended for load testing software, and he suggested OpenSTA. This is an open source, free tool. I haven't tried it, but I thought I'd pass along the info: http://www.opensta.org/ -Original Message- From: Jason Rogoz [mailto:[EMAIL PROTECTED

Re: Stress testing software

2006-03-16 Thread Mark Stanton
Also have a look at http://www.eclipse.org/tptp/ On 3/17/06, Munson, Jacob [EMAIL PROTECTED] wrote: I asked a Macromedia employee what he recommended for load testing software, and he suggested OpenSTA. This is an open source, free tool. I haven't tried it, but I thought I'd pass along

Re: Stress testing software

2006-03-16 Thread John Paul Ashenfelter
On 3/16/06, Jason Rogoz [EMAIL PROTECTED] wrote: Does anyone have any recommendations for stress testing software? The programmer before me created an application using the fusebox architecture and i'm experiencing high server load with 20-30 users which does not seem like it should

Browser Testing/Redirect...

2006-01-23 Thread Ryan Escamilla
What would be a good method to test a user's browser and see if they have JavaScript and ActiveX controls enabled and Flash installed? If any are disabled or not installed, I would like to re-direct the user to a site requirements page. Thanks Rye

RE: Browser Testing/Redirect...

2006-01-23 Thread Adrian Lynch
http://www.macromedia.com/software/flashplayer/download/detection_kit/ Not sure if this is the best to use. Anyone got anything better? Ade -Original Message- From: Ryan Escamilla [mailto:[EMAIL PROTECTED] Sent: 23 January 2006 23:15 To: CF-Talk Subject: Browser Testing/Redirect

RE: Browser Testing/Redirect...

2006-01-23 Thread Bobby Hartsfield
Hartsfield http://acoderslife.com -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Monday, January 23, 2006 6:20 PM To: CF-Talk Subject: RE: Browser Testing/Redirect... http://www.macromedia.com/software/flashplayer/download/detection_kit/ Not sure if this is the best

RE: Browser Testing/Redirect...

2006-01-23 Thread Dave Watts
What would be a good method to test a user's browser and see if they have JavaScript and ActiveX controls enabled and Flash installed? If any are disabled or not installed, I would like to re-direct the user to a site requirements page. FlashObject - http://blog.deconcept.com/flashobject/

testing for an undefined date

2006-01-13 Thread daniel kessler
I can't seem to get this to work. I have a date field in an Oracle DB, created as event_date date. It has a date field that's not required so it's only filled in when a date is available. How do I test to see if it's empty or not? I did: cfif whatsnew.event_date NEQ undefined cfif

Re: testing for an undefined date

2006-01-13 Thread Robert Everland III
cfif isDate(whatsnew.event_date) ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229491 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4

RE: testing for an undefined date

2006-01-13 Thread Tim Heald
In your query you can do: Where event_date is null Or is not null In your cf you can do cfif len(trim(whatsNew.eventDate)) -Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Friday, January 13, 2006 1:09 PM To: CF-Talk Subject: testing for an undefined

Re: testing for an undefined date

2006-01-13 Thread daniel kessler
It still seems to be enacting the code. I also tried cfif isDefined('whatsnew.event_date') I guess it's a date but an empty date or something like that since isDate didn't help. cfif isDate(whatsnew.event_date) ~| Message:

Re: testing for an undefined date

2006-01-13 Thread daniel kessler
In your query you can do: Where event_date is null Or is not null I still want the record, but I just don't want to try and display the html for the date if the date doesn't exist. It adds a line for it. thanks! ~|

Re: testing for an undefined date

2006-01-13 Thread Charlie Hanlon
@houseoffusion.com Sent: Friday, January 13, 2006 1:28 PM Subject: Re: testing for an undefined date It still seems to be enacting the code. I also tried cfif isDefined('whatsnew.event_date') I guess it's a date but an empty date or something like that since isDate didn't help. cfif isDate

RE: testing for an undefined date

2006-01-13 Thread Tim Heald
Read further. -Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Friday, January 13, 2006 1:30 PM To: CF-Talk Subject: Re: testing for an undefined date In your query you can do: Where event_date is null Or is not null I still want the record

RE: testing for an undefined date

2006-01-13 Thread Andy Matthews
, January 13, 2006 12:30 PM To: CF-Talk Subject: Re: testing for an undefined date In your query you can do: Where event_date is null Or is not null I still want the record, but I just don't want to try and display the html for the date if the date doesn't exist. It adds a line for it. thanks

Re: testing for an undefined date

2006-01-13 Thread daniel kessler
Read further. ah I didn't see that at the bottom. That values to 0 so it doesn't enact. cool. thanks! ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:229498 Archives:

Testing...

2006-01-06 Thread Rick Faircloth
Just testing to see if I can get this mail through. ArgoSoft suddenly stopped delivering mail to my own inbox, then after awhile, suddenly started up again...sigh... Rick ~| Message: http://www.houseoffusion.com/lists.cfm/link

Testing New Mail Server...Just Ignore

2006-01-02 Thread Rick Faircloth
Just running a test to see if my mail server is indeed serving mail! Rick ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a

RE: help with paypal ipn testing - always INVALID response

2005-12-29 Thread Jennifer Gavin-Wear
#CFHTTP.FileContent# is not VERIFIED cfabort /cfif -Original Message- From: stylo stylo [mailto:[EMAIL PROTECTED] Sent: 23 December 2005 03:16 To: CF-Talk Subject: Re: help with paypal ipn testing - always INVALID response Any ideas anyone

RE: help with paypal ipn testing - always INVALID response

2005-12-29 Thread Jennifer Gavin-Wear
Hi Stylo, Further thought on this, have you checked your firewall is allowing the traffic with Paypal? Jenny -Original Message- From: Jennifer Gavin-Wear [mailto:[EMAIL PROTECTED] Sent: 23 December 2005 21:49 To: CF-Talk Subject: RE: help with paypal ipn testing - always INVALID

Testing Email server. Please ignore.

2005-12-29 Thread [EMAIL PROTECTED]
Please ignore. Sorry. :) I'm having trouble getting email from this list and I'd like to see if this is just a lull in the convo or something worse (This is what I suspect). mail2web - Check your email from the web at

Re: help with paypal ipn testing - always INVALID response

2005-12-29 Thread stylo stylo
I've only tested with the eliteweaver test server. I tried both code formats and both get invalid back. I haven't tried with paypal yet. I think it probably works and it's just the eliteweaver server. I'll post again if fails with paypal.

Re: help with paypal ipn testing - always INVALID response

2005-12-26 Thread stylo stylo
Thanks, I'm aware of it and thought of it, but the code to do this IPN is only a few lines long. I think it must work and is just something silly; going to rig it up so I can try it live and see... ~| Logware (www.logware.us):

Re: help with paypal ipn testing - always INVALID response

2005-12-25 Thread stylo stylo
Surely one person out there has worked on this stupid ipn system, no? ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a

Re: help with paypal ipn testing - always INVALID response

2005-12-25 Thread Will Tomlinson
Surely one person out there has worked on this stupid ipn system, no? I don't know the answer to your question, but PaypalMX offers an easy solution for a paypal payment system. http://www.web-relevant.com/web-relevant/index.cfm?fuseaction=main.paypalmx hth, Will

Re: help with paypal ipn testing - always INVALID response

2005-12-22 Thread stylo stylo
Any ideas anyone? ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message:

help with paypal ipn testing - always INVALID response

2005-12-21 Thread stylo stylo
I am having trouble with the IPN response as it always comes through with the CFHTTP.FileContent = INVALID instead of VERIFIED. I am using http://www.eliteweaver.co.uk/testing/ipntest.php. I tried 2 code formats, both the same. I think str isn't sending back EXACTLY what I get, therefore

Just testing

2005-12-16 Thread Bobby Hartsfield
..again ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application

testing a string for unicode characters

2005-12-08 Thread S . Isaac Dealey
Strange question, I'm hoping somebody knows... I just noticed today (or rather, John Ashenfelter pointed out to me :) that some regular expression engines include \u to match unicode characters. So I did a couple tests on some data we had in a legacy database (it doesn't have any nvarchar

Re: testing a string for unicode characters

2005-12-08 Thread Paul Hastings
S. Isaac Dealey wrote: I just noticed today (or rather, John Ashenfelter pointed out to me :) that some regular expression engines include \u to match unicode characters. that's what unicode calls it's level 1 support. bare butt minimum. i'm weak w/regex so take all of the following w/a

OT: Unit testing sucks?

2005-10-19 Thread Munson, Jacob
This guy thinks unit testing is way overrated and a waste of time: http://wilshipley.com/blog/2005/09/unit-testing-is-teh-suck-urr.html From the article: How can I possibly ship a bug-free program and thus make enough money to feed my tribe if I don't test my shiznit? The answer is, you can't

RE: Unit testing sucks?

2005-10-19 Thread Tom Kitta
I hope this is not some kind of invitation to a flame war, but just for a quick response, testing in general is a broad topic, comparable in scope to programming. I am sure most people don't have rock hard rules for programming style for *every* situation. These things change rules change

RE: Unit testing sucks?

2005-10-19 Thread Munson, Jacob
From: Tom Kitta I hope this is not some kind of invitation to a flame war, Not at all. In fact, I've been hoping to get into unit testing when I have some free time. Now that I saw this blog entry stating that there are much more efficient/effective ways to test your code, I'm not sure I

Re: OT: Unit testing sucks?

2005-10-19 Thread Sean Corfield
On 10/19/05, Munson, Jacob [EMAIL PROTECTED] wrote: This guy thinks unit testing is way overrated and a waste of time: Well, that's not really what he's saying... his real objection is that unit testing *tools* suck and that developers just don't know how to write automated tests. And I agree

RE: OT: Unit testing sucks?

2005-10-19 Thread Munson, Jacob
So I'm pretty new to the concept of 'unit testing', but I ALWAYS do extensive testing of my apps. I was under the impression that unit testing was always done with a product or tool, and that is what the author is saying stinks. Am I way off base? Say for example that I write a spider

Re: OT: Unit testing sucks?

2005-10-19 Thread Joe Rinehart
Well, that's not really what he's saying... his real objection is that unit testing *tools* suck and that developers just don't know how to write automated tests. I agree with that - but do you think it's the developer's fault? In the end, I think they must be at least partially accountable

Re: OT: Unit testing sucks?

2005-10-19 Thread Paul Kenney
Sean, I certainly hope you include the testing tools in coldfusion as well when you say they are hard to use. I agree that there is a lot of code that is written to put together automated tests, but the long-term benefit tends to be worth it if the tests are maintained along with the code

Testing File Upload

2005-10-10 Thread Lee
I have a file upload option on a form page where the user may or may not attach a file. How do I test on the action page if the user attached a file? Isdefined and paramaterexists always come in true. Lee Surma ~| Logware

RE: Testing File Upload

2005-10-10 Thread Michael T. Tangorre
From: Lee [mailto:[EMAIL PROTECTED] I have a file upload option on a form page where the user may or may not attach a file. How do I test on the action page if the user attached a file? Isdefined and paramaterexists always come in true. cfif len(form.formFieldName) gt 0

RE: Testing File Upload

2005-10-10 Thread Bobby Hartsfield
Just check the length of the file field. cfif len(trim(form.fielfield)) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Lee [mailto:[EMAIL PROTECTED] Sent: Monday, October 10, 2005 4:34 PM To: CF-Talk Subject: Testing File Upload I

Re: Testing File Upload

2005-10-10 Thread Jason Troy
I would suggest cfif len(trim(form.formFieldName)) some browsers will append a space to the value submitted. cfif len(form.formFieldName) gt 0 ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket

clear session variables for testing

2005-09-29 Thread Mark Fuqua
Good Morning, Is there an easy way to clear all session variables? It would help me test for behaviors after session variables have timed out. Thanks, Mark ~| Find out how CFTicket can increase your company's customer

RE: clear session variables for testing

2005-09-29 Thread Adrian Lynch
StructClear(SESSION) Ade -Original Message- From: Mark Fuqua [mailto:[EMAIL PROTECTED] Sent: 29 September 2005 13:23 To: CF-Talk Subject: clear session variables for testing Good Morning, Is there an easy way to clear all session variables? It would help me test for behaviors after

RE: clear session variables for testing

2005-09-29 Thread Taco Fleur
] Sent: Thursday, 29 September 2005 10:31 PM To: CF-Talk Subject: RE: clear session variables for testing StructClear(SESSION) Ade -Original Message- From: Mark Fuqua [mailto:[EMAIL PROTECTED] Sent: 29 September 2005 13:23 To: CF-Talk Subject: clear session variables for testing

RE: clear session variables for testing

2005-09-29 Thread Emmet McGovern
CFCOOKIE NAME=cfglobals EXPIRES=NOW Emmet -Original Message- From: Mark Fuqua [mailto:[EMAIL PROTECTED] Sent: Thursday, September 29, 2005 8:23 AM To: CF-Talk Subject: clear session variables for testing Good Morning, Is there an easy way to clear all session variables? It would help me

Testing - Not received anything since 7pm Eastern Friday

2005-09-10 Thread Dave.Phillips
Anyone out there? Dave ** The information contained in this message, including attachments, may contain privileged or confidential information that is intended to be delivered only to the person identified

Re: Testing - Not received anything since 7pm Eastern Friday

2005-09-10 Thread Will Tomlinson
Anyone out there? Me! ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free

Re: (open source) web testing/scalability tools

2005-08-22 Thread Larry Lyons
Folks, I'm working on a project that involves some stress/load testing work and am curious about people's experience with different tools. For the record, I've been certified in Empirix eTest Suite (which is what they call it when you get the training from them) and familiar with using

Re: (open source) web testing/scalability tools

2005-08-20 Thread James Holmes
I've use OpenSTA with good results. I like the way scripts are generated by recording user actions at the target site. On 8/18/05, John Paul Ashenfelter [EMAIL PROTECTED] wrote: Folks, I'm working on a project that involves some stress/load testing work and am curious about people's

(open source) web testing/scalability tools

2005-08-18 Thread John Paul Ashenfelter
Folks, I'm working on a project that involves some stress/load testing work and am curious about people's experience with different tools. For the record, I've been certified in Empirix eTest Suite (which is what they call it when you get the training from them) and familiar with using

need help testing...

2005-08-04 Thread Ken Ferguson
Does anyone have an aol email address to which I can send a couple of test emails? I am getting a bunch of complaints about not being able to deliver email to aol addresses and I'd like to check it out. Thanks, Ferg ~|

RE: need help testing...

2005-08-04 Thread Brian Polackoff
] Sent: Thursday, August 04, 2005 9:18 AM To: CF-Talk Subject: need help testing... Does anyone have an aol email address to which I can send a couple of test emails? I am getting a bunch of complaints about not being able to deliver email to aol addresses and I'd like to check it out. Thanks, Ferg

Re: need help testing...

2005-08-04 Thread David Delbridge
Ken, Unless we're talking about cfmail, this is off-topic. That said, it is very likely that your mail server has been blacklisted by AOL. This is very common, even among the most innocent of mail servers. If you've been blacklisted, your mail server's logs will contain a message with a link

looking for functional testing app

2005-06-28 Thread William Kossack
I'm looking for an application to do functional testing of our CF app. What do people use? PS We don't really need performance testing just functional or regression testing William Kossack [EMAIL PROTECTED] Yahoo! Sports

testing for undefined

2005-06-22 Thread Daniel Kessler
I'm returning data back from a database and want to populate variables the same way as columns are named. I have this working fine (though any suggested improvements are welcome), but when the values are undefined, in this case at least, I'd like to make the variable have a '' (empty quotes)

RE: testing for undefined

2005-06-22 Thread Jim Davis
-Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 9:47 AM To: CF-Talk Subject: testing for undefined I'm returning data back from a database and want to populate variables the same way as columns are named. I have this working fine

RE: testing for undefined

2005-06-22 Thread daniel kessler
. It's making my life much simpler to implement this. I still have the original problem of testing for undefined. I'm not sure if any of that actually addresses your problem... but I hope it does! thanks for answerin'! ~| Logware

RE: testing for undefined

2005-06-22 Thread Jim Davis
-Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 11:24 AM To: CF-Talk Subject: RE: testing for undefined That's ok. This is just going to loop through the recordset and display the data so I use the same struct for each record

RE: testing for undefined

2005-06-22 Thread Chase Seibert
Is there any way to set a header item in an outgoing CFHTTP request? I'm working with an API that needs a custom header item inserted in a GET request. I'm thinking something like: CFHTTP url=http://server1/xmlnotify.asp; method=GET HTTP_AUTHORIZATION: Digest userName=cseibert

RE: testing for undefined

2005-06-22 Thread daniel kessler
can repopulate them easily. But that is certainly the way I may end up doing it. I still have the original problem of testing for undefined. Well - sort of. Queries aren't sparse arrays - their values should always be empty space (although I think exceptions can arise when you build

RE: testing for undefined

2005-06-22 Thread Jim Davis
-Original Message- From: daniel kessler [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 12:48 PM To: CF-Talk Subject: RE: testing for undefined You can display everything as you want using just the query - why waste the time to convert the query to something else to do

CFUNITED interview 15: Usablity testing; CFMX 7 event gateways

2005-06-14 Thread Michael Smith
In this issue of ColdFusion conference and training news: 1. CFUNITED News - extra premium bags, CF Survivor 2. ColdFusion Live! Every Thursday 12:30pm 3. How to convince your boss to send you to CFUNITED 4. Usability Testing, The Basics and Beyond interview with Douglas Ward 5. Using Event

RE: Ping... Just testing

2005-05-10 Thread Damien McKenna
-Original Message- From: Damien McKenna I'm just testing to make sure my email is working. FYI, I'm not receiving email from this list today, nothing since 12:45am this morning, though my emails are showing up on the website archive. HoF admins - are you receiving any bounce

Ping... Just testing

2005-05-10 Thread Damien McKenna
I'm just testing to make sure my email is working. -- Damien McKenna ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message

RE: Ping... Just testing

2005-05-10 Thread Michael Dinowitz
It seems that the post server for iMS was down. Might have been a problem on reboot or something else. If anyone sees a site or list problem and wants to get it to my attention fast, you can call me at: 718-951-3235 or 718-252-2329 And personal email with issues are always answered. FYI, I'm

RE: Ping... Just testing

2005-05-10 Thread Damien McKenna
Ok, it seems to have sorted itself out. I finally got all the emails from last night. Weird, though. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include stdjoke.h

OT-Testing Smarter Mail Setup

2005-04-16 Thread Rick Faircloth
Just a test... Rick ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with

lol testing... again

2005-04-15 Thread Ewok
Testing one more time…. FROM THE RIGHT EMAIL ADDRESS! Sorry Mike! -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.308 / Virus Database: 266.9.13 - Release Date: 4/16/2005 ~| Logware

Load Testing ColdFusion Applications Using SeeFusion

2005-04-14 Thread Steven Erat
The Online ColdFusion Meetup Group invites you to a virtual presentation on the ColdFusion monitoring tool, SeeFusion, Thursday April 14, 2005 at 6:00 PM EDT. RSVP here http://coldfusion.meetup.com/17/events/4387662/ for more information on where to view the meeting. SeeFusion, available at

RE: Load Testing ColdFusion Applications Using SeeFusion

2005-04-14 Thread Calvin Ward
Weird, where are the submit buttons? -Original Message- From: Steven Erat [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 3:02 PM To: CF-Talk Subject: Load Testing ColdFusion Applications Using SeeFusion The Online ColdFusion Meetup Group invites you to a virtual presentation

RE: Load Testing ColdFusion Applications Using SeeFusion

2005-04-14 Thread Calvin Ward
Bah, for some reason our proxy was blocking it... nm -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 4:07 PM To: CF-Talk Subject: RE: Load Testing ColdFusion Applications Using SeeFusion Weird, where are the submit buttons? -Original

Re: Load Testing ColdFusion Applications Using SeeFusion

2005-04-14 Thread Steven Erat
If you missed this online presentation of SeeFusion monitoring for ColdFusion MX servers, it is now archived for public viewing here: http://mmsupport.breezecentral.com/p39006045/ This includes the slides, the live demo, the chat, and all the audio. Thanks to everyone who participated in this

Re: Built a dirty word checker, testing please?

2005-04-10 Thread Will Tomlinson
Will, I don't think anybody's saying this is a bad idea, and I was more'n glad to help out. I think it's a great idea and when it's in a stable version I think you should put it up on cflib.org to be used by the community... Definitely. If it's worthwile for people to use, I'll put it wherever

Re: Built a dirty word checker, testing please?

2005-04-10 Thread Will Tomlinson
-Original Message- It's really hard to do this (so I'm not picking on it really) but after some tests: Thanks Jim! I've added some of these to the list. Will ~| Logware (www.logware.us): a new and convenient

Built a dirty word checker, testing please?

2005-04-09 Thread Will The Game
Hey, I've built a cool little tool I'm callin' nodirtywords. It's just what the name implies, code that check to make sure a dirty word hasn't been submitted via form data. Iset it up as a web service, but also built a custom tag AND just a plain ol' CFC. For now I wanted to see if some of

RE: Built a dirty word checker, testing please?

2005-04-09 Thread Paul Vernon
Technique seems OK, but the vocabulary is limited, you definitely need a bigger dictionary of dirty words! I got quite a few passes that I would have thought would have been fails and I didn't have to think too hard to find them... Paul

Re: Built a dirty word checker, testing please?

2005-04-09 Thread Jochem van Dieten
Will The Game wrote: I've built a cool little tool I'm callin' nodirtywords. It's just what the name implies, code that check to make sure a dirty word hasn't been submitted via form data. What are dirty words? Are those words that don't shower regularly? For now I wanted to see if

Re: Built a dirty word checker, testing please?

2005-04-09 Thread Will Tomlinson
I KNEW I could rely on you guys to come up with plenty of dirty words to add! Umm...I can't post them here but what I have already are just the usual suspects. If you come up with extra words that aren't being caught just email them to: [EMAIL PROTECTED] Wow, I've never been so excited to

RE: Built a dirty word checker, testing please?

2005-04-09 Thread Andy Ousterhout
Dirty Dutchman, DIRTY! -Original Message- From: Jochem van Dieten âççéñţ throws it off too and it doesn't understand Dutch. ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start

Re: Built a dirty word checker, testing please?

2005-04-09 Thread S . Isaac Dealey
Will The Game wrote: I've built a cool little tool I'm callin' nodirtywords. It's just what the name implies, code that check to make sure a dirty word hasn't been submitted via form data. What are dirty words? Are those words that don't shower regularly? For now I wanted to see if some

Re: Built a dirty word checker, testing please?

2005-04-09 Thread Will Tomlinson
Even with english it doesn't appear to work at all... every single one of these words passed: dirty filthy slimy greasy sleazy scuzzy cruddy dungy grubby grungy mucky muddy mung murky raunchy scummy skank sullied yucky And every one of those words would be allowed on my pages. let's stick with

Re: Built a dirty word checker, testing please?

2005-04-09 Thread S . Isaac Dealey
Even with english it doesn't appear to work at all... every single one of these words passed: dirty filthy slimy greasy sleazy scuzzy cruddy dungy grubby grungy mucky muddy mung murky raunchy scummy skank sullied yucky And every one of those words would be allowed on my pages. let's stick with

Re: Built a dirty word checker, testing please?

2005-04-09 Thread Marlon Moyer
Toss my salad passed with flying colors! :) On Apr 9, 2005 12:23 PM, Will Tomlinson [EMAIL PROTECTED] wrote: Even with english it doesn't appear to work at all... every single one of these words passed: dirty filthy slimy greasy sleazy scuzzy cruddy dungy grubby grungy mucky muddy mung murky

Re: Built a dirty word checker, testing please?

2005-04-09 Thread Mark Drew
Of course, if your name is Richard ,it also shortens to Dick which I presume will get censored! I think moderating posts is better than censorship but its also a usefull first pass MD On Apr 9, 2005 7:26 PM, Marlon Moyer [EMAIL PROTECTED] wrote: Toss my salad passed with flying colors! :)

Re: Built a dirty word checker, testing please?

2005-04-09 Thread Claude Schneegans
dirty filthy slimy greasy sleazy scuzzy cruddy dungy grubby grungy mucky muddy Why don't filter all words ending with y? ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this

RE: Built a dirty word checker, testing please?

2005-04-09 Thread Rick Faircloth
a dirty word checker, testing please? Even with english it doesn't appear to work at all... every single one of these words passed: dirty filthy slimy greasy sleazy scuzzy cruddy dungy grubby grungy mucky muddy mung murky raunchy scummy skank sullied yucky And every one of those words would

RE: Built a dirty word checker, testing please?

2005-04-09 Thread Clark Slater
wanker -Original Message- From: Marlon Moyer [mailto:[EMAIL PROTECTED] Sent: Saturday, April 09, 2005 11:26 AM To: CF-Talk Subject: Re: Built a dirty word checker, testing please? Toss my salad passed with flying colors! :) On Apr 9, 2005 12:23 PM, Will Tomlinson [EMAIL PROTECTED

RE: Built a dirty word checker, testing please?

2005-04-09 Thread Rick Faircloth
Now, that wouldn't be funny... Rick -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Saturday, April 09, 2005 2:47 PM To: CF-Talk Subject: Re: Built a dirty word checker, testing please? dirty filthy slimy greasy sleazy scuzzy cruddy dungy grubby grungy

Re: Built a dirty word checker, testing please?

2005-04-09 Thread Will Tomlinson
I really don't know how to respond other than: Please give me admin priveleges to your clients' sites. I have some words I'd love to add to them. Would that be ok? Now, we wouldn't want to have any censorship there would we?... Back to my original post. Look, I just thought it was a pretty

RE: Built a dirty word checker, testing please?

2005-04-09 Thread Rick Faircloth
Toss my salad...? -Original Message- From: Clark Slater [mailto:[EMAIL PROTECTED] Sent: Saturday, April 09, 2005 3:22 PM To: CF-Talk Subject: RE: Built a dirty word checker, testing please? wanker -Original Message- From: Marlon Moyer [mailto:[EMAIL PROTECTED] Sent: Saturday

RE: Built a dirty word checker, testing please?

2005-04-09 Thread Rick Faircloth
It's a good thing, Will...better to do what you can than to do nothing...thanks for the effort! Rick -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Saturday, April 09, 2005 3:28 PM To: CF-Talk Subject: Re: Built a dirty word checker, testing please? I really

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