My Shopping Cart is Broken :-(

2003-03-27 Thread Owens, Howard
I have this code that I've used to build several shopping carts ... now, on
a new site, just two days before launch ... it's not working right. 

I've been pulling my hair out for five hours trying to figure what the hell
is going on.

I can add one item to the cart fine.  I can add two items fine.  But on the
third item, I suddenly start getting duplicate items in the cart, like up to
three copies of the last item added.  I've never come across this problem
before with this code.

The code is below ... if anybody can see what the hell is going on, I would
certainly appreciate the help.







SELECT  store.ITEM_ID,
store.ITEM_NAME,
store.DESCRIPTION,
store.PRICE,
store.CASE_PRICE,
store.IMAGE,
store.MERCHANTS_ID,
store.CASE_INVENTORY,
store.INVENTORY,
merchants.MERCHANTS_ID,
merchants.COMPANY_NAME
FROM store LEFT OUTER JOIN merchants
ON store.MERCHANTS_ID = merchants.MERCHANTS_ID
WHERE  store.ITEM_ID = #URL.ITEM_ID#
























cart = ArrayNew(1);
item = StructNew();
item.ITEM_ID = "#FindItem.ITEM_ID#";
item.ITEM_NAME = "#FindItem.ITEM_NAME#";
item.DESCRIPTION = "#FindItem.DESCRIPTION#";
item.MERCHANTS_ID = #FindItem.MERCHANTS_ID#;
item.COMPANY_NAME = #FindItem.COMPANY_NAME#;
item.ITEMTOTAL = "0";

if (attributes.action IS 'buy_bottle') { 
item.PRICE = #FindItem.PRICE#;
item.BASE_PRICE = #FindItem.PRICE#;
item.CONTAINER  = 'bottle';
item.QUANTITY   = '1';
item.AVAILABLE  = #FindItem.INVENTORY#;
}
else {
item.PRICE = #FindItem.CASE_PRICE#;
item.BASE_PRICE = #FindItem.CASE_PRICE#;
item.CONTAINER  = 'caseof';
item.QUANTITY   = '1';
item.AVAILABLE  = #FindItem.CASE_INVENTORY#;
}

CartItems = ArrayAppend(cart, item);
client.newcart = 'Yes';

 








  



// loop through the current cart to check for duplicates
for (x=1; x lte arrayLen(cart); x=x+1){
if (cart[x].item_id is FindItem.ITEM_ID) {
temp = 1;
}
else {

item = StructNew();
item.ITEM_ID = "#FindItem.ITEM_ID#";
item.ITEM_NAME = "#FindItem.ITEM_NAME#";
item.DESCRIPTION = "#FindItem.DESCRIPTION#";
item.MERCHANTS_ID = #FindItem.MERCHANTS_ID#;
item.COMPANY_NAME = #FindItem.COMPANY_NAME#;
item.ITEMTOTAL = "0";

if (attributes.action IS 'buy_bottle') { 
item.PRICE = #FindItem.PRICE#;
item.BASE_PRICE = #FindItem.PRICE#;
item.CONTAINER  = 'bottle';
item.QUANTITY   = '1';
item.AVAILABLE  = #FindItem.INVENTORY#;
}
else {
item.PRICE = #FindItem.CASE_PRICE#;
item.BASE_PRICE = #FindItem.CASE_PRICE#;
item.CONTAINER  = 'caseof';
item.QUANTITY   = '1';
item.AVAILABLE  = #FindItem.CASE_INVENTORY#;
}


CartItems = ArrayAppend(cart, item);



}
}
 

















~~
Howard Owens
Internet Operations Coordinator
InsideVC.com/Ventura County Star
[EMAIL PROTECTED]
AIM: GoCatGo1956
~~

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: DB Driven Collapsable Tree

2003-03-27 Thread Nick de Voil
> I'm looking for a tree structure that can be expanded and collapsed much
> like Windows Explorer.

I'm surprised no-one has mentioned Joust. Not supported any more but still
pretty good, don't you think?

http://www.ivanpeters.com/index.htm?page=/joust/

Nick

PS I *love* Jochem's solution to the Netscape 4 problem. But sadly...
there's this troublesome thing called the real world ;-)



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



ANN: "Variables in CFML" Guide posted

2003-03-27 Thread Jim Davis
Thanks to a lot of help from the people here and at
alt.comp.lang.coldfusion my guide to CFML variables is up and, I think,
correct.  It also features the Depressed Press debut of Matilda Rose.
;^)

Here's a link:

http://www.depressedpress.com/DepressedPress/Content/ColdFusion/Guides/V
ariables/Index.cfm

I hope that you'll find the guide useful and worth recommending.

Thanks again for all the help.

Jim Davis
President, Depressed Press of Boston: http://www.DepressedPress.com/
Webmaster, First Night Boston:  http://www.firstnight.org/
Senior Consultant, Metlife eCommerce IT:  http://www.metlife.com/ 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



DB Driven Collapsable Tree

2003-03-27 Thread cedric
Greg,

Could you please send me your tag which creates the js file? Thanks a bunch.

Cedric

