Re: Testing: Is this thing on

2001-06-25 Thread Michael Dinowitz
yes, but if others want to 'shout out', I've got no problems. Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: testing..

2001-05-04 Thread Peter Tilbrook
I don't think so. I posted a message six hours ago and it has not been posted yet. -Original Message- From: Mak Wing Lok [mailto:[EMAIL PROTECTED]] Sent: Friday, 4 May 2001 10:04 To: CF-Talk Subject: testing.. is CF-talk OK? ~~ Structure

testing..

2001-05-03 Thread Mak Wing Lok
is CF-talk OK? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

Re: testing..

2001-05-03 Thread Michael Dinowitz
* Team Allaire * Yes. A number of members are having delays. We had a router blow up and network service has been a little bad for the last day. is CF-talk OK? ~~ Structure your

RE: ColdFusion 4.5 Certification Testing Tool

2001-04-11 Thread Angél Stewart
Oh WAY cool! :) But..you said Demo..we have to pay to use it then, like some sort of online study tool? -Gel -Original Message- From: Brian Simmons [mailto:[EMAIL PROTECTED]] There is a DEMO version on the Centrasoft website (http://www.centrasoft.com), which allows you to check out

RE: ColdFusion 4.5 Certification Testing Tool

2001-04-11 Thread Brian Simmons
Hi Gel, There's a DEMO version of CF_Buster located on our website. It is not a nagged or a time-limited copy. It has all the features of the full version of CF_Buster, EXCEPT the full version has over 500 questions in it, whereas the DEMO only has 61 questions. The DEMO is intended to let

Re: ColdFusion 4.5 Certification Testing Tool

2001-04-11 Thread Billy Cravens
Hehe.. you'd think they'd spend hours and hours upon making and then give it away for free. Greedy bastards! ;) -- Billy Cravens HR Web Development, Sabre [EMAIL PROTECTED] Ps: isn't that the way most of the (and mostly now defunct) dot com's work? Angél Stewart wrote: Oh WAY cool! :)

RE and testing a list for items other than...

2001-04-05 Thread j p
Hello all, I need the RE for seeing if a list ONLY contains 1/multiples of four allowable options. For instance, the allowable options are "jane,tom,sally,mark" you pass me a list. "Jane,tom,mark" or "Tom,Sally" or "Jane" all of these are OK you pass me a list. "jane,allisa,tom" this is

Testing for the existence of an image file on another web server

2001-04-02 Thread John Fix 3rd
I want to include an image file that is on a server at another location. If no image exists, I want to display a message stating "No Image Available". I had it working fine for local images..here's the code: cfset ImageFile = "d:\webroot\images\" #Trim(sku)# ".gif" cfif

Re: Testing for the existence of an image file on another web server

2001-04-02 Thread Dick Applebaum
Use cfhttp reguest the image as the URL: "http://www.someotherdomain.com/somedirectory/someimage.jpg" Then if http.FileContent contains a "404" error code, the image was not found. HTH Dick At 10:17 AM -0400 4/2/01, John Fix 3rd wrote: I want to include an image file that is on a server

Re: Testing for the existence of an image file on another web server

2001-04-02 Thread Tony Schreiber
John, here's the best thing I found. Courtesy of Ron on this list: html head titleImage Not Found Test/title script language="JavaScript"!-- // make DARN sure this replacementImage file IS // present and accounted for, or you'll get a nasty // loop with repeated calls to this

RE: Broken Images / Testing for file existence - JS to the rescue

2001-03-15 Thread ron
nitially. Ron Allen Hornbaker President/CTO Humankind Systems, Inc. http://humankindsystems.com mailto:[EMAIL PROTECTED] -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 14, 2001 6:38 AM To: CF-Talk Subject: RE: Broken Images / Testing for file

RE: Broken Images / Testing for file existence - JS to the rescue

2001-03-14 Thread ron
I have an application where I list several items on a page and display an image for that item based on a reference number (ie, productnum+.jpg). The database table does not tell me whether there is an image for that item and there are many that do have one. I'd like to display an alternate

RE: Broken Images / Testing for file existence - JS to the rescue

2001-03-14 Thread Keith C. Ivey
[EMAIL PROTECTED] wrote: Let the client-side box do the work, with JavaScript. Interesting possibility. Of course, that still clutters your server log with 404 errors, which may be a consideration. And it requires additional network traffic, which may slow down the page display. But

RE: Broken Images / Testing for file existence - JS to the rescue

2001-03-14 Thread Tony Schreiber
This sounds interesting and I seem to have missed the suggestion/code... What was it? [EMAIL PROTECTED] wrote: Let the client-side box do the work, with JavaScript. Interesting possibility. Of course, that still clutters your server log with 404 errors, which may be a consideration.

Broken Images / Testing for file existence

2001-03-13 Thread Tony Schreiber
I have an application where I list several items on a page and display an image for that item based on a reference number (ie, productnum+.jpg). The database table does not tell me whether there is an image for that item and there are many that do have one. I'd like to display an alternate image

RE: Broken Images / Testing for file existence

2001-03-13 Thread Daniel Lancelot
use the FileExists() function in CF -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: 13 March 2001 08:06 To: CF-Talk Subject: Broken Images / Testing for file existence I have an application where I list several items on a page and display an image for that item

RE: Broken Images / Testing for file existence

2001-03-13 Thread Hayes, David
Schreiber [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 13, 2001 2:06 AM To: CF-Talk Subject: Broken Images / Testing for file existence I have an application where I list several items on a page and display an image for that item based on a reference number (ie, productnum+.jpg). The database

RE: Broken Images / Testing for file existence

2001-03-13 Thread Tony Schreiber
From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: 13 March 2001 08:06 To: CF-Talk Subject: Broken Images / Testing for file existence I have an application where I list several items on a page and display an image for that item based on a reference number (ie, productnum+.jpg). The data

Re: Broken Images / Testing for file existence

2001-03-13 Thread Olivier Gostan
one solution i've used is to write a simple CFX to display the image. O- - Original Message - From: "Tony Schreiber" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, March 13, 2001 3:27 AM Subject: RE: Broken Images / Testing for file existence D

RE: Broken Images / Testing for file existence

2001-03-13 Thread Caulfield, Michael
r, however, this won't be much help. -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 13, 2001 2:06 AM To: CF-Talk Subject: Broken Images / Testing for file existence I have an application where I list several items on a page and display an image for

RE: Broken Images / Testing for file existence

2001-03-13 Thread Daniel Lancelot
March 2001 08:27 To: CF-Talk Subject: RE: Broken Images / Testing for file existence Doesn't help, since I said: "I can't see using an CFIF FileExists for every item for 50 or so on a page. Plus, I can't even do that because I'm grabbing the images from a different server via http only"

RE: Broken Images / Testing for file existence

2001-03-13 Thread Tony Schreiber
I don't know that you can. That's kinda what I was thinking... I would store that info in the database; it could be a flag which simply indicates the existence of the file or not. You could write a CF page to update the db as often as necessary (once, hourly, daily, etc.); that page

RE: Broken Images / Testing for file existence

2001-03-13 Thread Tony Schreiber
: RE: Broken Images / Testing for file existence Doesn't help, since I said: "I can't see using an CFIF FileExists for every item for 50 or so on a page. Plus, I can't even do that because I'm grabbing the images from a different server via http only" But thanks... use the

RE: Broken Images / Testing for file existence

2001-03-13 Thread Tim Bahlke
]] Sent: Tuesday, March 13, 2001 2:06 AM To: CF-Talk Subject: Broken Images / Testing for file existence I have an application where I list several items on a page and display an image for that item based on a reference number (ie, productnum+.jpg). The database table does not tell me

RE: Broken Images / Testing for file existence