>>> and the author claims a CF tag is available to registered users to
>db-drive it
>
>Ya the CoolJSTree Pro works pretty well, cant remember if it works with
>NS4 or not. But the CF tag does exist, I know 'cause I wrote it. It
>needs some updating (haven't touched it since cf4.5) but it gets the job
>done, especially if you let the tag publish the js file once when you
>update the DB, and let the browser hit the static js file instead of a
>dynamic CF file.
>
>Greg Hamm
>Partner
>Coreillia Development
>[EMAIL PROTECTED]
>http://www.coreillia.com
>
>
>-Original Message-
>From: Matt Robertson [mailto:[EMAIL PROTECTED] 
>Sent: March 27, 2003 1:55 PM
>To: CF-Talk
>Subject: DB Driven Collapsable Tree
>
>Are we talking about an Explorer-style tree or a drop-down menu?  If you
>want an explorer-style tree then CoolJSTree Pro is available and the
>author claims a CF tag is available to registered users to db-drive it.
>I haven't used it but it sure looks sweet.
>
>If what you want is a dropdown menu, which I think is what the other
>poster was pointing to at dhtml central (can't find an explorer tree),
>then I sell a cheap CF db-driven Milonic menu builder tool, and give
>away free a custom tag that will let you do the data population yourself
>from a db.  
>
>From the sound of it the freebie is what you want, and Milonic works
>fine on NN 4.
>
>Cheers,
>
>Matt Robertson
>MSB Designs, Inc.
>http://mysecretbase.com
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Anyone have this problem with CFMX?

2003-03-27 Thread Joe Eugene
What error are u getting?

Joe Eugene


> -Original Message-
> From: Robert Bailey [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 27, 2003 10:31 PM
> To: CF-Talk
> Subject: Anyone have this problem with CFMX?
>
>
> So been playing with some of my cfc's that kinda stopped working after
> updater 2. I can not user trim(), rjustify(), etc.
>
> Anyone ever have this problem? Know a work around?
>
> If I use any of these functions, the cfc crashes, will not run.
>
> I am running CFMX with updater 3, IIS5, Windows 2000 Server.
>
> Thanks!
> Robert Bailey
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



SOT: Flash Communication Server MX 1.5 now available

2003-03-27 Thread Tilbrook, Peter
Macromedia today announced the immediate availability of Macromedia(r)
Flash(TM) Communication Server MX 1.5, including key functionality to extend
its position as the premier platform for enabling compelling, interactive,
rich media audio/video applications such as on-demand video, live event
broadcasts, webcam chat, and recorded video messaging. Macromedia Flash
Communication Server MX 1.5 adds key features requested by customers to
further enterprise deployment compatibility including: support for HTTP
Tunneling, Secure Sockets Layer (SSL), Linux, and MP3s; enhanced audio
support and administration; and a new, improved model for adding capacity.
For more information on the update, available for download today, go to
http://www.macromedia.com/go/commserver/

No word on an upgrade for users of version 1.0 (which we only received last
week!).

A "Developer" edition is also now available rather than the previously
available 30-day trial. I've setup a couple of applications and it literally
takes five minutes and a single line of code to get working. Masterful
stuff, MM!

==
Peter Tilbrook
Internet Applications Developer
Australian Building Codes Board
GPO Box 9839
CANBERRA ACT 2601
AUSTRALIA

  WWW: http://www.abcb.gov.au/
   E-Mail: [EMAIL PROTECTED]
Telephone: +61 (02) 6213 6731
   Mobile: 0439 401 823
Facsimile: +61 (02) 6213 7287 


**
The information contained in this e-mail, and any attachments to it, is
intended for the use of the addressee and is conidential. If you are not the intended 
recipient you must not use, disclose, read, forward, copy or retain any of the 
information. If you have received this e-mail in
error, please delete it and notify the sender by return e-mail or telephone.
The Commonwealth does not warrant that any attahcments are frree from virueses or any 
other defects. You assume all liability for any loss, damage or other consequences 
which may arise from opening or using the attachments.
***

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Slightly OT: DWMX & CFC's

2003-03-27 Thread Sean
I'm probably being retarded and missing something obvious... but I'm a touch stuck... 
I even checked the help files. (I pause now for the customary gasps of amazement and 
wonder).

win2k/iis5.0 + all relevant sp's/hotfixes. CFMX Enterprise updater3. DWMX latest 
updater. Connecting via FTP with servu as the FTP server.

I'm testing with the intention of advising users for this. I'm the server admin, but 
its a shared hosting server. All components will be in a subdirectory of the webroot. 
Users will not have the RDS or CFADMIN passwords, nor is it possible for them to have 
them.

in DWMX/appliaction/components following the prompts to browse and use CFC's requires 
the RDS login information? Is there any way around that. Can it be arranged to use FTP 
auth details? or something? IE can I get around requiring the RDS login information?

Having slapped in the RDS login for testing (I'm testing this as an admin, but users 
won't have this option) I'm then presented with CFIDE.componentutils - and cfcexplorer 
and utils. Can I change this to refer to another directory?

Creating a new CFC allows to input a component directory... but it doesnt display 
under the browser. 

I was looking for a webservices style map my components and drag and drop methods with 
auto-pop object creation? Is it possible with a shared environment or just a case of 
no, go away?

On a sepperate but simmilar note, same webserver, MSSQL 2k latest SP/hotfix packs etc, 
playing with DWMX I also noticed the ability to browse Databases... But when It 
challenges for a username and password to populate my table list it doesnt accept my 
login credentials. When I authenticate to the server via query analyzer or safe the 
password details in cfadministrator it works, but not through DWMX... Does it need to 
be saved via CFAdministrator? Or is it just functionality that I can't really use in 
the shared environment?

Cheers
Sean



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Anyone have this problem with CFMX?

2003-03-27 Thread Robert Bailey
So been playing with some of my cfc's that kinda stopped working after
updater 2. I can not user trim(), rjustify(), etc.

Anyone ever have this problem? Know a work around?

If I use any of these functions, the cfc crashes, will not run.

I am running CFMX with updater 3, IIS5, Windows 2000 Server.

Thanks!
Robert Bailey


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Mac OS X - Jrun 4/CFMX installation

2003-03-27 Thread Tilbrook, Peter
I'm going to attempt to install CFMX for Mac OS X (again!). I'm no Mac
expert but since noone else is using this lovely PowerBook G4 Titanium I'd
thought I'd give a whirl. It's a waste of our Studio MX for Max OS X license
otherwise.

If I get stuck is there anyone in Canberra (Australia) who has installed it
successfully themselves? I'm not even sure if the G4's ship with a web
server installed.

Thanks!

==
Peter Tilbrook
Internet Applications Developer
Australian Building Codes Board
GPO Box 9839
CANBERRA ACT 2601
AUSTRALIA

  WWW: http://www.abcb.gov.au/
   E-Mail: [EMAIL PROTECTED]
Telephone: +61 (02) 6213 6731
   Mobile: 0439 401 823
Facsimile: +61 (02) 6213 7287 


**
The information contained in this e-mail, and any attachments to it, is
intended for the use of the addressee and is conidential. If you are not the intended 
recipient you must not use, disclose, read, forward, copy or retain any of the 
information. If you have received this e-mail in
error, please delete it and notify the sender by return e-mail or telephone.
The Commonwealth does not warrant that any attahcments are frree from virueses or any 
other defects. You assume all liability for any loss, damage or other consequences 
which may arise from opening or using the attachments.
***

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Why Does "Edit with MS Word" function stop working??

2003-03-27 Thread Bruce H. Beinert
Yes, tested on multiple computers across 3 timezones...

Can't figure why the function would stop working. I thought maybe excessive
whitespace from parsef CF code was the culprit initially but after removing
most of it it seems I was wrong.

--
Bruce H. Beinert
p.808-637-0727<>m.917-627-4035

Web Development and Consulting:
http://www.siliconmaui.com

Weblog:
http://www.bruceandwende.com


-Original Message-
From: Brad Roberts [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 4:36 PM
To: CF-Talk
Subject: RE: Why Does "Edit with MS Word" function stop working??


Have you tested it on different computers, or narrowed down the
possibilities in any way?

> -Original Message-
> From: Bruce H. Beinert [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 27, 2003 8:26 PM
> To: CF-Talk
> Subject: Why Does "Edit with MS Word" function stop working??
>
>
> I am going to throw this out again as I didn't get an answer the first
> time...
>
>
> Hi,
>
> I have a client that wants to be able to use the "edit with ms word"
> function in the IE browser to save dynamically generated reports to his
> computer. It was working as I began to build the report template but has
> since ceased to function. I don't know when and I don't know why. I was
> hoping that someone here had the same problem and figured out why
> it stopped
> working. Worst case scenario I will rebuild the template while checking it
> until it stops working I guess.
>
> Hoping that one of you can save me from that task!
>
> Thanks!
> --
> Bruce H. Beinert
> p.808-637-0727<>m.917-627-4035
>
> Web Development and Consulting:
> http://www.siliconmaui.com
>
> Weblog:
> http://www.bruceandwende.com
>
> --
> Bruce H. Beinert
> p.808-637-0727<>m.917-627-4035
>
> Web Development and Consulting:
> http://www.siliconmaui.com
>
> Weblog:
> http://www.bruceandwende.com
>
>
>
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Why Does "Edit with MS Word" function stop working??

2003-03-27 Thread Brad Roberts
Have you tested it on different computers, or narrowed down the
possibilities in any way?

> -Original Message-
> From: Bruce H. Beinert [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 27, 2003 8:26 PM
> To: CF-Talk
> Subject: Why Does "Edit with MS Word" function stop working??
>
>
> I am going to throw this out again as I didn't get an answer the first
> time...
>
>
> Hi,
>
> I have a client that wants to be able to use the "edit with ms word"
> function in the IE browser to save dynamically generated reports to his
> computer. It was working as I began to build the report template but has
> since ceased to function. I don't know when and I don't know why. I was
> hoping that someone here had the same problem and figured out why
> it stopped
> working. Worst case scenario I will rebuild the template while checking it
> until it stops working I guess.
>
> Hoping that one of you can save me from that task!
>
> Thanks!
> --
> Bruce H. Beinert
> p.808-637-0727<>m.917-627-4035
>
> Web Development and Consulting:
> http://www.siliconmaui.com
>
> Weblog:
> http://www.bruceandwende.com
>
> --
> Bruce H. Beinert
> p.808-637-0727<>m.917-627-4035
>
> Web Development and Consulting:
> http://www.siliconmaui.com
>
> Weblog:
> http://www.bruceandwende.com
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



accessing parent cfc's variables

2003-03-27 Thread jonhall
If I have a cfc that is nested in another cfc, is there a way to
access the parent object's variables?

I have something like this.






I have a method in the order object that needs to access a variable
in the this scope of the user object.


-- 
mailto:[EMAIL PROTECTED]

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



CFMX Updater 3 Available

2003-03-27 Thread Damon Cooper
Hey Don, 

This looks like issue #48769, described as, "Queries that use a datasource that 
attempts to connect to a non-responsive db server take an extraordinarily long time to 
timeout."

While this is not explicitly listed as fixed in Updater 3, a similar issue was 
addressed in a previous drop of the DataDirect JDBC drivers (included in this release 
and Updater 2), namely: "Driver threads used with queryTimeout (CFQUERY using Timeout 
parameter) were not explicitly terminated [15002321]"

This new drop of DataDirect JDBC drivers included in Updater 3 has some important 
stuff fixed that would have affected you and other CF customers, so I'd strongly urge 
you to give Updater 3 a try in general.

Of course, we'll try to re-verify #48769 against Updater 3 here as well and post back 
here shortly...


---
Subject: CFMX Updater 3 Available
From: Chunshen (Don) Li <[EMAIL PROTECTED]>
Date: Thu, 27 Mar 2003 16:51:55 -0400

Damon,

Someone here, I don't remember whom, acknowledged here a while back, CFMX couldn't 
timeout unavailable datasource, a bug.  I've looked at Updater 3's release note, I 
didn't find anything referencing this topic, is this bug fixed in the Updater 3?   
It's absolutely critical to our applications.  Thanks.

Don Li
http://www.hegelsoftware.com/regURL.htm
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX Updater 3 Available

2003-03-27 Thread Lee Fuller
Great.. Thanks Damon!

Lee


| -Original Message-
| From: Damon Cooper [mailto:[EMAIL PROTECTED] 
| Sent: Thursday, March 27, 2003 5:04 PM
| To: CF-Talk
| Subject: CFMX Updater 3 Available 
| 
| 
| You should be able to easily back out Updater 3 and restore 
| whatever you had before (CFMX Gold, U1, U2, etc) by following 
| the instructions here: 
| 
http://www.macromedia.com/support/coldfusion/releasenotes/mx/releasenotes_mx
_updater03.html#uninstalling



-Original Message-
Subject: CFMX Updater 3 Available
From: "Lee Fuller" <[EMAIL PROTECTED]>
Date: Thu, 27 Mar 2003 12:24:09 -0800

Damon,

What's the Plan-B procedure should our installations decide to die on us and
our customers after installing 3?  Just need to know before we move forward.

Thanks...

 
Lee Fuller
Chief Technical Officer
PrimeDNA / AAA Web Hosting Corp.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Why Does "Edit with MS Word" function stop working??

2003-03-27 Thread Bruce H. Beinert
I am going to throw this out again as I didn't get an answer the first
time...


Hi,

I have a client that wants to be able to use the "edit with ms word"
function in the IE browser to save dynamically generated reports to his
computer. It was working as I began to build the report template but has
since ceased to function. I don't know when and I don't know why. I was
hoping that someone here had the same problem and figured out why it stopped
working. Worst case scenario I will rebuild the template while checking it
until it stops working I guess.

Hoping that one of you can save me from that task!

Thanks!
--
Bruce H. Beinert
p.808-637-0727<>m.917-627-4035

Web Development and Consulting:
http://www.siliconmaui.com

Weblog:
http://www.bruceandwende.com

--
Bruce H. Beinert
p.808-637-0727<>m.917-627-4035

Web Development and Consulting:
http://www.siliconmaui.com

Weblog:
http://www.bruceandwende.com



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Multiple cfmail's on one page

2003-03-27 Thread Cedric Villat
Philip,

I tried sending 5 emails from my CFMX box and all 5 were sent as expected. I
then tried from my unix/cf5 box and i only got emails 1 and 5. 2-3 never got
delivered. Does this sound like the same problem? Also, does this 0-byte
email affect ALL cf5 platforms? Or only under certain conditions?

Cedric


>> Thanks for the help. When I look at the mail folders, I only
>> see 1 email generated, even though there are obviously 2
>> cfmail's on the page. I even did a test run, and all it had
>> on the page was 2 cfmails and the only one that actually gets
>> generated is the first one. The logs and the folder see no
>> mention of the second mail. This seems like it only happens
>> on certain systems, such as only 1 email is generated on
>> CF5/Linux, but 2 are generated on CFMX/Win2k.
>
>AFAIK, MX doesn't have the problem any more, so CFMX/Win2k shouldn't
>have an issue
>
>As for CF5/Linux, if memory serves, while on Windows, CF5 makes a zero
>length file, but on Linux it makes nothing
>
>Now, if this is the case, then it's the "blank email" issue (which was
>never resolved), so try sending 5 emails and see how many get sent, see
>if it's failing after 1, or just if you send 2...
>
>HTH
>
>


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



CFMX Updater 3 Available

2003-03-27 Thread Damon Cooper
FYI, we're working with Dave to figure out what's up with this failure.

Thanks


Subject: CFMX Updater 3 Available
From: "Dave Carabetta" <[EMAIL PROTECTED]>
Date: Thu, 27 Mar 2003 16:01:36 -0500

Make that 99 fixes. The WDDX bug that is claimed to have been fixed (Bug 
49064), at least using CFMX for JRun, is not (The description is: "The 
cfwddx tag did not properly handle packets marked as version 0.9"). This is 
a major point-of-failure for us, as we still receive the following error 
when trying to deserialize a WDDX packet marked as version 0.9:

WDDX packet parse error at line 1, column -1. Relative URI "wddx_0090.dtd";
can not be resolved without a base URI..

Any chance there might be a hotfix for this?

Thanks,
Dave.
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



CFMX Updater 3 Available

2003-03-27 Thread Damon Cooper
You should be able to easily back out Updater 3 and restore whatever you had before 
(CFMX Gold, U1, U2, etc) by following the instructions here: 

http://www.macromedia.com/support/coldfusion/releasenotes/mx/releasenotes_mx_updater03.html#uninstalling



-Original Message-
Subject: CFMX Updater 3 Available
From: "Lee Fuller" <[EMAIL PROTECTED]>
Date: Thu, 27 Mar 2003 12:24:09 -0800

Damon,

What's the Plan-B procedure should our installations decide to die on us and
our customers after installing 3?  Just need to know before we move forward.

Thanks...

 
Lee Fuller
Chief Technical Officer
PrimeDNA / AAA Web Hosting Corp.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: DB Driven Collapsable Tree

2003-03-27 Thread Matt Robertson
Bryan:
Where is the thing?  All I can find are menus at dhtmlcentral.com, and we're talking 
about an Explorer-type tree.  That guy writes some neat stuff.


Cedric:  
You say he charges a lot.  Are you talking about the US$49.95 for the Pro ver?

---
 Matt Robertson, [EMAIL PROTECTED]
 MSB Designs, Inc. http://mysecretbase.com
---


-- Original Message --
From: "Bryan Stevenson" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
date: Thu, 27 Mar 2003 16:04:55 -0800

>www.dhtmlcentral.com
>
>trust me it's a great script ;-)
>
>Bryan Stevenson B.Comm.
>VP & Director of E-Commerce Development
>Electric Edge Systems Group Inc.
>t. 250.920.8830
>e. [EMAIL PROTECTED]
>
>-
>Macromedia Associate Partner
>www.macromedia.com
>-
>Vancouver Island ColdFusion Users Group
>Founder & Director
>www.cfug-vancouverisland.com
>- Original Message -
>From: <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Thursday, March 27, 2003 2:18 PM
>Subject: DB Driven Collapsable Tree
>
>
>> Thanks. I found 1 or 2 scripts here that I might be able to modify a bit
>to get what I want. I used to use the CoolJSTree script thing, but they are
>now charging quite a bit for a simple tree expander. Thanks!
>>
>> Cedric
>>
>> >Take a look at the menus available at DHTMLCentral.com  They work great
>in
>> >those browsers.  You'll have to make them data-driven, but it's not that
>> >hard (just some queries and loops).
>> >
>> >Bryan Stevenson B.Comm.
>> >VP & Director of E-Commerce Development
>> >Electric Edge Systems Group Inc.
>> >t. 250.920.8830
>> >e. [EMAIL PROTECTED]
>> >
>> >-
>> >Macromedia Associate Partner
>> >www.macromedia.com
>> >-
>> >Vancouver Island ColdFusion Users Group
>> >Founder & Director
>> >www.cfug-vancouverisland.com
>> >- Original Message -
>> >From: "Cedric Villat" <[EMAIL PROTECTED]>
>> >To: "CF-Talk" <[EMAIL PROTECTED]>
>> >Sent: Thursday, March 27, 2003 9:08 AM
>> >Subject: DB Driven Collapsable Tree
>> >
>> >
>> >> I'm looking for a tree structure that can be expanded and collapsed
>much
>> >> like Windows Explorer. It needs to be built from my DB tree structure I
>> >> already have setup. It has to work on IE and NS4. Any ideas? I assume
>> >either
>> >> Javascript or DHTML will do and I'm sure this has been discussed
>before.
>> >Any
>> >> suggestions?
>> >>
>> >> Cedric
>> >>
>> 
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Multiple cfmail's on one page

2003-03-27 Thread cedric
Ah, that is what I was looking for. At least now I have some proof it is a CF bug and 
I can stop pulling my hair out! :) I'll do some more tests with 5 emails and see what 
I can come up with. Thanks for the help.

Cedric

>> Thanks for the help. When I look at the mail folders, I only
>> see 1 email generated, even though there are obviously 2
>> cfmail's on the page. I even did a test run, and all it had
>> on the page was 2 cfmails and the only one that actually gets
>> generated is the first one. The logs and the folder see no
>> mention of the second mail. This seems like it only happens
>> on certain systems, such as only 1 email is generated on
>> CF5/Linux, but 2 are generated on CFMX/Win2k.
>
>AFAIK, MX doesn't have the problem any more, so CFMX/Win2k shouldn't
>have an issue
>
>As for CF5/Linux, if memory serves, while on Windows, CF5 makes a zero
>length file, but on Linux it makes nothing
>
>Now, if this is the case, then it's the "blank email" issue (which was
>never resolved), so try sending 5 emails and see how many get sent, see
>if it's failing after 1, or just if you send 2...
>
>HTH
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: DB Driven Collapsable Tree

2003-03-27 Thread Bryan Stevenson
www.dhtmlcentral.com

trust me it's a great script ;-)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com
- Original Message -
From: <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 27, 2003 2:18 PM
Subject: DB Driven Collapsable Tree


> Thanks. I found 1 or 2 scripts here that I might be able to modify a bit
to get what I want. I used to use the CoolJSTree script thing, but they are
now charging quite a bit for a simple tree expander. Thanks!
>
> Cedric
>
> >Take a look at the menus available at DHTMLCentral.com  They work great
in
> >those browsers.  You'll have to make them data-driven, but it's not that
> >hard (just some queries and loops).
> >
> >Bryan Stevenson B.Comm.
> >VP & Director of E-Commerce Development
> >Electric Edge Systems Group Inc.
> >t. 250.920.8830
> >e. [EMAIL PROTECTED]
> >
> >-
> >Macromedia Associate Partner
> >www.macromedia.com
> >-
> >Vancouver Island ColdFusion Users Group
> >Founder & Director
> >www.cfug-vancouverisland.com
> >- Original Message -
> >From: "Cedric Villat" <[EMAIL PROTECTED]>
> >To: "CF-Talk" <[EMAIL PROTECTED]>
> >Sent: Thursday, March 27, 2003 9:08 AM
> >Subject: DB Driven Collapsable Tree
> >
> >
> >> I'm looking for a tree structure that can be expanded and collapsed
much
> >> like Windows Explorer. It needs to be built from my DB tree structure I
> >> already have setup. It has to work on IE and NS4. Any ideas? I assume
> >either
> >> Javascript or DHTML will do and I'm sure this has been discussed
before.
> >Any
> >> suggestions?
> >>
> >> Cedric
> >>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Load Tester

2003-03-27 Thread Buckland, Ramon
The all so popular tool wget

wget http://somesit/somepage
wget --help
man wget

HttpUnit is good. Java Based.. 
but you want commandline..
here are some suggestions.. 

http://www.softwareqatest.com/qatweb1.html#FUNC

> -Original Message-
> From: Barney Boisvert [mailto:[EMAIL PROTECTED]
> Sent: Friday, 28 March 2003 10:29 AM
> To: CF-Talk
> Subject: Load Tester
> 
> 
> One of my projects is getting ready to go into production, 
> and the client is
> suddenly requesting that we do load testing in the production 
> environment in
> addition to the testing we've already done pre-production 
> (which was on the
> very same machine).
> 
> Basically, all I need is some quick numbers to demonstrate 
> that the full
> testing we already did is still valid down at the hosting 
> facility, without
> requiring another beastly machine to drive the testing program.
> 
> Here's the requirements, which are pretty nonflexible:
> It has to be linux/unix based, command line driven, free and 
> fast.  Features
> are not a high requirement, as long as it can simulate a LOT 
> of users, can
> take a specific URL or list of URLs to check, and can give 
> the stats back in
> a reasonably useful format.
> 
> Anyone have any recomendations for such a program?  I know there are a
> million out there, but I've never used anything as quick and 
> dirty as I
> need, and I don't have much time to spend looking.
> 
> much thanks,
> barneyb
> 
> ---
> Barney Boisvert, Senior Development Engineer
> AudienceCentral (formerly PIER System, Inc.)
> [EMAIL PROTECTED]
> voice : 360.756.8080 x12
> fax   : 360.647.5351
> 
> www.audiencecentral.com
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.463 / Virus Database: 262 - Release Date: 3/17/2003
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: DB Driven Collapsable Tree

2003-03-27 Thread Hamm, Greg
>> and the author claims a CF tag is available to registered users to
db-drive it

Ya the CoolJSTree Pro works pretty well, cant remember if it works with
NS4 or not. But the CF tag does exist, I know 'cause I wrote it. It
needs some updating (haven't touched it since cf4.5) but it gets the job
done, especially if you let the tag publish the js file once when you
update the DB, and let the browser hit the static js file instead of a
dynamic CF file.

Greg Hamm
Partner
Coreillia Development
[EMAIL PROTECTED]
http://www.coreillia.com


-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED] 
Sent: March 27, 2003 1:55 PM
To: CF-Talk
Subject: DB Driven Collapsable Tree

Are we talking about an Explorer-style tree or a drop-down menu?  If you
want an explorer-style tree then CoolJSTree Pro is available and the
author claims a CF tag is available to registered users to db-drive it.
I haven't used it but it sure looks sweet.

If what you want is a dropdown menu, which I think is what the other
poster was pointing to at dhtml central (can't find an explorer tree),
then I sell a cheap CF db-driven Milonic menu builder tool, and give
away free a custom tag that will let you do the data population yourself
from a db.  

>From the sound of it the freebie is what you want, and Milonic works
fine on NN 4.

Cheers,

Matt Robertson
MSB Designs, Inc.
http://mysecretbase.com

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



DB Driven Collapsable Tree

2003-03-27 Thread cedric
Thanks. I found 1 or 2 scripts here that I might be able to modify a bit to get what I 
want. I used to use the CoolJSTree script thing, but they are now charging quite a bit 
for a simple tree expander. Thanks!

Cedric

>Take a look at the menus available at DHTMLCentral.com  They work great in
>those browsers.  You'll have to make them data-driven, but it's not that
>hard (just some queries and loops).
>
>Bryan Stevenson B.Comm.
>VP & Director of E-Commerce Development
>Electric Edge Systems Group Inc.
>t. 250.920.8830
>e. [EMAIL PROTECTED]
>
>-
>Macromedia Associate Partner
>www.macromedia.com
>-
>Vancouver Island ColdFusion Users Group
>Founder & Director
>www.cfug-vancouverisland.com
>- Original Message -
>From: "Cedric Villat" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Thursday, March 27, 2003 9:08 AM
>Subject: DB Driven Collapsable Tree
>
>
>> I'm looking for a tree structure that can be expanded and collapsed much
>> like Windows Explorer. It needs to be built from my DB tree structure I
>> already have setup. It has to work on IE and NS4. Any ideas? I assume
>either
>> Javascript or DHTML will do and I'm sure this has been discussed before.
>Any
>> suggestions?
>>
>> Cedric
>> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: DB Driven Collapsable Tree

2003-03-27 Thread Jochem van Dieten
Cedric Villat wrote:
> It has to work on IE and NS4. Any ideas?

Talk yourt boss out of supporting NS4, it is obsolete.

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Query Timeout

2003-03-27 Thread Philip Arnold
> Why does this never actually work.  I am running a query on
> an ODBC datasource.  The ODBC is connecting to an informix
> database.  I don't want the query to take longer then 30
> seconds.  Not that coldfusion cares what I tell it the
> timeout value is.
>
> The main question is: Why does the timeout not work.  The
> second question is Is there any way to wrap things with a
> timeout value as to say if what is inside of here take more
> then x time throw an error.  Also is there a way to run a
> query in what would be like a seperate thread similar to
> doing a callback so that while the query is proccessing other
> things can run and then set a wait point or something?

AFAIK the "Timeout" on a CFQUERY is a connection timeout

So if the query is taking longer than 30 seconds, then it won't be timed
out

I'm not sure if you can put something to timeout around a CFQUERY...


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: OT: Flash detector

2003-03-27 Thread Jochem van Dieten
Phillip B wrote:
> A friend wanted me to see if anyone here had a bullet proof flash detection script.

There is no such thing as bulletproof, but I like the technique 
explained at http://alistapart.com/stories/flashsatay/

Jochem

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Load Tester

2003-03-27 Thread Barney Boisvert
One of my projects is getting ready to go into production, and the client is
suddenly requesting that we do load testing in the production environment in
addition to the testing we've already done pre-production (which was on the
very same machine).

Basically, all I need is some quick numbers to demonstrate that the full
testing we already did is still valid down at the hosting facility, without
requiring another beastly machine to drive the testing program.

Here's the requirements, which are pretty nonflexible:
It has to be linux/unix based, command line driven, free and fast.  Features
are not a high requirement, as long as it can simulate a LOT of users, can
take a specific URL or list of URLs to check, and can give the stats back in
a reasonably useful format.

Anyone have any recomendations for such a program?  I know there are a
million out there, but I've never used anything as quick and dirty as I
need, and I don't have much time to spend looking.

much thanks,
barneyb

---
Barney Boisvert, Senior Development Engineer
AudienceCentral (formerly PIER System, Inc.)
[EMAIL PROTECTED]
voice : 360.756.8080 x12
fax   : 360.647.5351

www.audiencecentral.com
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.463 / Virus Database: 262 - Release Date: 3/17/2003

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Multiple cfmail's on one page

2003-03-27 Thread Philip Arnold
> Thanks for the help. When I look at the mail folders, I only
> see 1 email generated, even though there are obviously 2
> cfmail's on the page. I even did a test run, and all it had
> on the page was 2 cfmails and the only one that actually gets
> generated is the first one. The logs and the folder see no
> mention of the second mail. This seems like it only happens
> on certain systems, such as only 1 email is generated on
> CF5/Linux, but 2 are generated on CFMX/Win2k.

AFAIK, MX doesn't have the problem any more, so CFMX/Win2k shouldn't
have an issue

As for CF5/Linux, if memory serves, while on Windows, CF5 makes a zero
length file, but on Linux it makes nothing

Now, if this is the case, then it's the "blank email" issue (which was
never resolved), so try sending 5 emails and see how many get sent, see
if it's failing after 1, or just if you send 2...

HTH


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Nested Query Loop Bug/Issue

2003-03-27 Thread Philip Arnold
> I don't know if any of you have run into this before or if
> it's even been mentioned (couldn't find it at mm technotes
> either), but I've run into a situation where the values of an
> outer loop referred to in an inner loop are not what you
> expect. I was burned on this recently and remember vaguely it
> happening to me before. I've written some demonstration code to
> illustrate:

In fact, there are 3 "work arounds", one is to set the field into a
variable, the second is to store the current row of the outer loop in a
variable, and then refer to the row of the query... The third is to not
loop over the query, but to loop over the record (with a CFLOOP INDEX
FROM TO)

Method 2:








Method 3:








HTH


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Spyrus Rosetta Executive Suite- anyone use it?

2003-03-27 Thread Smith, Don , CTR , WHS/PSD
Anyone use Spyrus's "Rosetta Executive Suite" for secure CAC logins in their
enterprise?  Any advice for sharing variables with ColdFusion?

Don
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



DB Driven Collapsable Tree

2003-03-27 Thread Matt Robertson
Are we talking about an Explorer-style tree or a drop-down menu?  If you want an 
explorer-style tree then CoolJSTree Pro is available and the author claims a CF tag is 
available to registered users to db-drive it.  I haven't used it but it sure looks 
sweet.

If what you want is a dropdown menu, which I think is what the other poster was 
pointing to at dhtml central (can't find an explorer tree), then I sell a cheap CF 
db-driven Milonic menu builder tool, and give away free a custom tag that will let you 
do the data population yourself from a db.  

>From the sound of it the freebie is what you want, and Milonic works fine on NN 4.

Cheers,

Matt Robertson
MSB Designs, Inc.
http://mysecretbase.com
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: cfimport tag - jsp libraries

2003-03-27 Thread Dave Watts
> > > Its my first attempt at using the cfimport tag and I can't
> > > seem to get by this error. What type should it be? I didn't
> > > seem a 'type' option in the documentation.
> > > 
> > > The type for attribute path of tag Height could not be determined.
> > > 1 : 
> > > 2 : 
> > > 3 : 
> > > 4 : 
> > 
> > You can get it to work by cycling the CF server. There may 
> > be a way to get it to automatically recognize jar and tld 
> > files placed in /WEB-INF/lib, but I don't know what it is, 
> > off the top of my head.
>
> Em I could be wy off mark, but is it not a simple 
> spelling mistake?
> 
> "prefix=imgD"
> 
> Then wehen u reference it
> 
>  
> Should this not be 
> 
> imgD:Height

While you're correct that there's a spelling error there, it's been my
experience that you get that error anyway after adding a new JSP tag library
to /WEB-INF/lib/, then referencing it without cycling the CF service.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: cfimport tag - jsp libraries

2003-03-27 Thread Ryan Mitchell
Em I could be wy off mark, but is it not a simple spelling mistake?

"prefix=imgD"

Then wehen u reference it

 wrote:

>> Its my first attempt at using the cfimport tag and I can't
>> seem to get by this error. What type should it be? I didn't
>> seem a 'type' option in the documentation.
>> 
>> The type for attribute path of tag Height could not be determined.
>> 1 : 
>> 2 : 
>> 3 : 
>> 4 : 
> 
> You can get it to work by cycling the CF server. There may be a way to get
> it to automatically recognize jar and tld files placed in /WEB-INF/lib, but
> I don't know what it is, off the top of my head.
> 
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: File locking from CF5?

2003-03-27 Thread Jim Davis
> -Original Message-
> From: Jon Block [mailto:[EMAIL PROTECTED] 
> Sent: Thursday, March 27, 2003 4:09 PM
> To: CF-Talk
> Subject: File locking from CF5?
> 
> 
> Lets say I have two CF5 enabled web servers with a single 
> directory they both can access. Server A occasionally will 
> write "hello.txt" with a CFFILE tag to the shared directory. 
> Server B will periodically read the "hello.txt" from the 
> shared directory when serving out web pages.
> 
> The problem is that sometimes I get a CF exception on server 
> A becuase hello.txt can't be written while server B is 
> reading from it.
> 
> I have read up on CFLOCK but it seems thats only good for 
> isolating chunks of code in a single server. In this case I 
> have a cluster and cflock won't protect against threads 
> trying to access hello.txt on a different machine.

True.  You pretty much have to have to build some kind of indicator
yourself that does the same task as locking.

There are many possibilities:

1) You might set a flag in a DB.  Before a server accesses the file it
checks a cell that contains a "working" bit.  If the bit is clear it can
set the bit and use the file (setting it to clear when it's done),
otherwise it waits.

2) You could rename the file while it's being worked with.  The other
server would do a FileExists() - if it sees the file it can assume it's
free, change it's name work with it then change it's name back.

3) You could implement a "lock file" - the server would create a special
file in same directory when it was working with the file and delete it
when it was done.  The other server would check for the existence of the
lock file before accessing it.

In effect you're creating a traffic cop with two states: "all clear" and
"in use".

For all of these you would probably also have to provide some failsafes
(what if a sever goes down with the file locked and so on).

Jim Davis


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



CFMX Updater 3 Available

2003-03-27 Thread Don
Damon,

Someone here, I don't remember whom, acknowledged here a while back, CFMX couldn't 
timeout unavailable datasource, a bug.  I've looked at Updater 3's release note, I 
didn't find anything referencing this topic, is this bug fixed in the Updater 3?   
It's absolutely critical to our applications.  Thanks.

Don Li
http://www.hegelsoftware.com/regURL.htm
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: File locking from CF5?

2003-03-27 Thread Justin Scott
Perhaps put your file writing/reading code within a CFTRY/CFCATCH block, and
wrap that in a loop (say from 1 to 20 or something).  If there is an error,
allow the loop to iterate, otherwise, break out of the loop and continue
processing.

-Justin Scott

- Original Message -
From: "Jon Block" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 27, 2003 4:09 PM
Subject: File locking from CF5?


> Lets say I have two CF5 enabled web servers with a single directory they
> both can access. Server A occasionally will write "hello.txt" with a
CFFILE
> tag to the shared directory. Server B will periodically read the
"hello.txt"
> from the shared directory when serving out web pages.
>
> The problem is that sometimes I get a CF exception on server A becuase
> hello.txt can't be written while server B is reading from it.
>
> I have read up on CFLOCK but it seems thats only good for isolating chunks
> of code in a single server. In this case I have a cluster and cflock won't
> protect against threads trying to access hello.txt on a different machine.
>
> Any help is appreciated.
> Thanks!
> Jon
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re[2]: is email-adress wrong ?

2003-03-27 Thread cf-talk
Hello Bryan,

Thursday, March 27, 2003, 7:29:48 PM, you wrote:

BFH> Yup http://www.cflib.org/udf.cfm?ID=216

BFH> 
BFH> Bryan F. Hogan
BFH> Director of Internet Development
BFH> Team Macromedia Volunteer
BFH> Macromedia Certified ColdFusion MX Developer
BFH> Digital Bay Media, Inc.
BFH> 1-877-72DIGITAL
BFH> 

BFH> -Original Message-
BFH> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
BFH> Sent: Thursday, March 27, 2003 1:29 PM
BFH> To: CF-Talk
BFH> Subject: is email-adress wrong ?


BFH> It might have been asked
BFH> before, but is there a
BFH> fast AND free custom-tag (CF-routine)
BFH> to check if an email adress
BFH> is syntactically wrong ?
BFH> Uwe


BFH> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: JSP and outputing cgi variables

2003-03-27 Thread Nate
***
Your mail has been scanned, and no virus was found.
***-***


Thanks.

Nate

- Original Message -
From: "Nick de Voil" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 27, 2003 12:44 PM
Subject: Re: JSP and outputing cgi variables


> > Sorry for the OT post, I'm a JSP newbie and need to know how I would do
> >
> > 
> >   #cgi.server_name#
> > 
> >
> > on a JSP page?
>
> <%=request.getServerName()%>
>
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



File locking from CF5?

2003-03-27 Thread Jon Block
Lets say I have two CF5 enabled web servers with a single directory they
both can access. Server A occasionally will write "hello.txt" with a CFFILE
tag to the shared directory. Server B will periodically read the "hello.txt"
from the shared directory when serving out web pages.

The problem is that sometimes I get a CF exception on server A becuase
hello.txt can't be written while server B is reading from it.

I have read up on CFLOCK but it seems thats only good for isolating chunks
of code in a single server. In this case I have a cluster and cflock won't
protect against threads trying to access hello.txt on a different machine.

Any help is appreciated.
Thanks!
Jon

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Nested Query Loop Bug/Issue

2003-03-27 Thread Sicular, Alexander
i've had this problem before and arrived at the same solution as you. please fix this 
mm.

alex

> -Original Message-
> From: Tony Schreiber [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 27, 2003 12:04 PM
> To: CF-Talk
> Subject: Nested Query Loop Bug/Issue
> 
> 
> I don't know if any of you have run into this before or if 
> it's even been
> mentioned (couldn't find it at mm technotes either), but I've 
> run into a
> situation where the values of an outer loop referred to in an 
> inner loop
> are not what you expect. I was burned on this recently and remember
> vaguely it happening to me before. I've written some 
> demonstration code to
> illustrate:
> 
> http://www.simplemessageboard.com/loopbug.cfm
> 
> The solution as shown in the code is to set a local variable 
> BEFORE you
> begin the inner loop to hold the value of the outer loop you 
> want to refer
> to within the inner loop.
> 
> Anyone had this happen? Or is this expected behavior that I can't see?
> 
> BTW, this is CF5, I don't know about MX.
> 
> 
> Tony Schreiber, Senior Partner  Man and 
> Machine, Limited
> mailto:[EMAIL PROTECTED]   
> http://www.technocraft.com
> 
> http://www.is300.net The Enthusiast's Home of the Lexus IS300 
> since 1999
> http://www.simplemessageboard.comFree Forum Software for 
> Cold Fusion
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: SQL Name Sounds Like Matching

2003-03-27 Thread Haggerty, Mike
WOW. That is a pretty cool system, and I could see how that could be used in
a variety of situations.

Thanks for the link.

M

-Original Message-
From: Matthew Walker [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 27, 2003 3:41 PM
To: CF-Talk
Subject: Re: SQL Name Sounds Like Matching


Well there's Daitch-Mokotoff Soundex which adds better support for Hebrew.
http://www.avotaynu.com/soundex.html

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: CFMX Updater 3 Available

2003-03-27 Thread Dave Carabetta
>Just a reminder that ColdFusion MX "Updater 3" is now available for free 
>download from the MM website.
>
>In my opinion, this is very close to a full "dot-release" of CFMX, and 
>includes all cumulative major fixes in all product areas, and adds over 100 
>fixes, mostly focused around server reliability and stability.
>

Make that 99 fixes. The WDDX bug that is claimed to have been fixed (Bug 
49064), at least using CFMX for JRun, is not (The description is: "The 
cfwddx tag did not properly handle packets marked as version 0.9"). This is 
a major point-of-failure for us, as we still receive the following error 
when trying to deserialize a WDDX packet marked as version 0.9:

WDDX packet parse error at line 1, column -1. Relative URI "wddx_0090.dtd";
can not be resolved without a base URI..

Any chance there might be a hotfix for this?

Thanks,
Dave.


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX Updater 3 Available

2003-03-27 Thread Jeff Battershall
I've been using Updater 3 in 4 different installations and it's working just
fine - great in fact.  The COM implementation works as expected (finally)
(in my limited testing), which is nice.

I'd be surprised to find anyone's installations dying. I can't speak for MM,
but if it works on Updater 2, its going to work on Updater 3.  If you
haven't even migrated the app from prior versions of CF, then that's another
matter.  There are backward compatibility issues and I wouldn't just upgrade
without extensive testing. 

Yes, there have been some issues with CFMX, but it is far outweighed by the
improved performance and the feature set.  

Jeff 

-Original Message-
From: Lee Fuller [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 27, 2003 3:24 PM
To: CF-Talk
Subject: RE: CFMX Updater 3 Available


Damon,

What's the Plan-B procedure should our installations decide to die on us and
our customers after installing 3?  Just need to know before we move forward.

Thanks...

 
Lee Fuller
Chief Technical Officer
PrimeDNA / AAA Web Hosting Corp.
 
 


| -Original Message-
| From: Damon Cooper [mailto:[EMAIL PROTECTED]
| Sent: Thursday, March 27, 2003 12:08 PM
| To: CF-Talk
| Subject: CFMX Updater 3 Available
| 
| 
| Just a reminder that ColdFusion MX "Updater 3" is now
| available for free download from the MM website.
| 
| In my opinion, this is very close to a full "dot-release" of
| CFMX, and includes all cumulative major fixes in all product 
| areas, and adds over 100 fixes, mostly focused around server 
| reliability and stability.
| 
| If you've shied away from CFMX until now because of reported
| stability problems, this is your release.  We're committed to 
| supporting ColdFusion and you, the ColdFusion customer, and 
| we're working hard to ensure you get the best ColdFusion 
| products we can produce.  
| 
| Sincerely,
| 
| The ColdFusion R&D Team
| 
| 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Nested Query Loop Bug/Issue

2003-03-27 Thread Tony Schreiber
Thanks Dina, I know the work-around (It's in my original message and
used in my demo code) - I guess I was looking for how many people had run
into this before and if it was an official known-issue or not, or even
expceted behavior...

> That's a known problem. To work around it, just set a local variable in the
> outer loop equal to the value in Query1 you want to pass to Query2 and
> access *that* variable inside of your inner loop.
>
> ~Dina
>
> - Original Message -
> From: "Tony Schreiber" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, March 27, 2003 11:04 AM
> Subject: Nested Query Loop Bug/Issue
>
>
> > I don't know if any of you have run into this before or if it's even been
> > mentioned (couldn't find it at mm technotes either), but I've run into a
> > situation where the values of an outer loop referred to in an inner loop
> > are not what you expect. I was burned on this recently and remember
> > vaguely it happening to me before. I've written some demonstration code to
> > illustrate:
> >
> > http://www.simplemessageboard.com/loopbug.cfm
> >
> > The solution as shown in the code is to set a local variable BEFORE you
> > begin the inner loop to hold the value of the outer loop you want to refer
> > to within the inner loop.
> >
> > Anyone had this happen? Or is this expected behavior that I can't see?
> >
> > BTW, this is CF5, I don't know about MX.
> >
> >
> > Tony Schreiber, Senior Partner  Man and Machine, Limited
> > mailto:[EMAIL PROTECTED]   http://www.technocraft.com
> >
> > http://www.is300.net The Enthusiast's Home of the Lexus IS300 since 1999
> > http://www.simplemessageboard.comFree Forum Software for Cold Fusion
> >
> >
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: cfimport tag - jsp libraries

2003-03-27 Thread ksuh
Any reason why the statements are in a cfoutput block?

Try using the javaCast function.

- Original Message -
From: "Bosky, Dave" <[EMAIL PROTECTED]>
Date: Thursday, March 27, 2003 12:50 pm
Subject: cfimport tag - jsp libraries

> Its my first attempt at using the cfimport tag and I can't seem to 
> get by
> this error.  
> What type should it be? I didn't seem a 'type' option in the 
> documentation.
> The type for attribute path of tag Height could not be determined.
> 1 : 
> 2 : 
> 3 : 
> 4 : 
> 
> Thanks,
> Dave
> 
> 
> 
> HTC Disclaimer:  The information contained in this message may be 
> privileged and confidential and protected from disclosure. If the 
> reader of this message is not the intended recipient, or an 
> employee or agent responsible for delivering this message to the 
> intended recipient, you are hereby notified that any 
> dissemination, distribution or copying of this communication is 
> strictly prohibited.  If you have received this communication in 
> error, please notify us immediately by replying to the message and 
> deleting it from your computer.  Thank you.
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Nested Query Loop Bug/Issue

2003-03-27 Thread Dina Hess
Tony,

That's a known problem. To work around it, just set a local variable in the
outer loop equal to the value in Query1 you want to pass to Query2 and
access *that* variable inside of your inner loop.

~Dina

- Original Message -
From: "Tony Schreiber" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 27, 2003 11:04 AM
Subject: Nested Query Loop Bug/Issue


> I don't know if any of you have run into this before or if it's even been
> mentioned (couldn't find it at mm technotes either), but I've run into a
> situation where the values of an outer loop referred to in an inner loop
> are not what you expect. I was burned on this recently and remember
> vaguely it happening to me before. I've written some demonstration code to
> illustrate:
>
> http://www.simplemessageboard.com/loopbug.cfm
>
> The solution as shown in the code is to set a local variable BEFORE you
> begin the inner loop to hold the value of the outer loop you want to refer
> to within the inner loop.
>
> Anyone had this happen? Or is this expected behavior that I can't see?
>
> BTW, this is CF5, I don't know about MX.
>
>
> Tony Schreiber, Senior Partner  Man and Machine, Limited
> mailto:[EMAIL PROTECTED]   http://www.technocraft.com
>
> http://www.is300.net The Enthusiast's Home of the Lexus IS300 since 1999
> http://www.simplemessageboard.comFree Forum Software for Cold Fusion
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: SQL Name Sounds Like Matching

2003-03-27 Thread Matthew Walker
Well there's Daitch-Mokotoff Soundex which adds better support for Hebrew.
http://www.avotaynu.com/soundex.html

- Original Message -
From: "Haggerty, Mike" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, March 28, 2003 8:33 AM
Subject: RE: SQL Name Sounds Like Matching


> Matthew;
>
> Yeah, I'd like to give them the standard with no customization, period.
> Something tells me that's not going to happen.
>
> Youre message is very helpful. I hadn't thought about using Verity for
this,
> but typo support would be great.
>
> My only issue with Soundex is with foreign names, and I can expect over a
> million of them from over 50 countries. Is there a way (meaning, has
anyone
> already worked this out somehow) of compensating for international
> variations in pronounciation? Do you know of a cyrillic version of
soundex?
> Something that does Greek, Russian, Hebrew?
>
>
> Thanks,
> M
>
> -Original Message-
> From: Matthew Walker [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 27, 2003 3:20 PM
> To: CF-Talk
> Subject: Re: SQL Name Sounds Like Matching
>
>
> You say "on the cheap." Well that means they get whatever's standard with
no
> customisation, right? That's what soundex is. It may not be great, but
it's
> certainly easy.  Demanding clients with a tight budget really need to be
> dealt with firmly. They're business killers.
>
> The thing is that phonetic tokenisation algorithms are language based,
i.e.
> soundex is designed to work for English. However, it would be by far the
> easiest to implement. There's a udf here: http://cflib.org/udf.cfm?ID=39 .
> There are a few variations on Soundex which could be investigated. There's
> also metaphone which is a bit more complex to implement. I would store the
> soundex code for each name in the database, with an index on this column,
> and then use the soundex code of the input data as the search key. In this
> way it will be just as quick as a regular search and you can do it whether
> or not the dbms supports Soundex. Combined with regular searching perhaps
> with typo support from verity, and that would have to be way more than a
> budget client could expect.
>
> Matthew Walker
> Electric Sheep Web
> http://www.electricsheep.co.nz/
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: SQL Name Sounds Like Matching

2003-03-27 Thread Haggerty, Mike
Matthew;

Yeah, I'd like to give them the standard with no customization, period.
Something tells me that's not going to happen.

Youre message is very helpful. I hadn't thought about using Verity for this,
but typo support would be great. 

My only issue with Soundex is with foreign names, and I can expect over a
million of them from over 50 countries. Is there a way (meaning, has anyone
already worked this out somehow) of compensating for international
variations in pronounciation? Do you know of a cyrillic version of soundex?
Something that does Greek, Russian, Hebrew? 


Thanks,
M

-Original Message-
From: Matthew Walker [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 27, 2003 3:20 PM
To: CF-Talk
Subject: Re: SQL Name Sounds Like Matching


You say "on the cheap." Well that means they get whatever's standard with no
customisation, right? That's what soundex is. It may not be great, but it's
certainly easy.  Demanding clients with a tight budget really need to be
dealt with firmly. They're business killers.

The thing is that phonetic tokenisation algorithms are language based, i.e.
soundex is designed to work for English. However, it would be by far the
easiest to implement. There's a udf here: http://cflib.org/udf.cfm?ID=39 .
There are a few variations on Soundex which could be investigated. There's
also metaphone which is a bit more complex to implement. I would store the
soundex code for each name in the database, with an index on this column,
and then use the soundex code of the input data as the search key. In this
way it will be just as quick as a regular search and you can do it whether
or not the dbms supports Soundex. Combined with regular searching perhaps
with typo support from verity, and that would have to be way more than a
budget client could expect.

Matthew Walker
Electric Sheep Web
http://www.electricsheep.co.nz/

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: CFMX Updater 3 Available

2003-03-27 Thread Lee Fuller
Damon,

What's the Plan-B procedure should our installations decide to die on us and
our customers after installing 3?  Just need to know before we move forward.

Thanks...

 
Lee Fuller
Chief Technical Officer
PrimeDNA / AAA Web Hosting Corp.
 
 


| -Original Message-
| From: Damon Cooper [mailto:[EMAIL PROTECTED] 
| Sent: Thursday, March 27, 2003 12:08 PM
| To: CF-Talk
| Subject: CFMX Updater 3 Available
| 
| 
| Just a reminder that ColdFusion MX "Updater 3" is now 
| available for free download from the MM website.
| 
| In my opinion, this is very close to a full "dot-release" of 
| CFMX, and includes all cumulative major fixes in all product 
| areas, and adds over 100 fixes, mostly focused around server 
| reliability and stability.
| 
| If you've shied away from CFMX until now because of reported 
| stability problems, this is your release.  We're committed to 
| supporting ColdFusion and you, the ColdFusion customer, and 
| we're working hard to ensure you get the best ColdFusion 
| products we can produce.  
| 
| Sincerely, 
| 
| The ColdFusion R&D Team
| 
| 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: SQL Name Sounds Like Matching

2003-03-27 Thread Matthew Walker
You say "on the cheap." Well that means they get whatever's standard with no
customisation, right? That's what soundex is. It may not be great, but it's
certainly easy.  Demanding clients with a tight budget really need to be
dealt with firmly. They're business killers.

The thing is that phonetic tokenisation algorithms are language based, i.e.
soundex is designed to work for English. However, it would be by far the
easiest to implement. There's a udf here: http://cflib.org/udf.cfm?ID=39 .
There are a few variations on Soundex which could be investigated. There's
also metaphone which is a bit more complex to implement. I would store the
soundex code for each name in the database, with an index on this column,
and then use the soundex code of the input data as the search key. In this
way it will be just as quick as a regular search and you can do it whether
or not the dbms supports Soundex. Combined with regular searching perhaps
with typo support from verity, and that would have to be way more than a
budget client could expect.

Matthew Walker
Electric Sheep Web
http://www.electricsheep.co.nz/

- Original Message -
From: "Haggerty, Mike" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, March 28, 2003 7:34 AM
Subject: OT: SQL Name Sounds Like Matching


> I have a feeling I am going to be working on this one for a while...
>
> One of my more demanding clients is asking for a name matching solution on
> the cheap. What it needs to do is find where a name 'sounds like' another
> name, even if it is in another language (including Middle Eastern and
> Oriental names). In addition, I need to be able to eliminate false
positives
> wherever possible, in order to come up with the most consise list of
> matches.
>
> I really don't know where to start. SQL Server and Oracle both offer
soundex
> support, which I suppose could be used to generate some values for
> comparisons. But I am not sure how this would work when different
languages
> come into play.
>
> Does anyone have / know of any books / resources / advice on how to do
this?
>
> M
>
>
>
>
>
>
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Does anyone know where this error is generated?

2003-03-27 Thread Calvin Ward
Downside of that would be additional load for every request, would it not?

- Original Message -
From: "jon hall" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 27, 2003 2:47 PM
Subject: Re: Does anyone know where this error is generated?


> One way would be to develop an ISAPI filter or extension that
> determines if the CF service is started, if so, pass request to CF, if
> not, send user to pretty error page.
>
> --
>  jon
>  mailto:[EMAIL PROTECTED]
>
> Thursday, March 27, 2003, 2:28:35 PM, you wrote:
> CW> Not to be dense, but if CF service is stopped, then how does it
provide this
> CW> response?
>
> CW> We ARE fixing the session variable locking, but this message ALSO
appears
> CW> when CF Service restarts.
>
> CW> I meant that the fixing of issues was a priority, in the MEANTIME we
would
> CW> like to present a prettier face to the user. There are a large number
of
> CW> sites here, so it takes some time to resolve all that.
>
> CW> Still wondering
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: OT: SQL Name Sounds Like Matching

2003-03-27 Thread Tony Schreiber
Search google for SOUNDEX.

> I have a feeling I am going to be working on this one for a while...
>
> One of my more demanding clients is asking for a name matching solution on
> the cheap. What it needs to do is find where a name 'sounds like' another
> name, even if it is in another language (including Middle Eastern and
> Oriental names). In addition, I need to be able to eliminate false positives
> wherever possible, in order to come up with the most consise list of
> matches.
>
> I really don't know where to start. SQL Server and Oracle both offer soundex
> support, which I suppose could be used to generate some values for
> comparisons. But I am not sure how this would work when different languages
> come into play.
>
> Does anyone have / know of any books / resources / advice on how to do this?
>
> M
>
>
>
>
>
>
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Does anyone know where this error is generated?

2003-03-27 Thread Calvin Ward
Dave,

Thanks, but that's certainly not the good news I was looking for...

Ah well.

I wouldn't have thought that CF would respond at all if it was... well, not
responding, quite an interesting deal there.


- Original Message -
From: "Dave Watts" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 27, 2003 2:42 PM
Subject: RE: Does anyone know where this error is generated?


> > The message is from CF, not IIS.  If you've stopped the CF
> > service, if you try to request a .cfm page, this error will
> > appear.
>
> This isn't exactly the case. The message is from the CF ISAPI extension,
and
> to the best of my knowledge there's no way to change it in CF 5.
>
> In CFMX with Updater 3, however, I imagine that you may be able to change
it
> if you're using Apache instead of IIS, since I believe that the source for
> the Apache module is provided with Updater 3. No such luck with IIS,
though,
> I'll bet.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



CFMX Updater 3 Available

2003-03-27 Thread Damon Cooper
Just a reminder that ColdFusion MX "Updater 3" is now available for free download from 
the MM website.

In my opinion, this is very close to a full "dot-release" of CFMX, and includes all 
cumulative major fixes in all product areas, and adds over 100 fixes, mostly focused 
around server reliability and stability.

If you've shied away from CFMX until now because of reported stability problems, this 
is your release.  We're committed to supporting ColdFusion and you, the ColdFusion 
customer, and we're working hard to ensure you get the best ColdFusion products we can 
produce.  

Sincerely, 

The ColdFusion R&D Team

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: cfimport tag - jsp libraries

2003-03-27 Thread Dave Watts
> Its my first attempt at using the cfimport tag and I can't 
> seem to get by this error. What type should it be? I didn't 
> seem a 'type' option in the documentation.
> 
> The type for attribute path of tag Height could not be determined.
> 1 : 
> 2 : 
> 3 : 
> 4 : 

You can get it to work by cycling the CF server. There may be a way to get
it to automatically recognize jar and tld files placed in /WEB-INF/lib, but
I don't know what it is, off the top of my head.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



cfimport tag - jsp libraries

2003-03-27 Thread Bosky, Dave
Its my first attempt at using the cfimport tag and I can't seem to get by
this error.  
What type should it be? I didn't seem a 'type' option in the documentation.

The type for attribute path of tag Height could not be determined.
1 : 
2 : 
3 : 
4 : 

Thanks,
Dave



HTC Disclaimer:  The information contained in this message may be privileged and 
confidential and protected from disclosure. If the reader of this message is not the 
intended recipient, or an employee or agent responsible for delivering this message to 
the intended recipient, you are hereby notified that any dissemination, distribution 
or copying of this communication is strictly prohibited.  If you have received this 
communication in error, please notify us immediately by replying to the message and 
deleting it from your computer.  Thank you.
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: JSP and outputing cgi variables

2003-03-27 Thread Nick de Voil
> Sorry for the OT post, I'm a JSP newbie and need to know how I would do
> 
> 
>   #cgi.server_name#
> 
> 
> on a JSP page?

<%=request.getServerName()%>




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: cffile vs. cfinclude

2003-03-27 Thread Barney Boisvert
For question 3, the biggest difference is whether you can have CF processing
in your files.  Usually for config stuff, CF is not used, so either will
work in this case.  CFFILE does not have the overhead associated with the
CFSAVECONTENT tag (minimal, but still there), nor the CFMX compilation
cycle.  However, CFFILE doesn't get the benefit of cached templates like the
CFINCLUDE would from the CF server.  Both will benefit from filesystem-level
caching/buffers.

I suspect that CFFILE is faster than CFSAVECONTENT/CFINCLUDE because there
is no processing overhead, but you'd have to do some tests to see if that's
the case (loop over each one a few thousand times and use gettickcount() to
see how long it takes).

To get to the final point though, if it's a config file that's static, just
read it once, and cache it somewhere (probably the parsed representation,
rather than the raw data), and then the discussion is moot.

cheers,
barneyb

---
Barney Boisvert, Senior Development Engineer
AudienceCentral (formerly PIER System, Inc.)
[EMAIL PROTECTED]
voice : 360.756.8080 x12
fax   : 360.647.5351

www.audiencecentral.com

> -Original Message-
> From: Brad Roberts [mailto:[EMAIL PROTECTED]
> Sent: Thursday, March 27, 2003 11:30 AM
> To: CF-Talk
> Subject: cffile vs. cfinclude
>
>
> Here's some questions I have about cffile... maybe someone can
> help me out.
>
> 1. All I've been able find out about performance, is that
> "extensive" use of
> cffile will create a performance problem because of the slow
> nature of disk
> I/O.  What is extensive?
>
> 2. As far as disk access is concerned, what's the difference between CF
> reading a file using cffile, and inculding one using cfinclude?
>
> 3. Which of the following (if either) is better?
>
>   
>
>   -OR-
>
>   
> 
>   
>
>
> -Brad
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: RE: Does anyone know where this error is generated?

2003-03-27 Thread ksuh
> This isn't exactly the case. The message is from the CF ISAPI 
> extension, and
> to the best of my knowledge there's no way to change it in CF 5.

Yes.  I just didn't want to explain the nuts and bolts :)  It should be mentioned for 
clarity that it's not the ISAPI extension that's causing the error, it's the fact that 
the service is down.  The ISAPI extension is merely displaying the error message.

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Application security structure -- ADDENDUM

2003-03-27 Thread Bryan F. Hogan
Yes it does matter, since this is a frame you do not want the login page
loading inside the frame.

You have:


document.location="int.cfm"


which will indeed load it into the frame.

You want to do top.document.location instead.

Example


top.document.location.href='int.cfm';



Bryan F. Hogan
Director of Internet Development
Team Macromedia Volunteer
Macromedia Certified ColdFusion MX Developer
Digital Bay Media, Inc.
1-877-72DIGITAL


-Original Message-
From: John Stanley [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 1:51 PM
To: CF-Talk
Subject: Application security structure -- ADDENDUM


I dont know if this matters, but

the default page for this site is int.cfm which is a frame page that calls
the page content.cfm. this page checks to see whether the user has
successfully logged in, and then directs them to the correct page.



-Original Message-
From: John Stanley
Sent: Thursday, March 27, 2003 1:40 PM
To: CF-Talk
Subject: Application security structure


Running CFMX

Okay, this is a very basic question for alot of you, but one that gives me
pause everytime it comes up.

I am developing a large application-level web site that will house several
smaller applications inside of it. I am using application and user-groups
defined roles for each user to limit their access to whatever I want them to
see. This all works great.

Here is my problem:
1. The appliation.cfm loads with every page request.
2. If there is no Session.Auth structure, it makes one.
3. The session scope for the application tag in my application.cfm is set to
timeout after 20 minutes.
4. If the browser has had no activity for the prescribed length of time, the
user on the next page request should be prompted to log in again.
5. I cannot figuire out how to redirect the user by using code on the
application.cfm to do this. Sort of like the following:









document.location="int.cfm"




This should be very easy, but I just cant get my head around it. I keep
getting the million-page-loading problem.

Any thoughts.

:-)

John





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Does anyone know where this error is generated?

2003-03-27 Thread jon hall
One way would be to develop an ISAPI filter or extension that
determines if the CF service is started, if so, pass request to CF, if
not, send user to pretty error page.

-- 
 jon
 mailto:[EMAIL PROTECTED]

Thursday, March 27, 2003, 2:28:35 PM, you wrote:
CW> Not to be dense, but if CF service is stopped, then how does it provide this
CW> response?

CW> We ARE fixing the session variable locking, but this message ALSO appears
CW> when CF Service restarts.

CW> I meant that the fixing of issues was a priority, in the MEANTIME we would
CW> like to present a prettier face to the user. There are a large number of
CW> sites here, so it takes some time to resolve all that.

CW> Still wondering

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Application security structure

2003-03-27 Thread John Stanley
ben, thanks for your help

-Original Message-
From: Ben Doom [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 1:49 PM
To: CF-Talk
Subject: RE: Application security structure


You have to make an exception for the login page, else it keeps trying to
redirect from the login page to the login page.  You should also put a
redirect at the bottom of the code block that handles creating the session
variables, because if there is no autorization stored in session, then the
user isn't logged in by definition.


--  Ben Doom
Programmer & General Lackey
Moonbow Software, Inc

: -Original Message-
: From: John Stanley [mailto:[EMAIL PROTECTED]
: Sent: Thursday, March 27, 2003 1:40 PM
: To: CF-Talk
: Subject: Application security structure
:
:
: Running CFMX
:
: Okay, this is a very basic question for alot of you, but one that gives me
: pause everytime it comes up.
:
: I am developing a large application-level web site that will house several
: smaller applications inside of it. I am using application and user-groups
: defined roles for each user to limit their access to whatever I
: want them to
: see. This all works great.
:
: Here is my problem:
: 1. The appliation.cfm loads with every page request.
: 2. If there is no Session.Auth structure, it makes one.
: 3. The session scope for the application tag in my
: application.cfm is set to
: timeout after 20 minutes.
: 4. If the browser has had no activity for the prescribed length
: of time, the
: user on the next page request should be prompted to log in again.
: 5. I cannot figuire out how to redirect the user by using code on the
: application.cfm to do this. Sort of like the following:
:
: 
:   
:   
:   
:   
: 
:   
:   
:   document.location="int.cfm"
:   
:   
: 
:
: This should be very easy, but I just cant get my head around it. I keep
: getting the million-page-loading problem.
:
: Any thoughts.
:
: :-)
:
: John
:
:
:
: 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Application security structure

2003-03-27 Thread John Stanley
bryan, thanks for your help

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 1:46 PM
To: CF-Talk
Subject: RE: Application security structure


P.S. It should be:




Bryan F. Hogan
Director of Internet Development
Team Macromedia Volunteer
Macromedia Certified ColdFusion MX Developer
Digital Bay Media, Inc.
1-877-72DIGITAL


-Original Message-
From: John Stanley [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 1:40 PM
To: CF-Talk
Subject: Application security structure


Running CFMX

Okay, this is a very basic question for alot of you, but one that gives me
pause everytime it comes up.

I am developing a large application-level web site that will house several
smaller applications inside of it. I am using application and user-groups
defined roles for each user to limit their access to whatever I want them to
see. This all works great.

Here is my problem:
1. The appliation.cfm loads with every page request.
2. If there is no Session.Auth structure, it makes one.
3. The session scope for the application tag in my application.cfm is set to
timeout after 20 minutes.
4. If the browser has had no activity for the prescribed length of time, the
user on the next page request should be prompted to log in again.
5. I cannot figuire out how to redirect the user by using code on the
application.cfm to do this. Sort of like the following:









document.location="int.cfm"




This should be very easy, but I just cant get my head around it. I keep
getting the million-page-loading problem.

Any thoughts.

:-)

John





~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Application security structure

2003-03-27 Thread John Stanley
thanks for your help

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 1:54 PM
To: CF-Talk
Subject: Re: Application security structure


You need to check to see if the user is being redirected to that page.  If
they are, then they should skip the authentication.



- Original Message -
From: John Stanley <[EMAIL PROTECTED]>
Date: Thursday, March 27, 2003 11:39 am
Subject: Application security structure

> Running CFMX
> 
> Okay, this is a very basic question for alot of you, but one that 
> gives me
> pause everytime it comes up.
> 
> I am developing a large application-level web site that will house 
> severalsmaller applications inside of it. I am using application 
> and user-groups
> defined roles for each user to limit their access to whatever I 
> want them to
> see. This all works great.
> 
> Here is my problem:
> 1. The appliation.cfm loads with every page request.
> 2. If there is no Session.Auth structure, it makes one.
> 3. The session scope for the application tag in my application.cfm 
> is set to
> timeout after 20 minutes.
> 4. If the browser has had no activity for the prescribed length of 
> time, the
> user on the next page request should be prompted to log in again.
> 5. I cannot figuire out how to redirect the user by using code on the
> application.cfm to do this. Sort of like the following:
> 
> 
>   
>   
>   
>   
> 
>   
>   
>document.location="int.cfm"
>   
>   
> 
> 
> This should be very easy, but I just cant get my head around it. I 
> keepgetting the million-page-loading problem.
> 
> Any thoughts.
> 
> :-)
> 
> John
> 
> 
> 
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Does anyone know where this error is generated?

2003-03-27 Thread Dave Watts
> The message is from CF, not IIS.  If you've stopped the CF 
> service, if you try to request a .cfm page, this error will 
> appear.

This isn't exactly the case. The message is from the CF ISAPI extension, and
to the best of my knowledge there's no way to change it in CF 5.

In CFMX with Updater 3, however, I imagine that you may be able to change it
if you're using Apache instead of IIS, since I believe that the source for
the Apache module is provided with Updater 3. No such luck with IIS, though,
I'll bet.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



OT: SQL Name Sounds Like Matching

2003-03-27 Thread Haggerty, Mike
I have a feeling I am going to be working on this one for a while...

One of my more demanding clients is asking for a name matching solution on
the cheap. What it needs to do is find where a name 'sounds like' another
name, even if it is in another language (including Middle Eastern and
Oriental names). In addition, I need to be able to eliminate false positives
wherever possible, in order to come up with the most consise list of
matches.

I really don't know where to start. SQL Server and Oracle both offer soundex
support, which I suppose could be used to generate some values for
comparisons. But I am not sure how this would work when different languages
come into play.

Does anyone have / know of any books / resources / advice on how to do this?

M









~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



cffile vs. cfinclude

2003-03-27 Thread Brad Roberts
Here's some questions I have about cffile... maybe someone can help me out.

1. All I've been able find out about performance, is that "extensive" use of
cffile will create a performance problem because of the slow nature of disk
I/O.  What is extensive?

2. As far as disk access is concerned, what's the difference between CF
reading a file using cffile, and inculding one using cfinclude?

3. Which of the following (if either) is better?

  

  -OR-

  

  


-Brad


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Does anyone know where this error is generated?

2003-03-27 Thread Calvin Ward
Not to be dense, but if CF service is stopped, then how does it provide this
response?

We ARE fixing the session variable locking, but this message ALSO appears
when CF Service restarts.

I meant that the fixing of issues was a priority, in the MEANTIME we would
like to present a prettier face to the user. There are a large number of
sites here, so it takes some time to resolve all that.

Still wondering

- Original Message -
From: <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 27, 2003 2:18 PM
Subject: Re: Does anyone know where this error is generated?


> The message is from CF, not IIS.  If you've stopped the CF service, if you
try to request a .cfm page, this error will appear.
>
> If this is a priority, fix your session variable locking.
>
> - Original Message -
> From: Calvin Ward <[EMAIL PROTECTED]>
> Date: Thursday, March 27, 2003 12:04 pm
> Subject: Re: Does anyone know where this error is generated?
>
> > Douglas,
> >
> > We're working on resolving unlocked session variables, as well as
> > otherknown causes (culled from various sources), and there aren't
> > any Access DBs
> > on our servers, all SQL2000 and Oracle.
> >
> > This is definitely a priority.
> >
> > In the meantime, we'd like to present a prettier face to the user.
> >
> > I don't believe that ColdFusion code will resolve that, as the
> > error seems
> > to also be generated during server restart or being down.
> >
> > In fact, I copied and pasted the below text from a browser trying
> > to hit our
> > dev server after we manually stopped the service.
> >
> > I was under the impression that it was actually generated through
> > IIS and
> > not CF.
> >
> > Anyone have further thoughts?
> >
> > - Original Message -
> > From: <[EMAIL PROTECTED]>
> > To: "CF-Talk" <[EMAIL PROTECTED]>
> > Sent: Thursday, March 27, 2003 1:21 PM
> > Subject: RE: Does anyone know where this error is generated?
> >
> >
> > > a custom error template is good... tag...but you should
> > probablyfigure out why this is occuring.  What version of CF are
> > you using?  Using
> > Access DBs anywhere?  Check your logs in the CFADMIN tool for long
> > runningrequests.  Something is holding up cfserver threads
> > somewhere it seems.
> > >
> > > Doug
> > >
> > > >-Original Message-
> > > >From: Calvin Ward [mailto:[EMAIL PROTECTED]
> > > >Sent: Thursday, March 27, 2003 1:06 PM
> > > >To: CF-Talk
> > > >Subject: Does anyone know where this error is generated?
> > > >
> > > >
> > > >Ocassionally our CF service restarts, and when it does, IIS
> > > >generates the following message:
> > > >
> > > >==
> > > >
> > > >Error Occurred While Processing Request
> > > >
> > > >Request canceled or ignored by serverServer busy or unable to
> > > >fulfill request. The server is unable to fulfill your request
> > > >due to extremely high traffic or an unexpected internal error.
> > > >Please attempt your request again (if you are repeatedly
> > > >unsuccessful you should notify the site administrator).
> > > >(Location Code: 26)
> > > >
> > > >==
> > > >
> > > >What I'm looking for is a way to replace this message with one
> > > >of my own, or even a javascript redirect to somewhere else.
> > > >
> > > >
> > > >
> > > >
> > >
> >
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



OT: JSP and outputing cgi variables

2003-03-27 Thread Nate
***
Your mail has been scanned, and no virus was found.
***-***


Hello,

Sorry for the OT post, I'm a JSP newbie and need to know how I would do


  #cgi.server_name#


on a JSP page?

Thanks,

Nate



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Does anyone know where this error is generated?

2003-03-27 Thread Douglas.Knudsen
Ah...I see...  CF has a great error trapping schtuff you can use, but it is useless 
for server timeout stuff in my experience.  I know unlocked vars can cause wierd 
stuff, but I have found long running SQL to be a culprit quite often too.  Have you 
guys looked at upping the request timeout setting? perhaps raise the limit 
simultaneous requests setting?  Have restart after n unresponsive threads on and 
all...lower this.  Have you tried setting the locking to single threaded sessions?  
Sounds like you are looking at this stuff already. Filter for 'Warning' and 
'Information' severity in your application log via the CFADMIN tool.  This will show 
you all the long running requests, if you set the logs to log them that is.  It will 
also show when CF labels a thread unresponsive.

just my thoughts

Doug

>-Original Message-
>From: Calvin Ward [mailto:[EMAIL PROTECTED]
>Sent: Thursday, March 27, 2003 2:04 PM
>To: CF-Talk
>Subject: Re: Does anyone know where this error is generated?
>
>
>Douglas,
>
>We're working on resolving unlocked session variables, as well as other
>known causes (culled from various sources), and there aren't 
>any Access DBs
>on our servers, all SQL2000 and Oracle.
>
>This is definitely a priority.
>
>In the meantime, we'd like to present a prettier face to the user.
>
>I don't believe that ColdFusion code will resolve that, as the 
>error seems
>to also be generated during server restart or being down.
>
>In fact, I copied and pasted the below text from a browser 
>trying to hit our
>dev server after we manually stopped the service.
>
>I was under the impression that it was actually generated 
>through IIS and
>not CF.
>
>Anyone have further thoughts?
>
>- Original Message -
>From: <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Thursday, March 27, 2003 1:21 PM
>Subject: RE: Does anyone know where this error is generated?
>
>
>> a custom error template is good... tag...but you 
>should probably
>figure out why this is occuring.  What version of CF are you 
>using?  Using
>Access DBs anywhere?  Check your logs in the CFADMIN tool for 
>long running
>requests.  Something is holding up cfserver threads somewhere it seems.
>>
>> Doug
>>
>> >-Original Message-
>> >From: Calvin Ward [mailto:[EMAIL PROTECTED]
>> >Sent: Thursday, March 27, 2003 1:06 PM
>> >To: CF-Talk
>> >Subject: Does anyone know where this error is generated?
>> >
>> >
>> >Ocassionally our CF service restarts, and when it does, IIS
>> >generates the following message:
>> >
>> >==
>> >
>> >Error Occurred While Processing Request
>> >
>> >Request canceled or ignored by serverServer busy or unable to
>> >fulfill request. The server is unable to fulfill your request
>> >due to extremely high traffic or an unexpected internal error.
>> >Please attempt your request again (if you are repeatedly
>> >unsuccessful you should notify the site administrator).
>> >(Location Code: 26)
>> >
>> >==
>> >
>> >What I'm looking for is a way to replace this message with one
>> >of my own, or even a javascript redirect to somewhere else.
>> >
>> >
>> >
>> >
>> 
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Does anyone know where this error is generated?

2003-03-27 Thread ksuh
The message is from CF, not IIS.  If you've stopped the CF service, if you try to 
request a .cfm page, this error will appear.

If this is a priority, fix your session variable locking.

- Original Message -
From: Calvin Ward <[EMAIL PROTECTED]>
Date: Thursday, March 27, 2003 12:04 pm
Subject: Re: Does anyone know where this error is generated?

> Douglas,
> 
> We're working on resolving unlocked session variables, as well as 
> otherknown causes (culled from various sources), and there aren't 
> any Access DBs
> on our servers, all SQL2000 and Oracle.
> 
> This is definitely a priority.
> 
> In the meantime, we'd like to present a prettier face to the user.
> 
> I don't believe that ColdFusion code will resolve that, as the 
> error seems
> to also be generated during server restart or being down.
> 
> In fact, I copied and pasted the below text from a browser trying 
> to hit our
> dev server after we manually stopped the service.
> 
> I was under the impression that it was actually generated through 
> IIS and
> not CF.
> 
> Anyone have further thoughts?
> 
> - Original Message -
> From: <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, March 27, 2003 1:21 PM
> Subject: RE: Does anyone know where this error is generated?
> 
> 
> > a custom error template is good... tag...but you should 
> probablyfigure out why this is occuring.  What version of CF are 
> you using?  Using
> Access DBs anywhere?  Check your logs in the CFADMIN tool for long 
> runningrequests.  Something is holding up cfserver threads 
> somewhere it seems.
> >
> > Doug
> >
> > >-Original Message-
> > >From: Calvin Ward [mailto:[EMAIL PROTECTED]
> > >Sent: Thursday, March 27, 2003 1:06 PM
> > >To: CF-Talk
> > >Subject: Does anyone know where this error is generated?
> > >
> > >
> > >Ocassionally our CF service restarts, and when it does, IIS
> > >generates the following message:
> > >
> > >==
> > >
> > >Error Occurred While Processing Request
> > >
> > >Request canceled or ignored by serverServer busy or unable to
> > >fulfill request. The server is unable to fulfill your request
> > >due to extremely high traffic or an unexpected internal error.
> > >Please attempt your request again (if you are repeatedly
> > >unsuccessful you should notify the site administrator).
> > >(Location Code: 26)
> > >
> > >==
> > >
> > >What I'm looking for is a way to replace this message with one
> > >of my own, or even a javascript redirect to somewhere else.
> > >
> > >
> > >
> > >
> > 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Does anyone know where this error is generated?

2003-03-27 Thread Calvin Ward
Douglas,

We're working on resolving unlocked session variables, as well as other
known causes (culled from various sources), and there aren't any Access DBs
on our servers, all SQL2000 and Oracle.

This is definitely a priority.

In the meantime, we'd like to present a prettier face to the user.

I don't believe that ColdFusion code will resolve that, as the error seems
to also be generated during server restart or being down.

In fact, I copied and pasted the below text from a browser trying to hit our
dev server after we manually stopped the service.

I was under the impression that it was actually generated through IIS and
not CF.

Anyone have further thoughts?

- Original Message -
From: <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 27, 2003 1:21 PM
Subject: RE: Does anyone know where this error is generated?


> a custom error template is good... tag...but you should probably
figure out why this is occuring.  What version of CF are you using?  Using
Access DBs anywhere?  Check your logs in the CFADMIN tool for long running
requests.  Something is holding up cfserver threads somewhere it seems.
>
> Doug
>
> >-Original Message-
> >From: Calvin Ward [mailto:[EMAIL PROTECTED]
> >Sent: Thursday, March 27, 2003 1:06 PM
> >To: CF-Talk
> >Subject: Does anyone know where this error is generated?
> >
> >
> >Ocassionally our CF service restarts, and when it does, IIS
> >generates the following message:
> >
> >==
> >
> >Error Occurred While Processing Request
> >
> >Request canceled or ignored by serverServer busy or unable to
> >fulfill request. The server is unable to fulfill your request
> >due to extremely high traffic or an unexpected internal error.
> >Please attempt your request again (if you are repeatedly
> >unsuccessful you should notify the site administrator).
> >(Location Code: 26)
> >
> >==
> >
> >What I'm looking for is a way to replace this message with one
> >of my own, or even a javascript redirect to somewhere else.
> >
> >
> >
> >
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: is email-adress wrong ?

2003-03-27 Thread Bryan Stevenson
CFFORM is the Devil ;-)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com
- Original Message -
From: <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 27, 2003 10:46 AM
Subject: Re: is email-adress wrong ?


> You can use  pattern="([[:alnum:]_\.\-]+@([[:alnum:]_\.\-]+\.)+[[:alpha:]]+)"
> required="yes">
>
> David Murphy
> www.cfugcny.org
>
> = = = Original message = = =
>
> There is a UDF at cflib.org called IsEmail() I believe (if you're
> using CF 5
> or newer).if not...there are tonnes of e-mial validating
> tagsgot o
> MM DevEx
>
> Bryan Stevenson B.Comm.
> VP & Director of E-Commerce Development
> Electric Edge Systems Group Inc.
> t. 250.920.8830
> e. [EMAIL PROTECTED]
>
> -
> Macromedia Associate Partner
> www.macromedia.com
> -
> Vancouver Island ColdFusion Users Group
> Founder & Director
> www.cfug-vancouverisland.com
> - Original Message -
> From: <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Thursday, March 27, 2003 10:29 AM
> Subject: is email-adress wrong ?
>
>
> > It might have been asked
> > before, but is there a
> > fast AND free custom-tag (CF-routine)
> > to check if an email adress
> > is syntactically wrong ?
> > Uwe
> >
> >
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Nested Query Loop Bug/Issue

2003-03-27 Thread James Ang
This issue has been around since v4.x. :P

The workaround mentioned is *the* workaround.

Confirmed bug or not? Not sure. Most developers just use the workaround.
:D

---
James Ang
Sr. Developer/Product Engineer
MedSeek, Inc.
[EMAIL PROTECTED]



-Original Message-
From: Tony Schreiber [mailto:[EMAIL PROTECTED] 
Sent: Thursday, March 27, 2003 9:18 AM
To: CF-Talk
Subject: Re: Nested Query Loop Bug/Issue


That's basically what the "example" variable in my demo code does - you
have to set it outside of the inner loop.

So is this a confirmed bug or anything?

> I have seen it before, not sure why it happens but what I did
> to solve it was set a temp variable to hold the first element of
> the query and reset it when it changes.
>
> 
> 
>  
> 
> 
> 
> ...
>
>
> >>> [EMAIL PROTECTED] 03/27/03 12:04PM >>>
> I don't know if any of you have run into this before or if it's even
> been
> mentioned (couldn't find it at mm technotes either), but I've run into
> a
> situation where the values of an outer loop referred to in an inner
> loop
> are not what you expect. I was burned on this recently and remember
> vaguely it happening to me before. I've written some demonstration
code
> to
> illustrate:
>
> http://www.simplemessageboard.com/loopbug.cfm
>
> The solution as shown in the code is to set a local variable BEFORE
> you
> begin the inner loop to hold the value of the outer loop you want to
> refer
> to within the inner loop.
>
> Anyone had this happen? Or is this expected behavior that I can't see?
>
> BTW, this is CF5, I don't know about MX.
>
>
> Tony Schreiber, Senior Partner  Man and Machine,
> Limited
> mailto:[EMAIL PROTECTED]
> http://www.technocraft.com
>
> http://www.is300.net The Enthusiast's Home of the Lexus IS300 since
> 1999
> http://www.simplemessageboard.comFree Forum Software for Cold
> Fusion
>
>
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Application security structure

2003-03-27 Thread ksuh
You need to check to see if the user is being redirected to that page.  If they are, 
then they should skip the authentication.



- Original Message -
From: John Stanley <[EMAIL PROTECTED]>
Date: Thursday, March 27, 2003 11:39 am
Subject: Application security structure

> Running CFMX
> 
> Okay, this is a very basic question for alot of you, but one that 
> gives me
> pause everytime it comes up.
> 
> I am developing a large application-level web site that will house 
> severalsmaller applications inside of it. I am using application 
> and user-groups
> defined roles for each user to limit their access to whatever I 
> want them to
> see. This all works great.
> 
> Here is my problem:
> 1. The appliation.cfm loads with every page request.
> 2. If there is no Session.Auth structure, it makes one.
> 3. The session scope for the application tag in my application.cfm 
> is set to
> timeout after 20 minutes.
> 4. If the browser has had no activity for the prescribed length of 
> time, the
> user on the next page request should be prompted to log in again.
> 5. I cannot figuire out how to redirect the user by using code on the
> application.cfm to do this. Sort of like the following:
> 
> 
>   
>   
>   
>   
> 
>   
>   
>document.location="int.cfm"
>   
>   
> 
> 
> This should be very easy, but I just cant get my head around it. I 
> keepgetting the million-page-loading problem.
> 
> Any thoughts.
> 
> :-)
> 
> John
> 
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Application security structure -- ADDENDUM

2003-03-27 Thread John Stanley
I dont know if this matters, but

the default page for this site is int.cfm which is a frame page that calls
the page content.cfm. this page checks to see whether the user has
successfully logged in, and then directs them to the correct page.



-Original Message-
From: John Stanley 
Sent: Thursday, March 27, 2003 1:40 PM
To: CF-Talk
Subject: Application security structure


Running CFMX

Okay, this is a very basic question for alot of you, but one that gives me
pause everytime it comes up.

I am developing a large application-level web site that will house several
smaller applications inside of it. I am using application and user-groups
defined roles for each user to limit their access to whatever I want them to
see. This all works great.

Here is my problem:
1. The appliation.cfm loads with every page request.
2. If there is no Session.Auth structure, it makes one.
3. The session scope for the application tag in my application.cfm is set to
timeout after 20 minutes.
4. If the browser has had no activity for the prescribed length of time, the
user on the next page request should be prompted to log in again.
5. I cannot figuire out how to redirect the user by using code on the
application.cfm to do this. Sort of like the following:









document.location="int.cfm"




This should be very easy, but I just cant get my head around it. I keep
getting the million-page-loading problem.

Any thoughts.

:-)

John




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



cflogin and IIS Integrated Windows Security

2003-03-27 Thread Ian Skinner
I have a real simple login framework where I use the ntsecurity CFC I got
from Macromedia to get a list of NT user groups of which a user is a member.
By setting the directory security in IIS to "integrated windows security"
and turning off "Anonymous access", cgi.auth_user is populated with the
domain and user id of the person who logged into the computer.  I can then
get their user groups.  This all works well and fine.  But I have a question
about the password.

The password parameter of the cfLogInUser tag is required.  With integrated
windows security, the cgi.Auth_Password seems to be an empty string if you
output it.  Is this going to be a problem, passing a possibly empty string
to the password parameter of cfLogInUser?  Is cgi.Auth_User not actually
empty in this scenario?  The code below works in testing, but I don't want
it to become a problem under load with multiple users.  Would it be better
if I used some kind a random and/or unique string for a psedo password
(maybe a UUID), since I don't know what the user typed to log into the
computer?  Ben Forta's "ColdFusion MX: Web Application Construction Kit"
book says "The password that the user logs in with.  This is used internally
by ColdFusion to track the user's login status."  

I would appreciate any insights on this from the guru's, Macromedia
insiders, and other experts.

Thanks.







--
Ian Skinner
Web Programmer
BloodSource
Sacramento, CA

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Application security structure

2003-03-27 Thread Ben Doom
You have to make an exception for the login page, else it keeps trying to
redirect from the login page to the login page.  You should also put a
redirect at the bottom of the code block that handles creating the session
variables, because if there is no autorization stored in session, then the
user isn't logged in by definition.


--  Ben Doom
Programmer & General Lackey
Moonbow Software, Inc

: -Original Message-
: From: John Stanley [mailto:[EMAIL PROTECTED]
: Sent: Thursday, March 27, 2003 1:40 PM
: To: CF-Talk
: Subject: Application security structure
:
:
: Running CFMX
:
: Okay, this is a very basic question for alot of you, but one that gives me
: pause everytime it comes up.
:
: I am developing a large application-level web site that will house several
: smaller applications inside of it. I am using application and user-groups
: defined roles for each user to limit their access to whatever I
: want them to
: see. This all works great.
:
: Here is my problem:
: 1. The appliation.cfm loads with every page request.
: 2. If there is no Session.Auth structure, it makes one.
: 3. The session scope for the application tag in my
: application.cfm is set to
: timeout after 20 minutes.
: 4. If the browser has had no activity for the prescribed length
: of time, the
: user on the next page request should be prompted to log in again.
: 5. I cannot figuire out how to redirect the user by using code on the
: application.cfm to do this. Sort of like the following:
:
: 
:   
:   
:   
:   
: 
:   
:   
:   document.location="int.cfm"
:   
:   
: 
:
: This should be very easy, but I just cant get my head around it. I keep
: getting the million-page-loading problem.
:
: Any thoughts.
:
: :-)
:
: John
:
:
:
: 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Application security structure

2003-03-27 Thread Bryan F. Hogan
P.S. It should be:




Bryan F. Hogan
Director of Internet Development
Team Macromedia Volunteer
Macromedia Certified ColdFusion MX Developer
Digital Bay Media, Inc.
1-877-72DIGITAL


-Original Message-
From: John Stanley [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 1:40 PM
To: CF-Talk
Subject: Application security structure


Running CFMX

Okay, this is a very basic question for alot of you, but one that gives me
pause everytime it comes up.

I am developing a large application-level web site that will house several
smaller applications inside of it. I am using application and user-groups
defined roles for each user to limit their access to whatever I want them to
see. This all works great.

Here is my problem:
1. The appliation.cfm loads with every page request.
2. If there is no Session.Auth structure, it makes one.
3. The session scope for the application tag in my application.cfm is set to
timeout after 20 minutes.
4. If the browser has had no activity for the prescribed length of time, the
user on the next page request should be prompted to log in again.
5. I cannot figuire out how to redirect the user by using code on the
application.cfm to do this. Sort of like the following:









document.location="int.cfm"




This should be very easy, but I just cant get my head around it. I keep
getting the million-page-loading problem.

Any thoughts.

:-)

John




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: is email-adress wrong ?

2003-03-27 Thread mynews
You can use  

David Murphy
www.cfugcny.org

= = = Original message = = =

There is a UDF at cflib.org called IsEmail() I believe (if you're 
using CF 5
or newer).if not...there are tonnes of e-mial validating 
tagsgot o
MM DevEx

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com
- Original Message -
From: <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 27, 2003 10:29 AM
Subject: is email-adress wrong ?


> It might have been asked
> before, but is there a
> fast AND free custom-tag (CF-routine)
> to check if an email adress
> is syntactically wrong ?
> Uwe
>
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Application security structure

2003-03-27 Thread Bryan F. Hogan
You pretty much have it. Change this:



document.location="int.cfm"




Into this:



document.location="int.cfm"



Bryan F. Hogan
Director of Internet Development
Team Macromedia Volunteer
Macromedia Certified ColdFusion MX Developer
Digital Bay Media, Inc.
1-877-72DIGITAL


-Original Message-
From: John Stanley [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 1:40 PM
To: CF-Talk
Subject: Application security structure


Running CFMX

Okay, this is a very basic question for alot of you, but one that gives me
pause everytime it comes up.

I am developing a large application-level web site that will house several
smaller applications inside of it. I am using application and user-groups
defined roles for each user to limit their access to whatever I want them to
see. This all works great.

Here is my problem:
1. The appliation.cfm loads with every page request.
2. If there is no Session.Auth structure, it makes one.
3. The session scope for the application tag in my application.cfm is set to
timeout after 20 minutes.
4. If the browser has had no activity for the prescribed length of time, the
user on the next page request should be prompted to log in again.
5. I cannot figuire out how to redirect the user by using code on the
application.cfm to do this. Sort of like the following:









document.location="int.cfm"




This should be very easy, but I just cant get my head around it. I keep
getting the million-page-loading problem.

Any thoughts.

:-)

John




~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: MedSeek

2003-03-27 Thread Dowdell, Jason G
My apologies to Charlie for calling him "whiney" sp?
Thanks to all for ignoring this OT thread.

~Jason

-Original Message-
From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 1:25 PM
To: CF-Talk
Subject: RE: MedSeek


Quit your whining and "develop" some applications.
This is petty.
~Jason

-Original Message-
From: charlie griefer [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 12:03 PM
To: CF-Talk
Subject: Re: MedSeek


> If you want a fully qualified opinion from a developer's
> perspective you should contact James Ang.  He works there
> as a developer and will give you an unbiased opinion of
> the product.

Hmm...I don't know James, but i'd bet he'd be the first to freely admit that

precisely due to the fact that he *does* work there, his opinion is far from

unbiased :) 

charlie 


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Application security structure

2003-03-27 Thread John Stanley
Running CFMX

Okay, this is a very basic question for alot of you, but one that gives me
pause everytime it comes up.

I am developing a large application-level web site that will house several
smaller applications inside of it. I am using application and user-groups
defined roles for each user to limit their access to whatever I want them to
see. This all works great.

Here is my problem:
1. The appliation.cfm loads with every page request.
2. If there is no Session.Auth structure, it makes one.
3. The session scope for the application tag in my application.cfm is set to
timeout after 20 minutes.
4. If the browser has had no activity for the prescribed length of time, the
user on the next page request should be prompted to log in again.
5. I cannot figuire out how to redirect the user by using code on the
application.cfm to do this. Sort of like the following:









document.location="int.cfm"




This should be very easy, but I just cant get my head around it. I keep
getting the million-page-loading problem.

Any thoughts.

:-)

John



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: is email-adress wrong ?

2003-03-27 Thread Bryan Stevenson
There is a UDF at cflib.org called IsEmail() I believe (if you're using CF 5
or newer).if not...there are tonnes of e-mial validating tagsgot o
MM DevEx

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com
- Original Message -
From: <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 27, 2003 10:29 AM
Subject: is email-adress wrong ?


> It might have been asked
> before, but is there a
> fast AND free custom-tag (CF-routine)
> to check if an email adress
> is syntactically wrong ?
> Uwe
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: is email-adress wrong ?

2003-03-27 Thread Bryan F. Hogan
Yup http://www.cflib.org/udf.cfm?ID=216


Bryan F. Hogan
Director of Internet Development
Team Macromedia Volunteer
Macromedia Certified ColdFusion MX Developer
Digital Bay Media, Inc.
1-877-72DIGITAL


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 1:29 PM
To: CF-Talk
Subject: is email-adress wrong ?


It might have been asked
before, but is there a
fast AND free custom-tag (CF-routine)
to check if an email adress
is syntactically wrong ?
Uwe


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



is email-adress wrong ?

2003-03-27 Thread cf-talk
It might have been asked
before, but is there a
fast AND free custom-tag (CF-routine)
to check if an email adress
is syntactically wrong ?
Uwe

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: MedSeek

2003-03-27 Thread Dowdell, Jason G
My post was not to insult anyone's "status as a developer".
But merely to give an inside story from a developer that has
worked on the application in question.

~Jason

-Original Message-
From: Bruce Sorge [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 11:54 AM
To: CF-Talk
Subject: RE: MedSeek


Hmm. I thought that I was a developer. Lets see, I develope applications, I 
have the title of developer, I am paid as a developer, so I guess I am a 
developer. Oh yeah, and there were four other developers AND our manager in 
the presentation, and we are all of the same opinion.
Also, how is it that my opinion is biased? I do NOT work for MedSeek. I have

been evaluating CMS applications for a while now, so I think that my opinion

is qualified and unbiased.

This is all I have to say.


Bruce





From: "Dowdell, Jason G" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: CF-Talk <[EMAIL PROTECTED]>
Subject: RE: MedSeek
Date: Thu, 27 Mar 2003 08:36:36 -0500

If you want a fully qualified opinion from a developer's
perspective you should contact James Ang.  He works there
as a developer and will give you an unbiased opinion of
the product.

Email me offlist if you want his email addr.

~Jason

-Original Message-
From: Bruce Sorge [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 26, 2003 10:30 PM
To: CF-Talk
Subject: Re: MedSeek


They came and did a dog and pony show for us (Baylor Health Care System,
Dallas TX) of  their CMS. It is over 165K. Pretty pricy considering that you
can order Ektron's Empower CMS for under 20K, and that includes all the open
source code. In fact, Medseek is using Ektron's WYSIWYG editor for their
product. Understand though that we are just looking for a CMS that we can
incorporate into our portal.

HTH,

Bruce


- Original Message -
From: "Candace Cottrell" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, March 26, 2003 9:17 AM
Subject: MedSeek


 > Has anyone heard of or used MedSeek or MedSeek's sitemaker?
 >
 > If so, what comments do you have on it? We are trying to determine if
 > this is a better fit for us than CommonSpot.
 >
 > TIA
 >
 > Candace K. Cottrell, Web Developer
 > The Children's Medical Center
 > One Children's Plaza
 > Dayton, OH 45404
 > 937-641-4293
 > http://www.childrensdayton.org
 >
 >
 > [EMAIL PROTECTED]
 >
 >



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: MedSeek

2003-03-27 Thread Dowdell, Jason G
Quit your whining and "develop" some applications.
This is petty.
~Jason

-Original Message-
From: charlie griefer [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 12:03 PM
To: CF-Talk
Subject: Re: MedSeek


> If you want a fully qualified opinion from a developer's
> perspective you should contact James Ang.  He works there
> as a developer and will give you an unbiased opinion of
> the product.

Hmm...I don't know James, but i'd bet he'd be the first to freely admit that

precisely due to the fact that he *does* work there, his opinion is far from

unbiased :) 

charlie 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE:

2003-03-27 Thread Ian Skinner
If you haven't disabled it...triple clicking will select all text in a text
area.

One click puts cursor at moust pointer.

Two clicks selects entire word (white space to white space)

Three clicks selects entire content of text area box.

At least in IE 6 on win XP.

I do this all the time in a content management form I've worked up.

--
Ian Skinner
Web Programmer
BloodSource
Sacramento, CA


-Original Message-
From: FlashGuy [mailto:[EMAIL PROTECTED]
Sent: Wednesday, March 26, 2003 4:03 AM
To: CF-Talk
Subject: RE:  You should be able to use the mouse to select it.  Or hit CTRL-A to select
> all.  If you can't then something's screwy.  Do you perhaps have a JS
> function that's capturing mouse events for some other purpose?
> 
> ---
> Barney Boisvert, Senior Development Engineer
> AudienceCentral (formerly PIER System, Inc.)
> [EMAIL PROTECTED]
> voice : 360.671.8708 x12
> fax   : 360.647.5351
> 
> www.audiencecentral.com
> 
> > -Original Message-
> > From: FlashGuy [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, March 25, 2003 11:53 AM
> > To: CF-Talk
> > Subject: RE:  >
> >
> > Hmm...if I type in a large paragprah and I want to delete all of
> > it whats the easiest way? I can't hilight it with the curser. The
> > only way is to backspace all the text. I bit of a
> > pain...
> >
> >
> > On Tue, 25 Mar 2003 14:47:24 -0500, FlashGuy wrote:
> >
> > > OK...thanks
> > >
> > >
> > > On Tue, 25 Mar 2003 11:37:16 -0800, Barney Boisvert wrote:
> > >
> > > > An IFRAME is just like a normal frame, except that you can
> > put it inside a
> > > > normal page.  It's not a text input field.  TEXTAREA is the
> > beast you're
> > > > looking for.
> > > >
> > > >  > > > style="width:600px;height:80px;">Key in information
here...
> > > >
> > > > ---
> > > > Barney Boisvert, Senior Development Engineer
> > > > AudienceCentral (formerly PIER System, Inc.)
> > > > [EMAIL PROTECTED]
> > > > voice : 360.671.8708 x12
> > > > fax   : 360.647.5351
> > > >
> > > > www.audiencecentral.com
> > > >
> > > > > -Original Message-
> > > > > From: FlashGuy [mailto:[EMAIL PROTECTED]
> > > > > Sent: Tuesday, March 25, 2003 11:24 AM
> > > > > To: CF-Talk
> > > > > Subject: Re:  > > > >
> > > > >
> > > > > Hi,
> > > > >
> > > > > I'm trying to create a larger input area for the user to key in
> > > > > information. This is what I have using an  but I can't
> > > > > seem to be able to "input" any information with the box?
> > > > > Is there another way of doing this?
> > > > >
> > > > >   
> > > > > 
> > > > >   
> > > > >   > > > > height="80" marginwidth="8" marginheight="8" align="top"
> > > > > scrolling="yes" frameborder="0">
> > > > >Key in information here...
> > > > >
> > > > >   
> > > > > 
> > > > >   
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > ---
> > > > > Colonel Nathan R. Jessop
> > > > > Commanding Officer
> > > > > Marine Ground Forces
> > > > > Guatanamo Bay, Cuba
> > > > > ---
> > > > >
> > > > >
> > > > >
> > > > >
> > > >
> > >
> > 
> 

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: DB and

2003-03-27 Thread FlashGuy
I found the problem. Improperly placed  tag.

Dawg!


On Thu, 27 Mar 2003 13:19:49 -0500, Ben Doom wrote:

> It's almost certainly a browser issue.  What browser, version, and OS?
> 
> 
> --  Ben Doom
> Programmer & General Lackey
> Moonbow Software, Inc
> 
> : -Original Message-
> : From: FlashGuy [mailto:[EMAIL PROTECTED]
> : Sent: Thursday, March 27, 2003 12:43 PM
> : To: CF-Talk
> : Subject: DB and 
> :
> :
> : Hi,
> :
> : Why is this happening? I'm reading in fields from my database and
> : dumpping them to  tags so that I can edit the lines if
> : required and by clicking on a submit button saves
> : the revised data fields back to my DB.
> :
> : If I put the cursor in a field to edit and hit the backspace to
> : delete the characters it takes me to the previous screen. Why?
> :
> :
> : ---
> : Colonel Nathan R. Jessop
> : Commanding Officer
> : Marine Ground Forces
> : Guatanamo Bay, Cuba
> : ---
> :
> :
> :
> : 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Does anyone know where this error is generated?

2003-03-27 Thread Douglas.Knudsen
a custom error template is good... tag...but you should probably figure out 
why this is occuring.  What version of CF are you using?  Using Access DBs anywhere?  
Check your logs in the CFADMIN tool for long running requests.  Something is holding 
up cfserver threads somewhere it seems.

Doug

>-Original Message-
>From: Calvin Ward [mailto:[EMAIL PROTECTED]
>Sent: Thursday, March 27, 2003 1:06 PM
>To: CF-Talk
>Subject: Does anyone know where this error is generated?
>
>
>Ocassionally our CF service restarts, and when it does, IIS 
>generates the following message:
>
>==
>
>Error Occurred While Processing Request
>
>Request canceled or ignored by serverServer busy or unable to 
>fulfill request. The server is unable to fulfill your request 
>due to extremely high traffic or an unexpected internal error. 
>Please attempt your request again (if you are repeatedly 
>unsuccessful you should notify the site administrator). 
>(Location Code: 26)
>
>==
>
>What I'm looking for is a way to replace this message with one 
>of my own, or even a javascript redirect to somewhere else.
>
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: DB and

2003-03-27 Thread Ben Doom
It's almost certainly a browser issue.  What browser, version, and OS?


--  Ben Doom
Programmer & General Lackey
Moonbow Software, Inc

: -Original Message-
: From: FlashGuy [mailto:[EMAIL PROTECTED]
: Sent: Thursday, March 27, 2003 12:43 PM
: To: CF-Talk
: Subject: DB and 
:
:
: Hi,
:
: Why is this happening? I'm reading in fields from my database and
: dumpping them to  tags so that I can edit the lines if
: required and by clicking on a submit button saves
: the revised data fields back to my DB.
:
: If I put the cursor in a field to edit and hit the backspace to
: delete the characters it takes me to the previous screen. Why?
:
:
: ---
: Colonel Nathan R. Jessop
: Commanding Officer
: Marine Ground Forces
: Guatanamo Bay, Cuba
: ---
:
:
:
: 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Does anyone know where this error is generated?

2003-03-27 Thread Bryan Stevenson
Use CFTRY/CATCH wrapped around the whole page.  If that error happens then
display a nicer message.

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com
- Original Message -
From: "Calvin Ward" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 27, 2003 10:05 AM
Subject: Does anyone know where this error is generated?


> Ocassionally our CF service restarts, and when it does, IIS generates the
following message:
>
> ==
>
> Error Occurred While Processing Request
>
> Request canceled or ignored by serverServer busy or unable to fulfill
request. The server is unable to fulfill your request due to extremely high
traffic or an unexpected internal error. Please attempt your request again
(if you are repeatedly unsuccessful you should notify the site
administrator). (Location Code: 26)
>
> ==
>
> What I'm looking for is a way to replace this message with one of my own,
or even a javascript redirect to somewhere else.
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: OT: Flash detector

2003-03-27 Thread Bryan F. Hogan
The closest one that I have to found to perfect is:


Private i, x, MM_FlashControlVersion
On Error Resume Next
x = null
MM_FlashControlVersion = 0
var Flashmode
FlashMode = False
For i = 9 To 1 Step -1
Set x = CreateObject("ShockwaveFlash.ShockwaveFlash." & i)

MM_FlashControlInstalled = IsObject(x)

If MM_FlashControlInstalled Then
MM_FlashControlVersion = CStr(i)
Exit For
End If
Next
FlashMode = (MM_FlashControlVersion > 5)
If FlashMode = True Then
 document.write "flash object goes here"
Else
 document.write "You need to download flash"
End If



Bryan F. Hogan
Director of Internet Development
Team Macromedia Volunteer
Macromedia Certified ColdFusion MX Developer
Digital Bay Media, Inc.
1-877-72DIGITAL


-Original Message-
From: Jason Miller [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 27, 2003 1:01 PM
To: CF-Talk
Subject: Re: OT: Flash detector


typically moock.org has the best advanced scripts like that...
I think specifically -
http://www.moock.org/asdg/

actionscript-toolbox.com has very solid code samples too

but a simple google search will turn up lots.
jay miller

Phillip B wrote:
> A friend wanted me to see if anyone here had a bullet proof flash
detection script. Some thing that checks to see what version of flash they
have and then show an image or the flash file.
>
> Phillip B.
>
> www.LoungeRoyale.com
> www.FillWorks.com
>

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Does anyone know where this error is generated?

2003-03-27 Thread Calvin Ward
Ocassionally our CF service restarts, and when it does, IIS generates the following 
message:

==

Error Occurred While Processing Request

Request canceled or ignored by serverServer busy or unable to fulfill request. The 
server is unable to fulfill your request due to extremely high traffic or an 
unexpected internal error. Please attempt your request again (if you are repeatedly 
unsuccessful you should notify the site administrator). (Location Code: 26)

==

What I'm looking for is a way to replace this message with one of my own, or even a 
javascript redirect to somewhere else.



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



(SOT) Oops, I've broken it.

2003-03-27 Thread Jim Campbell
Hi all -

I'm following Macromedia's instructions to set up a secure FTP connection
with PuTTY and PLink in Dreamweaver MX.  Anyway, in the "Site Definition"
dialog, I set the SSH checkbox (Advanced Tab > Remote Info > Access: FTP >
Use SSH ...), and got a pop-up reminding me I had to download the
aforementioned tools.  I already had them in the appropriate directory, and
checked the "don't remind me again" box... now I can't check the SSH box
anymore.  Is this just a bug, or is there a config file someplace deep in
DWMX's Configuration folders that I can edit to let me check the SSH box?

Muchas Gracias,

- Jim

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: DB and

2003-03-27 Thread Bryan Stevenson
Some code and an explanation of what yer doing would be handy ;-)

Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder & Director
www.cfug-vancouverisland.com
- Original Message -
From: "FlashGuy" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, March 27, 2003 9:42 AM
Subject: DB and 


> Hi,
>
> Why is this happening? I'm reading in fields from my database and dumpping
them to  tags so that I can edit the lines if required and by
clicking on a submit button saves
> the revised data fields back to my DB.
>
> If I put the cursor in a field to edit and hit the backspace to delete the
characters it takes me to the previous screen. Why?
>
>
> ---
> Colonel Nathan R. Jessop
> Commanding Officer
> Marine Ground Forces
> Guatanamo Bay, Cuba
> ---
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: OT: Flash detector

2003-03-27 Thread Jason Miller
typically moock.org has the best advanced scripts like that...
I think specifically -
http://www.moock.org/asdg/

actionscript-toolbox.com has very solid code samples too

but a simple google search will turn up lots.
jay miller

Phillip B wrote:
> A friend wanted me to see if anyone here had a bullet proof flash detection script. 
> Some thing that checks to see what version of flash they have and then show an image 
> or the flash file.
> 
> Phillip B.
> 
> www.LoungeRoyale.com
> www.FillWorks.com
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: DB and

2003-03-27 Thread Tony Schreiber
ALT key stuck? (Oh, sorry, that's ALT-LeftArrow - in IE anyway...)

> If I put the cursor in a field to edit and hit the backspace to delete
> the characters it takes me to the previous screen. Why?
>
> ---
> Colonel Nathan R. Jessop
> Commanding Officer
> Marine Ground Forces
> Guatanamo Bay, Cuba
> ---
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



  1   2   >