2001-03-13 Thread Phoeun Pha
It seems like u are running your own ecommerce site, but using someone else's pic. are u sure u wont get into trouble? -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 13, 2001 3:04 AM To: CF-Talk Subject: RE: Broken Images / Testing for file

RE: Broken Images / Testing for file existence

2001-03-13 Thread Tony Schreiber
:04 AM To: CF-Talk Subject: RE: Broken Images / Testing for file existence It's like 2.5 gigs of 250,000 images! I could, but I certinaly don't want to. ;p why dont ya just download all dem pics to your server? makes life easier -Original Message- From: Tony Schreiber

Testing for NULL in stored procedures

2001-03-08 Thread sebastian palmigiani
I am working on a poll which allows multiple selections. How do I get this strored procedure to work? I am passing null values from the cfstoredproc tag and want to conditionally run a query depending n whether the value of the variable is NULL or not. I have tried NULL, NOT NULL, !=. With

RE: Testing for NULL in stored procedures

2001-03-08 Thread Howarth, Craig (IBK-NY)
Try IS NOT NULL Craig -Original Message- From: sebastian palmigiani [SMTP:[EMAIL PROTECTED]] Sent: Thursday, March 08, 2001 10:49 AM To: CF-Talk Subject: Testing for NULL in stored procedures I am working on a poll which allows multiple selections. How do I get

RE: Testing for NULL in stored procedures

2001-03-08 Thread Andy Ewings
]] Sent: 08 March 2001 15:49 To: CF-Talk Subject: Testing for NULL in stored procedures I am working on a poll which allows multiple selections. How do I get this strored procedure to work? I am passing null values from the cfstoredproc tag and want to conditionally run a query depending n whether

RE: Testing for NULL in stored procedures

2001-03-08 Thread Andy Ewings
2001 15:49 To: CF-Talk Subject: Testing for NULL in stored procedures I am working on a poll which allows multiple selections. How do I get this strored procedure to work? I am passing null values from the cfstoredproc tag and want to conditionally run a query depending n whether the value

Re: Testing for NULL in stored procedures

2001-03-08 Thread sebastian palmigiani
on 3/8/01 9:59 AM, Andy Ewings at [EMAIL PROTECTED] wrote: or rather! IF @ChoiceA IS NOT NULL Yep that did the trick. Thanks Sebastian ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Testing: Things that mess up CF and semi-related web languages...

2001-02-15 Thread SMITH,RANDY (HP-USA,ex1)
that blow up web apps (CF and JavaScript); I'll be more than happy to package the results (absolutely giving full credit!!!) and return them back to the community in some way (email, website, whatever). These things shouldn't be large testing things, like "this is how we test". I'm lo

Testing

2001-02-11 Thread Kevin Mansel
Please disregard, just testing. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http

Testing Software

2001-02-07 Thread Chris Alvarado
I needs some reccomendatins on software for testing Cold Fusion enabled sites. The company that makes WinRunner develops products that seem like they might work. I am just curious to know if anyone has any good recomendations. The mor automated the software, the better. Thanks, -chris.alvarado

LDAP testing

2000-12-19 Thread Marc Schipperheyn
Hi all, I need to test CF with LDAP. Is there a proper free developer edition of the software that I can use to write a cross-platform safe integration with? We use Windows NT as our developer platform. Kind regards, Marc Schipperheyn __theFactor.e__

RE: LDAP testing

2000-12-19 Thread mherbene
://www.eudora.com/free/ldap.html -Original Message- From: Marc Schipperheyn [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 19, 2000 6:36 AM To: CF-Talk Subject: LDAP testing Hi all, I need to test CF with LDAP. Is there a proper free developer edition of the software that I can use

RE: LDAP testing

2000-12-19 Thread mherbene
o: CF-Talk Subject: LDAP testing Hi all, I need to test CF with LDAP. Is there a proper free developer edition of the software that I can use to write a cross-platform safe integration with? We use Windows NT as our developer platform. Kind regards, Marc Sc

RE: Testing for dates in a span

2000-12-12 Thread bflynn
--- /CFIF Brian -Original Message- From: Chris Martin [mailto:[EMAIL PROTECTED]] Sent: Monday, December 11, 2000 5:17 PM To: CF-Talk Subject: Testing for dates in a span Hey everyone. I was wondering if it is possible to check if a given dates exists in a span (maybe and InSpan

Testing for dates in a span

2000-12-11 Thread Chris Martin
Hey everyone. I was wondering if it is possible to check if a given dates exists in a span (maybe and InSpan() function?) Basically, I need to create two spans, old and new. Any date that is in old, but not in new, must be deleted. Any dates that are in new but not old must be added. Any

Anyplace to pick up outdated browser versions for testing

2000-11-22 Thread Paul Sinclair
I need to get some older versions of MSIE and Netscape in order to test out style sheets that will be dynamically assigned based on browser version as detected by CF. Does anyone know where these can be found? I've searched around on MS and Netscape site but can't find any archives of outdated

RE: Anyplace to pick up outdated browser versions for testing

2000-11-22 Thread Dylan Bromby
: Wednesday, November 22, 2000 5:13 PM To: CF-Talk Subject: RE: Anyplace to pick up outdated browser versions for testing You might try the CDs that came with some of your older books. That is usually where I get them. -Original Message- From: Paul Sinclair [mailto:[EMAIL PROTECTED]] Sent

RE: Anyplace to pick up outdated browser versions for testing

2000-11-22 Thread Peter Tilbrook
I need to get some older versions of MSIE and Netscape in order to test out style sheets that will be dynamically assigned based on browser version as detected by CF. Does anyone know where these can be found? I've searched around on MS and Netscape site but can't find any archives of outdated

RE: Anyplace to pick up outdated browser versions for testing

2000-11-22 Thread Stas Newdel
Or you could use VMware to create a virtual PC on your box. It's very cool. -Original Message- From: Peter Tilbrook [mailto:[EMAIL PROTECTED]] I need to get some older versions of MSIE and Netscape in order to test out style sheets that will be dynamically assigned based on browser

RE: Anyplace to pick up outdated browser versions for testing -online emulator

2000-11-22 Thread Michael She
There is also an online browser emulator: http://www.dejavu.org/emulator.htm Pretty cool huh? At 09:54 PM 11/22/00 -0500, you wrote: Or you could use VMware to create a virtual PC on your box. It's very cool. -Original Message- From: Peter Tilbrook [mailto:[EMAIL PROTECTED]] I

testing process

2000-11-16 Thread Craig M. Rosenblum
Does anybody know of a resource to help test code before releasing? Like a checklist or process? I need help learning to better test my code... Archives:

Re: testing process

2000-11-16 Thread Gregory Harris
No formal test process that I know of, usually I just turn the Village idiot in the company loose on my application and see what happens :-) Seriously though, testing software is strictly proprietary based on what the application is built to do, but answer the following questions when testing

Re: testing process

2000-11-16 Thread Greg Wolfinger
Fig Leaf can do code review for about $250/hour. -Greg - Original Message - From: Craig M. Rosenblum [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 16, 2000 12:24 PM Subject: testing process Does anybody know of a resource to help test code before releasing

RE: CF Load Testing

2000-11-10 Thread Dave Watts
We are stress testing an application here with LoadRunner. Does anyone have any experience testing a CF app with this tool? I haven't really worked in earnest with LoadRunner, but I'll give this a shot. At present we're simulating all of the virtual users as coming from one IP address

RE: CF Load Testing

2000-11-10 Thread Kevin Langevin
I haven't used LoadRunner in years, but I did some fairly extensive testing with it when I did. What I would suggest, however, is getting a copy of WinRunner instead, which I believe in it's newest incarnation is built for web testing. Mercury (I think it's Mercury that makes WinRunner

RE: Load/Stress Testing

2000-11-09 Thread Dave Watts
Does anyone have any good suggestions for companies that do load/stress testing on sites? I believe Fig Leaf (www.figleaf.com) does this - they did a few months ago. We had Allaire come in. They were not cheap, but they did a great job contrary to what others on this list have

RE: Load/Stress Testing

2000-11-09 Thread Eron Cohen
Evan, There's an excellent small company that concentrates exclusively on load testing sites. Its called DownRight software. http://www.downright.com/ In general, when it comes to something like load testing, the software tools are expensive and its hard to find good experienced people. I

Re: Load/Stress Testing

2000-11-09 Thread Dylan Bromby
If you're cramped on budget, you can use inetload for free. It's totally scriptable too. - Original Message - From: "Eron Cohen" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, November 09, 2000 8:24 AM Subject: RE: Load/Stress Testing Evan,

CF Load Testing

2000-11-09 Thread Billy Cravens
We are stress testing an application here with LoadRunner. Does anyone have any experience testing a CF app with this tool? At present we're simulating all of the virtual users as coming from one IP address. My theory is that no matter how many "users" LoadRunner is throwing at the a

RE: Load/Stress Testing

2000-11-08 Thread mherbene
I believe Fig Leaf (www.figleaf.com) does this - they did a few months ago. -Original Message- From: Evan Lavidor [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 07, 2000 12:41 PM To: CF-Talk Subject: Load/Stress Testing Does anyone have any good suggestions for companies that do

RE: Load/Stress Testing

2000-11-08 Thread Lanny R. Udey
believe Fig Leaf (www.figleaf.com) does this - they did a few months ago. -Original Message- From: Evan Lavidor [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 07, 2000 12:41 PM To: CF-Talk Subject: Load/Stress Testing Does anyone have any good suggestions for companies that do load/stress

Load/Stress Testing

2000-11-07 Thread Evan Lavidor
Does anyone have any good suggestions for companies that do load/stress testing on sites? I'm not looking for programs a la Microsoft's tools, WebLoad, etc.; I'm actually looking for a company we can outsource to. Thanks for the advice. Evan -- -=-=-=-=-=-=-=-=-=- Evan Lavidor Circle.com

Load testing CF

2000-10-31 Thread Tom Dyson
Hi there Do any of you have experience of load-testing software for your CF apps? We want to simulate 100 simultaneous users for a large intranet app. We don't want to spend too much... Thanks Tom

RE: Load testing CF

2000-10-31 Thread Ron Anderson
In typical Microsoft fashion, they have a free tool for performing Web App Stress Tests. I haven't used it yet... http://webtool.rte.microsoft.com -Original Message- From: Tom Dyson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 31, 2000 1:09 AM To: CF-Talk Subject: Load testing CF

Re: Load testing CF

2000-10-31 Thread Stephan Tual (CFTutorials.com)
At 10:08 AM 10/31/00 +0100, you wrote: Hi there Do any of you have experience of load-testing software for your CF apps? We want to simulate 100 simultaneous users for a large intranet app. We don't want to spend too much... Tom- RSW software (http://www.rswsoftware.com/) offers a good testing

Re: Load Testing Softwares

2000-10-24 Thread Brian bouldernet
For Load and redundancy testing we use Segue Silk Line of Products. I think they have some sort of cross selling deal with Allaire. I think based on their client list and history in the market (Pre-CF) they are the long term solution and therefore valid to pick up. http://www.segue.com/html

Re: Load Testing Softwares

2000-10-24 Thread Greg_Jordan
cc: Subject: Load Testing Softwares 10/24/00

RE: Load Testing Softwares

2000-10-24 Thread Jaime Garza
s. We have made the tool as easy to use as possible by masking some of the complexities of web server testing. This makes the tool desirable for anyone interested in gathering performance data on their web site." I tried the MS one, and although you could wish for a better UI, you cannot beat

testing for the existence of a dynamically created variable

2000-10-23 Thread Jon Hall
This is a multi-part message in MIME format. --=_NextPart_000_013B_01C03D21.1065DC60 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I have stumped myself on this one. This should be easy but... I am looping through the URL Parameters like

RE: testing for the existence of a dynamically created variable

2000-10-23 Thread Shane Pitts
prtName IS NOT "yourExcludeString" CFSET newQryString = ListAppend(newQryString, prtName "=" prtValue, "") /CFIF /CFLOOP -Original Message- From: Jon Hall [mailto:[EMAIL PROTECTED]] Sent: Monday, October 23, 2000 4:43 PM To: CF-Talk

testing

2000-10-19 Thread Chris Evans
testing the NNTP mirror gateway at news://fuseware.com/cf-talk Chris Evans [EMAIL PROTECTED] http://www.fuseware.com Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http

Stress testing

2000-10-05 Thread Greg Creedon
This is a multi-part message in MIME format. --=_NextPart_000_000A_01C02EDA.379984D0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I have a need to do some stress testing of an application. Of course, = the Allaire site wasn

Stress Testing

2000-10-05 Thread Greg Creedon
This is a multi-part message in MIME format. --=_NextPart_000_0047_01C02EDE.317EE0F0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable [my email program is testing my stress at the moment, but my real = question follows:] I have a

RE: Stress testing

2000-10-05 Thread Jaime Garza
I you have money to spare (around 14K) get SylkPerformer (Segue.com). I don't so I did a java app that calls http... Jaime/ -Original Message- From: Greg Creedon [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 05, 2000 11:41 AM To: CF-Talk Subject: Stress testing

RE: Stress Testing

2000-10-05 Thread dougn
: Stress Testing This is a multi-part message in MIME format. --=_NextPart_000_0047_01C02EDE.317EE0F0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable [my email program is testing my stress at the moment, but my real = question follows

RE: Stress testing

2000-10-05 Thread Stephan Tual (CFTutorials.com)
At 01:56 PM 10/5/00 -0700, you wrote: I you have money to spare (around 14K) get SylkPerformer (Segue.com). I don't so I did a java app that calls http... You will also want to give a try to the RSW e-test suite. I used it on several sites and always was satisfied with its quality. You can get

RE: Stress Testing

2000-10-05 Thread Hoffman, Joe (CIT)
s. We have made the tool as easy to use as possible by masking some of the complexities of web server testing. This makes the tool desirable for anyone interested in gathering performance data on their web site." Joe Hoffman mailto:[EMAIL PROTECTED] National Institutes of Health Center for I

RE: Newbie Question - Testing for Cookie Acceptance and BrowserHawk

2000-08-17 Thread Andy Ewings
Put this code in your application.cfm cfif NOT ISDEFINED("Client.rollCount") cfset Client.rollCount = 1 !--- Try to set a cookie for testing later --- cfcookie name="isOn" value="testing" cfset application.addtoken = "cfid=#client.cfid#cftoken=#clien

RE: Newbie Question - Testing for Cookie Acceptance and BrowserHawk

2000-08-17 Thread John McKown
Good point. John McKown, VP of Business Services Delaware.Net, Inc. -Original Message- From: Jon Tillman [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 17, 2000 1:12 AM To: [EMAIL PROTECTED] Subject: RE: Newbie Question - Testing for Cookie Acceptance and BrowserHawk On Thu

Newbie Question - Testing for Cookie Acceptance and BrowserHawk

2000-08-16 Thread John McKown
How can I test to make sure that a client has cookies enabled in both Netscape AND IE? I use Client variables mainly for my applications, so using CFCOOKIE is a little new to me. I am writing a simple EmailAction.cfm to track the number of times a client emails people in my database.If they

Newbie Question - Testing for Cookie Acceptance and BrowserHawk

2000-08-16 Thread John McKown
Don't slam me too hard on the code, I know that the code I showed for checking the dates was incorrect. :) It should look more like this... CFIF #Cookie.EmailsSent# GTE '5' AND DateCompare(d, #DateFormat(COOKIE.EmailLastSent)#, #DateFormat(TodaysDate)#) LTE 1 :) John McKown, VP Business

RE: Newbie Question - Testing for Cookie Acceptance and BrowserHawk

2000-08-16 Thread Dave Watts
How can I test to make sure that a client has cookies enabled in both Netscape AND IE? You can't! The user is only going to visit with one at a time, and you won't be able to "see" the settings for the other one. However, if you're tracking somebody, you can force them to log into your system,

RE: Newbie Question - Testing for Cookie Acceptance and BrowserHawk

2000-08-16 Thread Jon Tillman
On Thu, 17 Aug 2000, Dave Watts spewed forth into the void: How can I test to make sure that a client has cookies enabled in both Netscape AND IE? You can't! The user is only going to visit with one at a time, and you won't be able to "see" the settings for the other one. However, if

TESTING

2000-08-09 Thread McCabe, Kevin
I need to see if the message send to list are getting through to me. - Kevin McCabe :-) Intranet Team Leader +44 (0) 20 7941 5502 ---

Load Testing

2000-08-01 Thread Duane Boudreau
Hi All, Does anyone know of a good load testing application that is: a) reasonable cost b) easy to learn c) script based Thanks, Duane Boudreau, eMPower Project Manager Director, Web Technologies Ektron, Inc. http://www.ektron.com 5 Northern Blvd, Suite 6 Amherst, NH 03031 Tel: 603-594-0249

RE: Load Testing

2000-08-01 Thread Cameron Childress
, including importing IIS scripts to automatically generate scripts for testing. It also is capable (again according to the docs) of being installed on several machines and centrally controlled for a coordinated attack on a webserver. If anyone has used this and has feedback on promises vs actual

RE: Load Testing

2000-08-01 Thread mw
sting FORM vars. Now it works fine -- I'll post the tag if anyone wants it... WAS also does multiple client computers coordinated by a master for testing, no limitation on the numbers of threads or users, supports database (but it must be access '97) and will read in any kind of delimeted file as

Re: Testing number of characters in CFform textarea

2000-07-30 Thread Dick Applebaum
The preferred approach is to do it with JacaScript on the client side and also with CF on the Server side. Client side gives better response (the form is not submitted). ServerSide provides a catch-all if the user has JavaScript disabled. That said, it is also a good idea to include something

Re: Testing number of characters in CFform textarea

2000-07-30 Thread John Allred
l Message- From: AustralianAccommodation.com Pty. Ltd. [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 29, 2000 11:56 PM To: [EMAIL PROTECTED] Subject: Testing number of characters in CFform textarea I am wanting to limit the number of characters being entered into a multi lined text area cff

RE: Testing number of characters in CFform textarea

2000-07-30 Thread Jeff Beer
To: [EMAIL PROTECTED] Subject: Re: Testing number of characters in CFform textarea Claude, Not to jump in front of Jeff, but you might check out the javascript called, "Limit Textarea" at http://javascript.internet.com/forms/ According to the description, "This script controls a m

RE: Testing number of characters in CFform textarea

2000-07-30 Thread Jeff Beer
at home. If anyone wants it, send me some mail off-list ([EMAIL PROTECTED]) and I'll send it tomorrow. Regards, Jeff -Original Message- From: AustralianAccommodation.com Pty. Ltd. [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 29, 2000 11:56 PM To: [EMAIL PROTECTED] Subject: Testing

Testing number of characters in CFform textarea

2000-07-29 Thread AustralianAccommodation.com Pty. Ltd.
I am wanting to limit the number of characters being entered into a multi lined text area cfform does cf allow for in the design of the form to limit the input of characters to a pre determined number preventing the data input of any further characters (keeping in mind this is a multi lined form

OT - FTP Load Testing

2000-07-21 Thread Russel Madere
Does anyone know of a load testing package for FTP servers? We are looking at e-Test Suite, but would like other options. Russel -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

RE: Testing Assignment

2000-07-11 Thread Jeremy Allen
Implement it as a CFX? :) -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Monday, July 10, 2000 6:30 PM To: [EMAIL PROTECTED] Subject: Re: Testing Assignment Only problem is that formatbasen will fail if the number is to high. It overloads what CF sees

Re: Testing Assignment

2000-07-11 Thread Michael Dinowitz
them. I'll include the code for cf_longmod as well as others in it. Implement it as a CFX? :) -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Monday, July 10, 2000 6:30 PM To: [EMAIL PROTECTED] Subject: Re: Testing Assignment Only problem

Testing Assignment

2000-07-10 Thread Michael Dinowitz
Just for fun and keeping on the topic of testing and such, I'm assigning a test to the CF community. Lets say you have an IP address. (207.31.122.141) This IP address can also be seen as a long binary number using dotless IP addressing (3474946701). The way the internet works, either address

Re: Testing Assignment

2000-07-10 Thread Brandon Whitaker
I'm holding back from posting my tag result to the gallery so I can see what others will try. If anyone wants the tag now without trying to do it themselves, contact me off list. Something like this? cfSetting enableCFOutputOnly="yes" cfScript // 2 vars for tag: // ip = address to translate //

Re: Testing Assignment

2000-07-10 Thread Jeremy Allen
I know thats not exactly what you asked but its one way to do dotless IP's :) I realize some are HEX and some are long binary. I got reply happy ;) - Original Message - From: Michael Dinowitz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 10, 2000 1:11 PM Subject: Testing

Re: Testing Assignment

2000-07-10 Thread Michael Dinowitz
ginal Message - From: Michael Dinowitz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 10, 2000 1:11 PM Subject: Testing Assignment Just for fun and keeping on the topic of testing and such, I'm assigning a test to the CF community. Lets say you have an IP address. (207.31.12

RE: Testing Assignment

2000-07-10 Thread Chris Evans
CFSET Caller.Dotless=Dotless Chris Evans [EMAIL PROTECTED] http://www.fuseware.com -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Monday, July 10, 2000 1:11 PM To: [EMAIL PROTECTED] Subject: Testing Assignment Just for fun and keeping on the topic o

RE: Testing Assignment

2000-07-10 Thread Chris Evans
Well, if you want to hardcode it. You'll have to re-code for IPv6 :). Chris Evans [EMAIL PROTECTED] http://www.fuseware.com -Original Message- From: Brandon Whitaker [mailto:[EMAIL PROTECTED]] Sent: Monday, July 10, 2000 1:18 PM To: [EMAIL PROTECTED] Subject: Re: Testing Assignment

Re: Testing Assignment

2000-07-10 Thread Russel Madere
Here is a real quicky I put together over lunch: == Start Code == cfparam name="Attributes.IP" default="0.0.0.0" cfif ListLen(Attributes.IP, ".") NEQ 4 OR ListGetAt(Attributes.IP, "1", ".") EQ 0 !--- Error catching goes

RE: Testing Assignment

2000-07-10 Thread Russel Madere
[mailto:[EMAIL PROTECTED]] Sent: Monday, July 10, 2000 1:18 PM To: [EMAIL PROTECTED] Subject: Re: Testing Assignment I'm holding back from posting my tag result to the gallery so I can see what others will try. If anyone wants the tag now without trying to do it themselves, contact me off list

Re: Testing Assignment

2000-07-10 Thread Russel Madere
Please excuse the wrapping imposed by Eudora... At 12:52 PM 7/10/2000 -0500, you wrote: Here is a real quicky I put together over lunch: == Start Code == cfparam name="Attributes.IP" default="0.0.0.0" cfif ListLen(Attributes.IP,

Re: Testing Assignment

2000-07-10 Thread Jeremy Allen
:) - Original Message - From: Russel Madere [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 10, 2000 1:54 PM Subject: RE: Testing Assignment Will IPv6 work with dotless IP addresses? I haven't stayed up on it. Russel At 01:57 PM 7/10/2000 -0400, you wrote: Well, if you want

<    4   5   6   7   8   9   10   >