OT: Perl

2003-09-16 Thread Cedric Villat
Ok, sort of off topic, but I'm trying to convert a perl program to CF. I'm
stuck on a line and have no idea what it's equivalent is in CF. The line is:

push @{ $children{$line{"p1"}}}, shortname($line{"node"});

I assume $children is an array, and $line is a single line of an input file.
What exactly does the $children{$line{"p1"}} mean? How are they indexing an
array based on a string? Any ideas?

Cedric


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: kinda ot: adobe acrobat

2003-09-16 Thread Tony Weeg
how about dropping the graphics on a word document, and then turning
that into a multi-page pdf file :)

thanks anyway

later.

tw

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 11:13 PM
To: CF-Talk
Subject: kinda ot: adobe acrobat


hi there.

well, this is for a coldfusion based site (hee does that count?)

ok, how would i take multiple psd's and put them into one pdf?
i have acrobat, i have the tools, just not the *know how*

thanks!

tony

tony weeg
[EMAIL PROTECTED]
www.revolutionwebdesign.com
rEvOlUtIoN wEb DeSiGn
410.334.6331 


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


kinda ot: adobe acrobat

2003-09-16 Thread Tony Weeg
hi there.

well, this is for a coldfusion based site (hee does that count?)

ok, how would i take multiple psd's and put them into one pdf?
i have acrobat, i have the tools, just not the *know how*

thanks!

tony

tony weeg
[EMAIL PROTECTED]
www.revolutionwebdesign.com
rEvOlUtIoN wEb DeSiGn
410.334.6331 

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: Try And Catch work differently then (was RE: Can I Throw within ???)

2003-09-16 Thread Andy Ousterhout
Ah.  Light goes on

Thanks for being patient with me on this.

Andy

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 9:11 PM
To: CF-Talk
Subject: RE: Try And Catch work differently then  (was
RE: Can I Throw within ???)


Yes they do. The cfscript version of the try is a custom named type. So
in your case excpt is the equiv to cfcatch you do excpt.message in
cfscript in cfcatch you use cfcatch.message

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 9:54 PM
To: CF-Talk
Subject: Try And Catch work differently then  (was RE:
Can I Throw within ???)

Barney,

Interestingly, as I noted in my previous email, TRY's and Catchs under
script operate differently.  So this is also a problem.  For example,
cut
and past the following and run:




CFCatch Exists -
#IsDefined("cfcatch")#




try {
test();
}
catch(Any excpt) {
writeoutput("CFCatch Exists -
#IsDefined("cfcatch")#");
}






Andy

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 8:49 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


You can't.

You have to define a throw() function elsewhere that wraps the CFTHROW
tag,
and include the definition before it's used.  But before you go down
this
road too far, I would be quite surprised if the next version of CF
doesn't
have a 'throw' keyword in CFSCRIPT.  I was utterly shocked when they
added
try {} catch () {} without it.

If 'Test' will always be inside a CFC, then you can add a throw() method
to
/WEB-INF/cftags/component.cfc so that all your CFCs would inherit the
method.  However, that would preclude you from distributing any
application
that uses it.

barneyb


> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 6:34 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Bryan,
>
> Here is sample code.  First, observe that the two catch blocks behave
> differently.  Second, can you replace the throw in Test with a script
> statement without changing the other code?
>
> 
>   
>   
>   CFCatch Exists -
#IsDefined("cfcatch")#
>   
> 
>
> 
>   try {
>   test();
>   }
>   catch(Any excpt) {
>   writeoutput("CFCatch Exists -
#IsDefined("cfcatch")#");
>   }
> 
>
> 
>   
> 
>
> Andy




~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Can I Throw within ???

2003-09-16 Thread Bryan F. Hogan
You can not throw a custom throw within the custom throw, you will have
to use cfthrow within your custom throw function

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 10:03 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Bryan,
This is not the same code.  All you are doing is returning from a
function
call.  You are NOT throwing an exception within test.

Andy


-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 9:03 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Here is the answer





#test(message="CFCatch Exists -
#IsDefined("cfcatch")#")#




try {
test1();
}
catch(Any excpt) {
writeoutput(test(message="CFCatch Exists -
#IsDefined("excpt")#"));
}








-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 9:34 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Bryan,

Here is sample code.  First, observe that the two catch blocks behave
differently.  Second, can you replace the throw in Test with a script
statement without changing the other code?




CFCatch Exists -
#IsDefined("cfcatch")#




try {
test();
}
catch(Any excpt) {
writeoutput("CFCatch Exists -
#IsDefined("cfcatch")#");
}






Andy
-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 8:18 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Ok, I need some more information. Please post an example of your cfc and
your cfml page

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 9:00 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Not what I am looking to do.  I wish for the method to stop processing
when
I throw the exception and for control to return to the Try/Catch blocks.






~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: Can I Throw within ???

2003-09-16 Thread Bryan F. Hogan
You _have_ to use cfthrow within test to throw within test.

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 10:03 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Bryan,
This is not the same code.  All you are doing is returning from a
function
call.  You are NOT throwing an exception within test.

Andy


-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 9:03 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Here is the answer





#test(message="CFCatch Exists -
#IsDefined("cfcatch")#")#




try {
test1();
}
catch(Any excpt) {
writeoutput(test(message="CFCatch Exists -
#IsDefined("excpt")#"));
}








-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 9:34 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Bryan,

Here is sample code.  First, observe that the two catch blocks behave
differently.  Second, can you replace the throw in Test with a script
statement without changing the other code?




CFCatch Exists -
#IsDefined("cfcatch")#




try {
test();
}
catch(Any excpt) {
writeoutput("CFCatch Exists -
#IsDefined("cfcatch")#");
}






Andy
-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 8:18 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Ok, I need some more information. Please post an example of your cfc and
your cfml page

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 9:00 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Not what I am looking to do.  I wish for the method to stop processing
when
I throw the exception and for control to return to the Try/Catch blocks.






~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Can I Throw within ???

2003-09-16 Thread Bryan F. Hogan
-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 10:03 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Bryan,
This is not the same code.  All you are doing is returning from a
function
call.  You are NOT throwing an exception within test.

Andy


-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 9:03 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Here is the answer





#test(message="CFCatch Exists -
#IsDefined("cfcatch")#")#




try {
test1();
}
catch(Any excpt) {
writeoutput(test(message="CFCatch Exists -
#IsDefined("excpt")#"));
}










~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Can I Throw within ???

2003-09-16 Thread Andy Ousterhout
Bryan,
This is not the same code.  All you are doing is returning from a function
call.  You are NOT throwing an exception within test.

Andy


-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 9:03 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Here is the answer





#test(message="CFCatch Exists -
#IsDefined("cfcatch")#")#




try {
test1();
}
catch(Any excpt) {
writeoutput(test(message="CFCatch Exists -
#IsDefined("excpt")#"));
}








-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 9:34 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Bryan,

Here is sample code.  First, observe that the two catch blocks behave
differently.  Second, can you replace the throw in Test with a script
statement without changing the other code?




CFCatch Exists -
#IsDefined("cfcatch")#




try {
test();
}
catch(Any excpt) {
writeoutput("CFCatch Exists -
#IsDefined("cfcatch")#");
}






Andy
-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 8:18 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Ok, I need some more information. Please post an example of your cfc and
your cfml page

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 9:00 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Not what I am looking to do.  I wish for the method to stop processing
when
I throw the exception and for control to return to the Try/Catch blocks.





~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Try And Catch work differently then (was RE: Can I Throw within ???)

2003-09-16 Thread Bryan F. Hogan
Yes they do. The cfscript version of the try is a custom named type. So
in your case excpt is the equiv to cfcatch you do excpt.message in
cfscript in cfcatch you use cfcatch.message

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 9:54 PM
To: CF-Talk
Subject: Try And Catch work differently then  (was RE:
Can I Throw within ???)

Barney,

Interestingly, as I noted in my previous email, TRY's and Catchs under
script operate differently.  So this is also a problem.  For example,
cut
and past the following and run:




CFCatch Exists -
#IsDefined("cfcatch")#




try {
test();
}
catch(Any excpt) {
writeoutput("CFCatch Exists -
#IsDefined("cfcatch")#");
}






Andy

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 8:49 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


You can't.

You have to define a throw() function elsewhere that wraps the CFTHROW
tag,
and include the definition before it's used.  But before you go down
this
road too far, I would be quite surprised if the next version of CF
doesn't
have a 'throw' keyword in CFSCRIPT.  I was utterly shocked when they
added
try {} catch () {} without it.

If 'Test' will always be inside a CFC, then you can add a throw() method
to
/WEB-INF/cftags/component.cfc so that all your CFCs would inherit the
method.  However, that would preclude you from distributing any
application
that uses it.

barneyb


> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 6:34 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Bryan,
>
> Here is sample code.  First, observe that the two catch blocks behave
> differently.  Second, can you replace the throw in Test with a script
> statement without changing the other code?
>
> 
>   
>   
>   CFCatch Exists -
#IsDefined("cfcatch")#
>   
> 
>
> 
>   try {
>   test();
>   }
>   catch(Any excpt) {
>   writeoutput("CFCatch Exists -
#IsDefined("cfcatch")#");
>   }
> 
>
> 
>   
> 
>
> Andy



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: CFC-based GPL web HTML editor

2003-09-16 Thread Jim Davis
> -Original Message-
> From: Adam Wayne Lehman [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 11:21 AM
> To: CF-Talk
> Subject: RE: CFC-based GPL web HTML editor
> 
> LOL. She's my new office mate!

She a gem and a half - treat her well!

We really lost something special when she left Boston.

Jim Davis


> Adam Wayne Lehman
> Web Systems Developer
> Johns Hopkins Bloomberg School of Public Health
> Distance Education Division
> 
> 
> -Original Message-
> From: Jim Davis [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 10:40 AM
> To: CF-Talk
> Subject: RE: CFC-based GPL web HTML editor
> 
> > -Original Message-
> > From: Adam Wayne Lehman [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 9:36 AM
> > To: CF-Talk
> > Subject: RE: CFC-based GPL web HTML editor
> >
> > Win IE5.5 required = unusable.
> 
> ...unless you have IE 5.5+  ;^)
> 
> But I agree in theory - however this would make lots of sense for a
> controlled environment (Intranet or Administration system) that
featured
> IE as a standard.
> 
> However it IS an open-source project: those interested may undertake
> their own project to test it on other platforms and make the needed
> adjustments.
> 
> (As an aside - a good friend of mine just got accepted at John Hopkins
> in a web position, not sure what department.  She starts in a week or
> so, Karin Horlbeck?  Know her?)
> 
> Jim Davis
> 
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: Date problem with CFMX and Oracle

2003-09-16 Thread Dave Carabetta
> I am trying to do an update to my DB:
> UPDATE BookInventory
> SET Status = 'Checked Out',
> CheckedTo = 'rayb',
> ChgDate = {ts '2003-09-16 16:08:22'}
> WHERE id = 2043
> This worked fine before, I updated my CFMX server to 6.01 and my JDBC
> drivers to 1.4, and am now getting column doesn't exist! Does anyone
> know why this no longer works?
>

I understand that this worked before MX and now it doesn't, but you're using
a completely different set of drivers (Oracle ODBC/Native depending on your
previous CF version vs. JDBC), each with their own set of quirks. As for the
exact reason you're having your problem, not sure, but I'd chalk it up to
the way the JDBC drivers pass dates as opposed to the ODBC/Native drivers.

I've been working with CF and Oracle since the early days of CF and learned
a long time ago to use Oracle's TO_DATE() function around all dates. Oracle
is very particular about date formatting, and this function is the closest
to a silver bullet that I've been able to find. Also, it looks like your
example is using the current date/time to insert. If that's the case, then
use sysdate instead of passing in an ODBC-format date.

Regards,
Dave.
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Tag for driving boxes from a statement?

2003-09-16 Thread Reed Powell
HI all - I've searched high and low for a tag to do the following; I was
sure that I'd seen one like it sometime in the past (on the old Allaire tag
gallery maybe), but am coming up blank.  Any leads?

We've seen the 2 & 3 SelectesRelated tags that have been around for a long
time and work great.  The selection from one SELECT populates the OPTIONs
for the second, and then maybe this cascades to the second one driving the
third SELECT.  And I've seen a variant where the top level is a RADIO button
selection that controls the first SELECT's OPTIONS, and so on.

What I need is one where the selection from the first SELECT's OPTION list
results in the population of one or more INPUT text boxes.  An example would
be to select a person's name from a list in the SELECT, and then the
default/preferred address fields get filled in so that the user can override
them if necessary, or just accept them and move on in the form.  If I can
find a tag to do this I'll be in hog heaven, because watching me code JS is
more like hog H!

Have I imagined seeing this around?

mucho thanks!
-reed


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Try And Catch work differently then (was RE: Can I Throw within ???)

2003-09-16 Thread Andy Ousterhout
Barney,

Interestingly, as I noted in my previous email, TRY's and Catchs under
script operate differently.  So this is also a problem.  For example, cut
and past the following and run:




CFCatch Exists - #IsDefined("cfcatch")#




try {
test();
}
catch(Any excpt) {
writeoutput("CFCatch Exists - #IsDefined("cfcatch")#");
}






Andy

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 8:49 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


You can't.

You have to define a throw() function elsewhere that wraps the CFTHROW tag,
and include the definition before it's used.  But before you go down this
road too far, I would be quite surprised if the next version of CF doesn't
have a 'throw' keyword in CFSCRIPT.  I was utterly shocked when they added
try {} catch () {} without it.

If 'Test' will always be inside a CFC, then you can add a throw() method to
/WEB-INF/cftags/component.cfc so that all your CFCs would inherit the
method.  However, that would preclude you from distributing any application
that uses it.

barneyb


> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 6:34 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Bryan,
>
> Here is sample code.  First, observe that the two catch blocks behave
> differently.  Second, can you replace the throw in Test with a script
> statement without changing the other code?
>
> 
>   
>   
>   CFCatch Exists - #IsDefined("cfcatch")#
>   
> 
>
> 
>   try {
>   test();
>   }
>   catch(Any excpt) {
>   writeoutput("CFCatch Exists - #IsDefined("cfcatch")#");
>   }
> 
>
> 
>   
> 
>
> Andy


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Can I Throw within ???

2003-09-16 Thread Bryan F. Hogan
Here is the answer





#test(message="CFCatch Exists -
#IsDefined("cfcatch")#")#




try {
test1();
}
catch(Any excpt) {
writeoutput(test(message="CFCatch Exists -
#IsDefined("excpt")#"));
}








-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 9:34 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Bryan,

Here is sample code.  First, observe that the two catch blocks behave
differently.  Second, can you replace the throw in Test with a script
statement without changing the other code?




CFCatch Exists -
#IsDefined("cfcatch")#




try {
test();
}
catch(Any excpt) {
writeoutput("CFCatch Exists -
#IsDefined("cfcatch")#");
}






Andy
-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 8:18 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Ok, I need some more information. Please post an example of your cfc and
your cfml page

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 9:00 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Not what I am looking to do.  I wish for the method to stop processing
when
I throw the exception and for control to return to the Try/Catch blocks.




~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Can I Throw within ???

2003-09-16 Thread Barney Boisvert
You can't.

You have to define a throw() function elsewhere that wraps the CFTHROW tag,
and include the definition before it's used.  But before you go down this
road too far, I would be quite surprised if the next version of CF doesn't
have a 'throw' keyword in CFSCRIPT.  I was utterly shocked when they added
try {} catch () {} without it.

If 'Test' will always be inside a CFC, then you can add a throw() method to
/WEB-INF/cftags/component.cfc so that all your CFCs would inherit the
method.  However, that would preclude you from distributing any application
that uses it.

barneyb


> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 6:34 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Bryan,
>
> Here is sample code.  First, observe that the two catch blocks behave
> differently.  Second, can you replace the throw in Test with a script
> statement without changing the other code?
>
> 
>   
>   
>   CFCatch Exists - #IsDefined("cfcatch")#
>   
> 
>
> 
>   try {
>   test();
>   }
>   catch(Any excpt) {
>   writeoutput("CFCatch Exists - #IsDefined("cfcatch")#");
>   }
> 
>
> 
>   
> 
>
> Andy

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Can I Throw within ???

2003-09-16 Thread Andy Ousterhout
Bryan,

Here is sample code.  First, observe that the two catch blocks behave
differently.  Second, can you replace the throw in Test with a script
statement without changing the other code?




CFCatch Exists - #IsDefined("cfcatch")#




try {
test();
}
catch(Any excpt) {
writeoutput("CFCatch Exists - #IsDefined("cfcatch")#");
}






Andy
-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 8:18 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Ok, I need some more information. Please post an example of your cfc and
your cfml page

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 9:00 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Not what I am looking to do.  I wish for the method to stop processing
when
I throw the exception and for control to return to the Try/Catch blocks.



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Can I Throw within ???

2003-09-16 Thread Bryan F. Hogan
Ok, I need some more information. Please post an example of your cfc and
your cfml page

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 9:00 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Not what I am looking to do.  I wish for the method to stop processing
when
I throw the exception and for control to return to the Try/Catch blocks.


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: Can I Throw within ???

2003-09-16 Thread Andy Ousterhout
Not what I am looking to do.  I wish for the method to stop processing when
I throw the exception and for control to return to the Try/Catch blocks.

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 8:02 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


If your trying to throw within your cfc use

Your.cfc



var throwExceptionReturn='';
throwExceptionReturn=Arguments.theString;




your.cfm


myCFC.CreateObject('component','your');
myCFC.throwException(message="hello");


-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 8:45 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Correct.  Before, I was trying to simplify the problem to what I thought
was
the root.

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:12 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


First do you have a cfc file that has your function throw() in it? And
now your trying to call that function from a cfml page correct? So you
have a total of two pages, a cfc and a cfm page?

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:58 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

OK, now I am totally confused.  Please walk me through this...

I  have a CFC called FOO with a single method called Throw Exception:

FOO:
Function ThrowException
   throw(message="Test one");


what object am I instantiating within foo?

If I don't use scripting, the equivilent  works perfectly.

Andy

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:01 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


You have to create a reference to the cfc before you can call a function
from the cfc in your cfml.

Example:

Test.cfm

myCFC=CreateObject('component','mycfcfilename');
myCFC.throw(message="I've been thrown to the wall, ouch!");


-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:46 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Huh?

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 6:45 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Andy you still have to init your library.

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:29 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Create a complete page with only the following:


   throw(message="Test one");


When you execute it, "Variable THROW is undefined" is thrown.

Andy


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 5:13 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


foo(x=y z=a) is not valid in cfml. The example in the link below does
not do that. You should instead do:

foo(y,a)

or

foo(x=y,z=a)




===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda

> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:03 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Raymond,
>
> CFFunction works, what doesn't is:
>
> 
>   throw(type="ValidationError" Message="This just wont work");
>   ...
>
> Andy
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:50 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Why not? Every OS running CFMX will support cffunction.
>
> ==
> ==
> ===
> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
> (www.mindseye.com)
> Member of Team Macromedia
> (http://www.macromedia.com/go/teammacromedia)
>
> Email:
> [EMAIL PROTECTED]
> Blog : www.camdenfamily.com/morpheus/blog
> Yahoo IM : morpheus
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> > -Original Message-
> > From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:40 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > This won't work on my system running under NT & MX.
> >
> > Andy
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:53 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > no need for wrapper...throw();
> >
> http://www.

RE: Can I Throw within ???

2003-09-16 Thread Bryan F. Hogan
If your trying to throw within your cfc use

Your.cfc



var throwExceptionReturn='';
throwExceptionReturn=Arguments.theString;




your.cfm


myCFC.CreateObject('component','your');
myCFC.throwException(message="hello");


-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 8:45 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Correct.  Before, I was trying to simplify the problem to what I thought
was
the root.

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:12 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


First do you have a cfc file that has your function throw() in it? And
now your trying to call that function from a cfml page correct? So you
have a total of two pages, a cfc and a cfm page?

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:58 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

OK, now I am totally confused.  Please walk me through this...

I  have a CFC called FOO with a single method called Throw Exception:

FOO:
Function ThrowException
   throw(message="Test one");


what object am I instantiating within foo?

If I don't use scripting, the equivilent  works perfectly.

Andy

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:01 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


You have to create a reference to the cfc before you can call a function
from the cfc in your cfml.

Example:

Test.cfm

myCFC=CreateObject('component','mycfcfilename');
myCFC.throw(message="I've been thrown to the wall, ouch!");


-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:46 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Huh?

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 6:45 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Andy you still have to init your library.

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:29 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Create a complete page with only the following:


   throw(message="Test one");


When you execute it, "Variable THROW is undefined" is thrown.

Andy


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 5:13 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


foo(x=y z=a) is not valid in cfml. The example in the link below does
not do that. You should instead do:

foo(y,a)

or

foo(x=y,z=a)




===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda

> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:03 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Raymond,
>
> CFFunction works, what doesn't is:
>
> 
>   throw(type="ValidationError" Message="This just wont work");
>   ...
>
> Andy
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:50 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Why not? Every OS running CFMX will support cffunction.
>
> ==
> ==
> ===
> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
> (www.mindseye.com)
> Member of Team Macromedia
> (http://www.macromedia.com/go/teammacromedia)
>
> Email:
> [EMAIL PROTECTED]
> Blog : www.camdenfamily.com/morpheus/blog
> Yahoo IM : morpheus
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> > -Original Message-
> > From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:40 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > This won't work on my system running under NT & MX.
> >
> > Andy
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:53 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > no need for wrapper...throw();
> >
> http://www.mail-archive.com/[EMAIL PROTECTED]/msg145231.html
> for an example
>
>
>
>
>








~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.c

RE: Can I Throw within ???

2003-09-16 Thread Andy Ousterhout
Correct.  Before, I was trying to simplify the problem to what I thought was
the root.

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:12 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


First do you have a cfc file that has your function throw() in it? And
now your trying to call that function from a cfml page correct? So you
have a total of two pages, a cfc and a cfm page?

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:58 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

OK, now I am totally confused.  Please walk me through this...

I  have a CFC called FOO with a single method called Throw Exception:

FOO:
Function ThrowException
   throw(message="Test one");


what object am I instantiating within foo?

If I don't use scripting, the equivilent  works perfectly.

Andy

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:01 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


You have to create a reference to the cfc before you can call a function
from the cfc in your cfml.

Example:

Test.cfm

myCFC=CreateObject('component','mycfcfilename');
myCFC.throw(message="I've been thrown to the wall, ouch!");


-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:46 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Huh?

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 6:45 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Andy you still have to init your library.

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:29 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Create a complete page with only the following:


   throw(message="Test one");


When you execute it, "Variable THROW is undefined" is thrown.

Andy


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 5:13 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


foo(x=y z=a) is not valid in cfml. The example in the link below does
not do that. You should instead do:

foo(y,a)

or

foo(x=y,z=a)




===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda

> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:03 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Raymond,
>
> CFFunction works, what doesn't is:
>
> 
>   throw(type="ValidationError" Message="This just wont work");
>   ...
>
> Andy
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:50 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Why not? Every OS running CFMX will support cffunction.
>
> ==
> ==
> ===
> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
> (www.mindseye.com)
> Member of Team Macromedia
> (http://www.macromedia.com/go/teammacromedia)
>
> Email:
> [EMAIL PROTECTED]
> Blog : www.camdenfamily.com/morpheus/blog
> Yahoo IM : morpheus
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> > -Original Message-
> > From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:40 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > This won't work on my system running under NT & MX.
> >
> > Andy
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:53 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > no need for wrapper...throw();
> >
> http://www.mail-archive.com/[EMAIL PROTECTED]/msg145231.html
> for an example
>
>
>
>
>







~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: SOT: SSL & Load Balanced CF

2003-09-16 Thread Calvin Ward
- Original Message - 
From: "Howard Fore" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 16, 2003 6:52 PM
Subject: Re: SOT: SSL & Load Balanced CF


> On Tuesday, Sep 16, 2003, at 15:29 US/Eastern, Justin Hansen wrote:
> > I'm starting a new project that will require SSL and I have a few 
> > questions...
> > If a user is on Server(A) and has and SSL session going what happens 
> > if Server(A) goes down?
> > When Server(B) picks up the user will the SSL be broken?
> I haven't tried this (but will Real Soon Now), but given that HTTP and 
> HTTPS are not persistent connection protocols, I think the SSL 
> browser-server handshake has to happen each time a HTTPS connection is 
> requested. So the important part would be that each server that could 
> answer the request has a valid certificate.
> 
> > Both servers have to have different keys right?
> Yes. You have different certs for the same domain on different boxes.



I'm missing some context here, can you elucidate?

Thanks,

Calvin
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: A Positive for DW2004

2003-09-16 Thread Calvin Ward
I've never found that to be the case. Opening and editing documents, yes CFS
was faster than DWMX, Find and Replace, I found the performance on par, or
in some cases better with DWMX.

I'm about to do some wide scale testing with DWMX 2004 as soon as our 25
licenses arrive, I'll let you know if it is better.

- Calvin

- Original Message - 
From: "Kevin Graeme" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 16, 2003 7:55 PM
Subject: Re: A Positive for DW2004


> I love the search/replace features of DWMX, but I disagree with this:
>
> > CFS has nothing on DWMX Find and Replace.
>
> CFS/Homesite+ is much, much, much faster at actually doing the
> search/replace. DWMX is painfully slow. I haven't yet tried 2004, but I
> haven't heard as a new feature that the search specifically is at least
10x
> faster.
>
> -Kevin
>
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re: CFC-based GPL web HTML editor

2003-09-16 Thread Matt Liotta
> Why? It seems like most of the editors already support a very common 
> set
> of features. Most users are not going to be impressed that a Java 
> editor
> functions the same way on all platforms. I'm sure a Mac user would
> prefer the editor to function like a native application/widget. I know
> part of the reason I dislike Macromedia applications is that they do 
> not
> feel or function like Windows applications. I pretty sure I'm note 
> alone
> on this.
>
The above perspective seems to apply to desktop applications and not 
web applications. I believe most users expect a web application to look 
and behave the same no matter what browser on what platform they are 
using.

> Because, instead of writing a relatively simple interface for each
> different platform, you'd have to write, test, debug, etc. all the
> functionality yourself. Unless I'm completely off base, I think it 
> would
> take much more time to write a feature rich, cross platform HTML 
> editor.
> I'd much rather just leverage the work done by other individuals. I
> don't have any desire to reinvent the wheel.
>
That all may be true, but it doesn't at all speak to why a Java editor 
would be more limited as you first stated.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.MontaraSoftware.com
(888) 408-0900 x901


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: Can I Throw within ???

2003-09-16 Thread Bryan F. Hogan
I should have read your email more closely. What you want is



var throwExceptionReturn='';
throwExceptionReturn="I've been thrown to the wall,
ouch!";




-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 8:12 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

First do you have a cfc file that has your function throw() in it? And
now your trying to call that function from a cfml page correct? So you
have a total of two pages, a cfc and a cfm page?

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 7:58 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

OK, now I am totally confused.  Please walk me through this...

I  have a CFC called FOO with a single method called Throw Exception:

FOO:
Function ThrowException
   throw(message="Test one");


what object am I instantiating within foo?

If I don't use scripting, the equivilent  works perfectly.

Andy

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:01 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


You have to create a reference to the cfc before you can call a function
from the cfc in your cfml.

Example:

Test.cfm

myCFC=CreateObject('component','mycfcfilename');
myCFC.throw(message="I've been thrown to the wall, ouch!");


-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:46 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Huh?

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 6:45 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Andy you still have to init your library.

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:29 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Create a complete page with only the following:


   throw(message="Test one");


When you execute it, "Variable THROW is undefined" is thrown.

Andy


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 5:13 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


foo(x=y z=a) is not valid in cfml. The example in the link below does
not do that. You should instead do:

foo(y,a)

or

foo(x=y,z=a)




===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda

> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:03 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Raymond,
>
> CFFunction works, what doesn't is:
>
> 
>   throw(type="ValidationError" Message="This just wont work");
>   ...
>
> Andy
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:50 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Why not? Every OS running CFMX will support cffunction.
>
> ==
> ==
> ===
> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
> (www.mindseye.com)
> Member of Team Macromedia
> (http://www.macromedia.com/go/teammacromedia)
>
> Email:
> [EMAIL PROTECTED]
> Blog : www.camdenfamily.com/morpheus/blog
> Yahoo IM : morpheus
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> > -Original Message-
> > From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:40 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > This won't work on my system running under NT & MX.
> >
> > Andy
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:53 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > no need for wrapper...throw();
> >
> http://www.mail-archive.com/[EMAIL PROTECTED]/msg145231.html
> for an example
>
>
>
>
>







~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Date problem with CFMX and Oracle

2003-09-16 Thread Casey C Cook
Elements plural. Something like:

UPDATE myschema.BookInventory 
SET myschema.Status = 'Checked Out', 
myschema.CheckedTo = 'rayb', 
myschema.ChgDate = {ts '2003-09-16 16:08:22'} 
WHERE myschema.id = 2043

CC

This is a PRIVATE message. If you are not the intended recipient, please 
delete without copying and kindly advise us by e-mail of the mistake in 
delivery. NOTE: Regardless of content, this e-mail shall not operate to 
bind CSC to any order or other contract unless pursuant to explicit 
written agreement or government initiative expressly permitting the use of 
e-mail for such purpose.






Casey C Cook/ASD/CSC
@CSC
09/16/2003 04:56 PM
Please respond to cf-talk

 
To: CF-Talk <[EMAIL PROTECTED]>
cc: 
Subject:RE: Date problem with CFMX and Oracle


Try prefixing your query element with the schema name.

CC


This is a PRIVATE message. If you are not the intended recipient, please 
delete without copying and kindly advise us by e-mail of the mistake in 
delivery. NOTE: Regardless of content, this e-mail shall not operate to 
bind CSC to any order or other contract unless pursuant to explicit 
written agreement or government initiative expressly permitting the use of 

e-mail for such purpose.






"Ray Bujarski" 
09/16/2003 04:19 PM
Please respond to cf-talk

 
To: CF-Talk <[EMAIL PROTECTED]>
cc: 
Subject:RE: Date problem with CFMX and Oracle


As mentioned before, I never had a problem b4 I upgraded. But also, my
editor doesn't highlight it as it does other reserved words.

-Original Message-
From: Angel Stewart [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 4:17 PM
To: CF-Talk
Subject: RE: Date problem with CFMX and Oracle


Mm..is Status a reserved word?

-Gel


-Original Message-
From: Ray Bujarski [mailto:[EMAIL PROTECTED] 

I am trying to do an update to my DB:
UPDATE BookInventory 
SET Status = 'Checked Out', 
CheckedTo = 'rayb', 
ChgDate = {ts '2003-09-16 16:08:22'} 
WHERE id = 2043 
This worked fine before, I updated my CFMX server to 6.01 and my JDBC
drivers to 1.4, and am now getting column doesn't exist! Does anyone
know why this no longer works?





~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Can I Throw within ???

2003-09-16 Thread Bryan F. Hogan
First do you have a cfc file that has your function throw() in it? And
now your trying to call that function from a cfml page correct? So you
have a total of two pages, a cfc and a cfm page?

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 7:58 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

OK, now I am totally confused.  Please walk me through this...

I  have a CFC called FOO with a single method called Throw Exception:

FOO:
Function ThrowException
   throw(message="Test one");


what object am I instantiating within foo?

If I don't use scripting, the equivilent  works perfectly.

Andy

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:01 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


You have to create a reference to the cfc before you can call a function
from the cfc in your cfml.

Example:

Test.cfm

myCFC=CreateObject('component','mycfcfilename');
myCFC.throw(message="I've been thrown to the wall, ouch!");


-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:46 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Huh?

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 6:45 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Andy you still have to init your library.

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:29 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Create a complete page with only the following:


   throw(message="Test one");


When you execute it, "Variable THROW is undefined" is thrown.

Andy


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 5:13 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


foo(x=y z=a) is not valid in cfml. The example in the link below does
not do that. You should instead do:

foo(y,a)

or

foo(x=y,z=a)




===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda

> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:03 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Raymond,
>
> CFFunction works, what doesn't is:
>
> 
>   throw(type="ValidationError" Message="This just wont work");
>   ...
>
> Andy
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:50 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Why not? Every OS running CFMX will support cffunction.
>
> ==
> ==
> ===
> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
> (www.mindseye.com)
> Member of Team Macromedia
> (http://www.macromedia.com/go/teammacromedia)
>
> Email:
> [EMAIL PROTECTED]
> Blog : www.camdenfamily.com/morpheus/blog
> Yahoo IM : morpheus
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> > -Original Message-
> > From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:40 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > This won't work on my system running under NT & MX.
> >
> > Andy
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:53 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > no need for wrapper...throw();
> >
> http://www.mail-archive.com/[EMAIL PROTECTED]/msg145231.html
> for an example
>
>
>
>
>






~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Can I Throw within ???

2003-09-16 Thread Andy Ousterhout
OK, now I am totally confused.  Please walk me through this...

I  have a CFC called FOO with a single method called Throw Exception:

FOO:
Function ThrowException
   throw(message="Test one");


what object am I instantiating within foo?

If I don't use scripting, the equivilent  works perfectly.

Andy

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:01 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


You have to create a reference to the cfc before you can call a function
from the cfc in your cfml.

Example:

Test.cfm

myCFC=CreateObject('component','mycfcfilename');
myCFC.throw(message="I've been thrown to the wall, ouch!");


-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:46 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Huh?

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 6:45 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Andy you still have to init your library.

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:29 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Create a complete page with only the following:


   throw(message="Test one");


When you execute it, "Variable THROW is undefined" is thrown.

Andy


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 5:13 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


foo(x=y z=a) is not valid in cfml. The example in the link below does
not do that. You should instead do:

foo(y,a)

or

foo(x=y,z=a)




===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda

> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:03 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Raymond,
>
> CFFunction works, what doesn't is:
>
> 
>   throw(type="ValidationError" Message="This just wont work");
>   ...
>
> Andy
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:50 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Why not? Every OS running CFMX will support cffunction.
>
> ==
> ==
> ===
> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
> (www.mindseye.com)
> Member of Team Macromedia
> (http://www.macromedia.com/go/teammacromedia)
>
> Email:
> [EMAIL PROTECTED]
> Blog : www.camdenfamily.com/morpheus/blog
> Yahoo IM : morpheus
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> > -Original Message-
> > From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:40 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > This won't work on my system running under NT & MX.
> >
> > Andy
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:53 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > no need for wrapper...throw();
> >
> http://www.mail-archive.com/[EMAIL PROTECTED]/msg145231.html
> for an example
>
>
>
>
>





~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: Date problem with CFMX and Oracle

2003-09-16 Thread Casey C Cook
Try prefixing your query element with the schema name.

CC


This is a PRIVATE message. If you are not the intended recipient, please 
delete without copying and kindly advise us by e-mail of the mistake in 
delivery. NOTE: Regardless of content, this e-mail shall not operate to 
bind CSC to any order or other contract unless pursuant to explicit 
written agreement or government initiative expressly permitting the use of 
e-mail for such purpose.






"Ray Bujarski" 
09/16/2003 04:19 PM
Please respond to cf-talk

 
To: CF-Talk <[EMAIL PROTECTED]>
cc: 
Subject:RE: Date problem with CFMX and Oracle


As mentioned before, I never had a problem b4 I upgraded. But also, my
editor doesn't highlight it as it does other reserved words.

-Original Message-
From: Angel Stewart [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 4:17 PM
To: CF-Talk
Subject: RE: Date problem with CFMX and Oracle


Mm..is Status a reserved word?

-Gel


-Original Message-
From: Ray Bujarski [mailto:[EMAIL PROTECTED] 

I am trying to do an update to my DB:
UPDATE BookInventory 
SET Status = 'Checked Out', 
CheckedTo = 'rayb', 
ChgDate = {ts '2003-09-16 16:08:22'} 
WHERE id = 2043 
This worked fine before, I updated my CFMX server to 6.01 and my JDBC
drivers to 1.4, and am now getting column doesn't exist! Does anyone
know why this no longer works?




~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: A Positive for DW2004

2003-09-16 Thread Kevin Graeme
I love the search/replace features of DWMX, but I disagree with this:

> CFS has nothing on DWMX Find and Replace.

CFS/Homesite+ is much, much, much faster at actually doing the
search/replace. DWMX is painfully slow. I haven't yet tried 2004, but I
haven't heard as a new feature that the search specifically is at least 10x
faster.

-Kevin

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re: CFMX and oddness in directory names

2003-09-16 Thread Calvin Ward
Collin,

Don't worry about /jobs, it only occured on the one site, while there were
no apparent reasons for it, we did do a reinstall, and the issue didn't
re-occur.

Thanks again for letting me know about the services mapping!

Is there a tech note on that I missed?

Thanks,
Calvin
- Original Message - 
From: "Collin Tobin" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, September 15, 2003 8:16 PM
Subject: RE: CFMX and oddness in directory names


> Calvin-
>
> I will get back to you on "/jobs", but it doesn't immediately ring a bell.
>
>
> Collin Tobin
> CFMX QA Engineer
> Macromedia®
> What the web can be.(tm)
>
> Announcing Macromedia DevNet Subscriptions
> Maximize your power with our new premium software subscription for
Macromedia developers
> Find out more: 
>
>
>
>
>
> -Original Message-
> From: Calvin Ward [mailto:[EMAIL PROTECTED]
> Sent: Monday, September 15, 2003 5:01 PM
> To: CF-Talk
> Subject: Re: CFMX and oddness in directory names
>
>
> Collin,
>
> Thanks a bunch! What about jobs, should that be an issue?
>
> - Calvin
>
> - Original Message - 
> From: "Collin Tobin" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Monday, September 15, 2003 4:52 PM
> Subject: RE: CFMX and oddness in directory names
>
>
> > Calvin-
> >
> > (from Tom Jordahl, CFMX Engineer):
> >
> > The /services mapping can safely be removed from the JRun configuration.
> This is a JRun default configuration to make using web services simpler.
> >
> > Since JRun is fully configurable, users can always choose to change or
> remove these default mappings.
> >
> >
> > Collin Tobin
> > CFMX QA Engineer
> > Macromedia®
> > What the web can be.(tm)
> >
> > Announcing Macromedia DevNet Subscriptions
> > Maximize your power with our new premium software subscription for
> Macromedia developers
> > Find out more: 
> >
> >
> >
> >
> >
> > -Original Message-
> > From: Calvin Ward [mailto:[EMAIL PROTECTED]
> > Sent: Monday, September 15, 2003 4:45 PM
> > To: CF-Talk
> > Subject: Re: CFMX and oddness in directory names
> >
> >
> > Still haven't found any tech notes on this issue or anything related,
I'm
> > beginning to wonder if this is just the machines I'm working on.
> >
> > If anyone can take a gander and see if this exists on their machines as
> > well? In both cases I've got 6.1 going on a Win2k box.
> >
> > If you have a CFMX for J2EE on JRun,
> > create a directory:
> > :\\services
> > create two files in this directory with any content:
> > test.htm
> > test.cfm
> > See if they will run successfully
> >
> > If you have a CFMX standard install
> > create a directory:
> > :\\jobs
> > create two files in this directory with any content:
> > test.htm
> > test.cfm
> > See if they will run successfully
> >
> > It feels like it is a reserved word issue...
> >
> > Much appreciated if anyone can give this a whirl and see if the issues
> exist
> > for you as well,
> >
> > Thanks,
> > Calvin
> >
> > - Original Message - 
> > From: "Calvin Ward" <[EMAIL PROTECTED]>
> > To: "CF-Talk" <[EMAIL PROTECTED]>
> > Sent: Monday, September 15, 2003 1:27 PM
> > Subject: CFMX and oddness in directory names
> >
> >
> > > Has anyone experienced any issues with CFMX and certain directory
names?
> > >
> > > On CFMX for J2EE on JRun, no files under a directory named services
will
> > run (.cfm or.htm)
> > >
> > > On CFMX standard install, .cfm files will not run under a directory
> named
> > jobs, but .htm will
> > >
> > > Very odd...
> > >
> > > - Calvin
> > >
> >
> >
>
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Can I Throw within ???

2003-09-16 Thread Bryan F. Hogan
You have to create a reference to the cfc before you can call a function
from the cfc in your cfml.

Example:

Test.cfm

myCFC=CreateObject('component','mycfcfilename');
myCFC.throw(message="I've been thrown to the wall, ouch!");


-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 7:46 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Huh?

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 6:45 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Andy you still have to init your library.

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:29 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Create a complete page with only the following:


   throw(message="Test one");


When you execute it, "Variable THROW is undefined" is thrown.

Andy


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 5:13 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


foo(x=y z=a) is not valid in cfml. The example in the link below does
not do that. You should instead do:

foo(y,a)

or

foo(x=y,z=a)




===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda

> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:03 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Raymond,
>
> CFFunction works, what doesn't is:
>
> 
>   throw(type="ValidationError" Message="This just wont work");
>   ...
>
> Andy
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:50 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Why not? Every OS running CFMX will support cffunction.
>
> ==
> ==
> ===
> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
> (www.mindseye.com)
> Member of Team Macromedia
> (http://www.macromedia.com/go/teammacromedia)
>
> Email:
> [EMAIL PROTECTED]
> Blog : www.camdenfamily.com/morpheus/blog
> Yahoo IM : morpheus
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> > -Original Message-
> > From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:40 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > This won't work on my system running under NT & MX.
> >
> > Andy
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:53 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > no need for wrapper...throw();
> >
> http://www.mail-archive.com/[EMAIL PROTECTED]/msg145231.html
> for an example
>
>
>
>
>




~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


Re: stupid question (DWMX)

2003-09-16 Thread Calvin Ward
I'd like to point out that if for some reason DWMX doesn't appear to work
when you click the Tag Selector, switch to Design View and then switch back
to Code View and it should work again.

I believe this functionality was originally designed for Design View, which
is why there's occasionally a disconnect in Code View.

- Calvin

- Original Message - 
From: "Mike Kear" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 16, 2003 5:53 PM
Subject: RE: stupid question (DWMX)


> That functionality is there in Dreamweaver, but not as CTRL Click.  It's
> been there since I first saw DW.
>
> For example if you click somewhere inside a  bottom of the screen, just above the properties inspector the following:
>
> 
>
> Click on one of them and it will select that whole tag.  Want to find the
> beginning and end of the ?  Click on  and it'll select the whole
row
> in both design and code view.
>
> I'd like to have CTRL Click too, because I use that a lot in CFStudio, but
I
> think I can get used to doing it this way.
>
> I use it a lot when I'm looking at other peoples' code, that has heaps of
> nested tables. (I HATE nested tables) and trying to figure out where
the
> different cells start and end, and whether they're in the inner table, the
> next one out or the one after that isn't always easy.  Just click on the
tag
> at the bottom of the screen and you can select the whole content of that
> tag, including the opening and closing tags.
>
>
>
> Cheers,
> Michael Kear
> Windsor, NSW, Australia
> AFP Webworks.
>
>
>
> -Original Message-
> From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, 17 September 2003 6:56 AM
> To: CF-Talk
> Subject: Re: stupid question (DWMX)
>
> > Speaking of stupid DWMX tricks. In studio ctrl click (I think that's
what
> it
> > was) selected an entire tag pair. I know in DW I have the little list at
> the
> > bottom but is there anything like ctrl click?
>
> No, it's not there, please cast your vote:
>
> http://www.macromedia.com/support/email/wishform/
>
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re: CFC-based GPL web HTML editor

2003-09-16 Thread Claude Schneegans
>>part of the reason I dislike Macromedia applications is that they do not
feel or function like Windows applications. I pretty sure I'm note alone
on this.

You sure are not. This is also one of the reason I gave up with Netscape when they
spent (lost) one year just to rewrite the interface so it "doesn't look like Windows"
I'm sorry, but it is MY Windows, I paid fot it and I don't like programs which fill my 
disk with
all it takes to have a different interface, even if they are free. What a loss of time!



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Can I Throw within ???

2003-09-16 Thread Andy Ousterhout
Huh?

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 6:45 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Andy you still have to init your library.

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 7:29 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Create a complete page with only the following:


   throw(message="Test one");


When you execute it, "Variable THROW is undefined" is thrown.

Andy


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 5:13 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


foo(x=y z=a) is not valid in cfml. The example in the link below does
not do that. You should instead do:

foo(y,a)

or

foo(x=y,z=a)




===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda

> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:03 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Raymond,
>
> CFFunction works, what doesn't is:
>
> 
>   throw(type="ValidationError" Message="This just wont work");
>   ...
>
> Andy
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:50 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Why not? Every OS running CFMX will support cffunction.
>
> ==
> ==
> ===
> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
> (www.mindseye.com)
> Member of Team Macromedia
> (http://www.macromedia.com/go/teammacromedia)
>
> Email:
> [EMAIL PROTECTED]
> Blog : www.camdenfamily.com/morpheus/blog
> Yahoo IM : morpheus
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> > -Original Message-
> > From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:40 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > This won't work on my system running under NT & MX.
> >
> > Andy
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:53 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > no need for wrapper...throw();
> >
> http://www.mail-archive.com/[EMAIL PROTECTED]/msg145231.html
> for an example
>
>
>
>
>



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re: A Positive for DW2004

2003-09-16 Thread Calvin Ward
Massimo is completely correct.

For example:

In DWMX, you can rather easily search for all occurances of an img tag
without an alt attribute that exists within an a tag with an href attribute.
You can also search for all alt tags without an alt attribute not inside a
tags and add a blank alt attribute.

Some things I didn't see mentioned, you can also save any search criteria,
and share it with other developers, and new in 2004 you can Find and Replace
within selected text and within open documents (like CFS), and in MX and
2004, you can Find and Replace on selected files or in a site, with
unnecessary directories cloaked (unlike CFS).

CFS has nothing on DWMX Find and Replace.

- Calvin

- Original Message - 
From: "Massimo Foti" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 16, 2003 9:42 AM
Subject: Re: A Positive for DW2004


> > Which is what CF Studio had all along.
>
> Sure, but there are features inside DW's Find & Replace that are totally
> unnmatched elsewhere, not only in CF Studio, but in any similar tool on
the
> market (they had been there since many releases).
>
> To get a feeling for what I am talking about, try:
>
> Search:  Specific Tag
>
> or:
>
> Search:  Text (Advanced)
>
> The drop down labelled "Search:" is the key to discover the real power of
> DW's Find & Replace; give it a try and you will see that it simply leaves
CF
> Studio in the dust.
> Even the RegExp support, driven by the JavaScript 1.5 engine is much
better.
>
> Don't get me wrong, I love CF Studio and I am upset as many others since I
> don't consider DW 2004 a proper replacement, but we also have to give
> credits where credits are due.
>
> 
> Massimo Foti
> http://www.massimocorner.com
> 
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: Can I Throw within ???

2003-09-16 Thread Bryan F. Hogan
Andy you still have to init your library.

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 7:29 PM
To: CF-Talk
Subject: RE: Can I Throw within ???

Create a complete page with only the following:


   throw(message="Test one");


When you execute it, "Variable THROW is undefined" is thrown.

Andy


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 5:13 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


foo(x=y z=a) is not valid in cfml. The example in the link below does
not do that. You should instead do:

foo(y,a)

or

foo(x=y,z=a)




===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda

> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:03 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Raymond,
>
> CFFunction works, what doesn't is:
>
> 
>   throw(type="ValidationError" Message="This just wont work");
>   ...
>
> Andy
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:50 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Why not? Every OS running CFMX will support cffunction.
>
> ==
> ==
> ===
> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
> (www.mindseye.com)
> Member of Team Macromedia
> (http://www.macromedia.com/go/teammacromedia)
>
> Email:
> [EMAIL PROTECTED]
> Blog : www.camdenfamily.com/morpheus/blog
> Yahoo IM : morpheus
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> > -Original Message-
> > From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:40 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > This won't work on my system running under NT & MX.
> >
> > Andy
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:53 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > no need for wrapper...throw();
> >
> http://www.mail-archive.com/[EMAIL PROTECTED]/msg145231.html
> for an example
>
>
>
>
>


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Can I Throw within ???

2003-09-16 Thread Andy Ousterhout
Create a complete page with only the following:


   throw(message="Test one");


When you execute it, "Variable THROW is undefined" is thrown.

Andy


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 5:13 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


foo(x=y z=a) is not valid in cfml. The example in the link below does
not do that. You should instead do:

foo(y,a)

or

foo(x=y,z=a)




===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda

> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:03 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Raymond,
>
> CFFunction works, what doesn't is:
>
> 
>   throw(type="ValidationError" Message="This just wont work");
>   ...
>
> Andy
>
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:50 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> Why not? Every OS running CFMX will support cffunction.
>
> ==
> ==
> ===
> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
> (www.mindseye.com)
> Member of Team Macromedia
> (http://www.macromedia.com/go/teammacromedia)
>
> Email:
> [EMAIL PROTECTED]
> Blog : www.camdenfamily.com/morpheus/blog
> Yahoo IM : morpheus
>
> "My ally is the Force, and a powerful ally it is." - Yoda
>
> > -Original Message-
> > From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:40 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > This won't work on my system running under NT & MX.
> >
> > Andy
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:53 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > no need for wrapper...throw();
> >
> http://www.mail-archive.com/[EMAIL PROTECTED]/msg145231.html
> for an example
>
>
>
>
>

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Date problem with CFMX and Oracle

2003-09-16 Thread Ray Bujarski
As mentioned before, I never had a problem b4 I upgraded. But also, my
editor doesn't highlight it as it does other reserved words.

-Original Message-
From: Angel Stewart [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 4:17 PM
To: CF-Talk
Subject: RE: Date problem with CFMX and Oracle


Mm..is Status a reserved word?

-Gel


-Original Message-
From: Ray Bujarski [mailto:[EMAIL PROTECTED] 

I am trying to do an update to my DB:
UPDATE BookInventory 
SET Status = 'Checked Out', 
CheckedTo = 'rayb', 
ChgDate = {ts '2003-09-16 16:08:22'} 
WHERE id = 2043 
This worked fine before, I updated my CFMX server to 6.01 and my JDBC
drivers to 1.4, and am now getting column doesn't exist! Does anyone
know why this no longer works?



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: CFC-based GPL web HTML editor

2003-09-16 Thread Benjamin S. Rogers
> Actually, no. Mac IE stopped at 5.2.3 - it did not reach 5.5.

The version numbers are not comparable cross-platform. Just as an
example, Internet Explorer 6 for the PC uses the Mac Internet Explorer
rendering engine. This, of course, does not mean that Mac Internet
Explorer 5.x is equivalent to the PC Internet Explorer version 6.x
(which did come out later). However, they are a much closer pedigree
than the 5.x versions as far as HTML rendering goes.

Benjamin S. Rogers
http://www.c4.net/
v.508.240.0051
f.508.240.0057

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: Date problem with CFMX and Oracle

2003-09-16 Thread Angel Stewart
Mm..is Status a reserved word?

-Gel


-Original Message-
From: Ray Bujarski [mailto:[EMAIL PROTECTED] 

I am trying to do an update to my DB:
UPDATE BookInventory 
SET Status = 'Checked Out', 
CheckedTo = 'rayb', 
ChgDate = {ts '2003-09-16 16:08:22'} 
WHERE id = 2043 
This worked fine before, I updated my CFMX server to 6.01 and my JDBC
drivers to 1.4, and am now getting column doesn't exist! Does anyone
know why this no longer works?


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


Date problem with CFMX and Oracle

2003-09-16 Thread Ray Bujarski
I am trying to do an update to my DB:
UPDATE BookInventory 
SET Status = 'Checked Out', 
CheckedTo = 'rayb', 
ChgDate = {ts '2003-09-16 16:08:22'} 
WHERE id = 2043 
This worked fine before, I updated my CFMX server to 6.01 and my JDBC
drivers to 1.4, and am now getting column doesn't exist! Does anyone
know why this no longer works?

Ray Bujarski
Direct 858-845-7669
Pager  858-636-9900 

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: CFC-based GPL web HTML editor

2003-09-16 Thread Benjamin S. Rogers
> First, if you wrap your editor around native functionality then the 
> capabilities and behavior of the editor will vary by platform, which
is 
> certainly no good.

Why? It seems like most of the editors already support a very common set
of features. Most users are not going to be impressed that a Java editor
functions the same way on all platforms. I'm sure a Mac user would
prefer the editor to function like a native application/widget. I know
part of the reason I dislike Macromedia applications is that they do not
feel or function like Windows applications. I pretty sure I'm note alone
on this.

> Second, why would a Java solution be limited in any 
> way as compared to a native solution?

Because, instead of writing a relatively simple interface for each
different platform, you'd have to write, test, debug, etc. all the
functionality yourself. Unless I'm completely off base, I think it would
take much more time to write a feature rich, cross platform HTML editor.
I'd much rather just leverage the work done by other individuals. I
don't have any desire to reinvent the wheel.

Benjamin S. Rogers
http://www.c4.net/
v.508.240.0051
f.508.240.0057

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: CFC-based GPL web HTML editor

2003-09-16 Thread Sean A Corfield
I was going to stay out of this but...

On Tuesday, Sep 16, 2003, at 15:05 US/Pacific, Claude Schneegans wrote:
>>> That would mean that everyone who uses Windows using IE 5.5+,
> No, because you also have all those using IE on Macs ;-)

Actually, no. Mac IE stopped at 5.2.3 - it did not reach 5.5. And many, 
many Mac users have long since abandoned IE for a more feature-rich 
browser such as Safari, Mozilla, Opera...

Visitors to my blog (86% Win, 13% Mac, 1% Linux):
64% IE 6.x
 6% IE 5.x __ 70% IE 5.x+
 1% Konqueror 3.x
29% Netscape 5.x

Vistors to my site in general (85% Win, 3% Mac, 12% Other/Linux):
72% IE 6.x
 8% IE 5.x __ 80% IE 5.x+
 1% Konqueror 3.x
 1% Konqueror 2.x
 1% Netscape 6.x
12% Netscape 5.x
 1% Netscape 4.x
 4% Netscape 3.x

As you can see, not even all Windows users are running IE - only about 
15% of my audience is non-Windows, yet 20-30% of my audience is non-IE.

Note: certain 'fringe' browsers are detected as Netscape / Konqueror 
when they aren't.

Sean A Corfield -- http://www.corfield.org/blog/

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: SOT: SSL & Load Balanced CF

2003-09-16 Thread Barney Boisvert
HTTPS is quasi-persistant, becuase public-key encrypting is really slow.
The first handshake uses public-key and agrees upon a per-session 'normal'
key (same for encrypt and decrypt).  The transmissino of that key is secured
by the public key encryptiong.  Once that's established, that 'normal' key
is used for encrypting all data, because it's a LOT faster.

barneyb

> -Original Message-
> From: Howard Fore [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 3:52 PM
> To: CF-Talk
> Subject: Re: SOT: SSL & Load Balanced CF
>
>
> On Tuesday, Sep 16, 2003, at 15:29 US/Eastern, Justin Hansen wrote:
> > I'm starting a new project that will require SSL and I have a few
> > questions...
> > If a user is on Server(A) and has and SSL session going what happens
> > if Server(A) goes down?
> > When Server(B) picks up the user will the SSL be broken?
> I haven't tried this (but will Real Soon Now), but given that HTTP and
> HTTPS are not persistent connection protocols, I think the SSL
> browser-server handshake has to happen each time a HTTPS connection is
> requested. So the important part would be that each server that could
> answer the request has a valid certificate.
>
> > Both servers have to have different keys right?
> Yes. You have different certs for the same domain on different boxes.
>
> > Wouldn't that break the users session? What would happen user?
> I don't think (though I could be wrong) that the browser compares the
> SSL certificate from one connection to the next. The only things the
> browser cares about is that the certificate is from an accepted CA and
> that the domain name on the cert matches the domain in the request.
>
> Sessions as far as CF cares about don't have anything to do with SSL.
>
> --
> Howard Fore, [EMAIL PROTECTED]
> "I hope you believe you understand what you think I said, but I'm not
> sure you understand that what you've heard is not what I meant."
> President Richard Nixon
>
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


Re: SOT: SSL & Load Balanced CF

2003-09-16 Thread Howard Fore
On Tuesday, Sep 16, 2003, at 15:29 US/Eastern, Justin Hansen wrote:
> I'm starting a new project that will require SSL and I have a few 
> questions...
> If a user is on Server(A) and has and SSL session going what happens 
> if Server(A) goes down?
> When Server(B) picks up the user will the SSL be broken?
I haven't tried this (but will Real Soon Now), but given that HTTP and 
HTTPS are not persistent connection protocols, I think the SSL 
browser-server handshake has to happen each time a HTTPS connection is 
requested. So the important part would be that each server that could 
answer the request has a valid certificate.

> Both servers have to have different keys right?
Yes. You have different certs for the same domain on different boxes.

> Wouldn't that break the users session? What would happen user?
I don't think (though I could be wrong) that the browser compares the 
SSL certificate from one connection to the next. The only things the 
browser cares about is that the certificate is from an accepted CA and 
that the domain name on the cert matches the domain in the request.

Sessions as far as CF cares about don't have anything to do with SSL.

--
Howard Fore, [EMAIL PROTECTED]
"I hope you believe you understand what you think I said, but I'm not 
sure you understand that what you've heard is not what I meant." 
President Richard Nixon

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re:CFC-based GPL web HTML editor

2003-09-16 Thread Mauricio Giraldo
>I know you meant well, though :-)

Yea... you get the point

>Realistically, whats out there if you need cross-platform and 
>international language support?

I agree. SPAW-CF has 21 languages and you can write your own language file in no time 
(if you want to translate all strings)

>I think it was already pointed out that Ephox' java variant was a good 
>solution that seemed to work well for cross-platform.  But its ability 
>to support foreign languages is pathetic, if what their web site touts 
>as language support (see the feature set) is all there is.  

I downloaded the Ephox thing and got freaked out when I saw an entry in my Start Menu 
and no uninstaller to be found anywhere. I really dont appreciate it when programs do 
such things even though they are "harmless".

>As I mentioned earlier I have a translateable ActivEdit, and 
>I'm sure I'm by no means the only one who's done that, since the 
>product is available unencrypted.

We couldnt afford the ColdFusion Open Source version of ActivEdit for testing 
purposes. I could not get the demo to work on Opera 7.11. The Java version for 
Netscape is pretty neat. I don't think ActivEdit sucks in any way... We just needed a 
GPL option.

>If you want cross-platform *and* multilanguage support, looks like 
>you're screwed unless you write your own.

I agree. We just let our clients know that they will need a PC with IE 5.5+ for their 
"back end" or just live with the plain TEXTAREA tag that will show up in other 
browsers. Check this link in Netscape:
http://www.elefectoaxe.com.co/spaw/test.cfm

It is a "graceful degradation" of functionality.

- mga
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: CFC-based GPL web HTML editor

2003-09-16 Thread Mike Kear
Not for me.  I see there is a 'redirect="oldbrowser.htm"' parameter in the
tag, but if I remove it, the page throws an error in netscape.  The notes
say if the browser isn't IE5.5+ then the user is redirected somewhere else.
I think they should still get the form, but with a textarea instead of the
tag. 

No?


Have I done that wrong?


Ummm ...  we *ARE* talking about tmt_xhtmleditor.cfm aren't we?  If not,
what's the name of YOUR tag, Mauricio and where can it be got?



Cheers,
Michael Kear
Windsor, NSW, Australia
AFP Webworks.




-Original Message-
From: Mauricio Giraldo [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 17 September 2003 7:38 AM
To: CF-Talk
Subject: Re:CFC-based GPL web HTML editor

>I would like to see the "old browsers" handled by replacing the tag with a
>standard textarea tag rather than bump them off to an "oldbrowser.htm"
file.
>Is this easy to do?

Absolutely. It is already implemented. Non-IE 5.5+ browsers will get a plain
old TEXTAREA tag

:)

- mga


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: SSL & Load Balanced CF

2003-09-16 Thread Justin Hansen
That's interesting We are currently using a WebMux. I'm told (by our admin) that 
the WebMux doesn't handle SSL. What type fo balancers are you using?

-Original Message-
From: Howie Hamlin [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 4:20 PM
To: CF-Talk
Subject: Re: SSL & Load Balanced CF


We're going to be setting up a redundant load balancers that do the SSL.  The client 
communicatess to the load balancer in encrypted mode and the communucation from the 
load balancer to the web servers is unencrypted.

Works great and you could probably pick up a box like this on ebay.

HTH,

--
Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc. - www.CoolFusion.com
inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server
((())) PrismAV is Coming ((()))
>>> Please vote for iMS here: 
>>> http://www.sys-con.com/coldfusion/readerschoice2003/index.cfm 
>>> Find out how iMS Stacks up to the competition: 
>>> http://www.coolfusion.com/imssecomparison.cfm


> 
> -Original Message-
> From: Justin Hansen [mailto:[EMAIL PROTECTED] 
> Sent: September 16, 2003 3:30 PM
> To: CF-Talk
> Subject: SOT: SSL & Load Balanced CF
> 
> I'm starting a new project that will require SSL and I have a few
> questions...
> If a user is on Server(A) and has and SSL session going what happens if
> Server(A) goes down?
> When Server(B) picks up the user will the SSL be broken?
> Both servers have to have different keys right? Wouldn't that break the
> users session?
> What would happen user?
> 
> Thanks, Justin
> 
> 

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re:CFC-based GPL web HTML editor

2003-09-16 Thread Mauricio Giraldo
>I think it's great that you took an open source option and converted it to
>CF. It makes me want to take another look through SourceForge to see if
>there's other nifty things I haven't been paying attention to that might be
>worth converting.

Thanks Kevin.

SPAW-CF is just the result of our internal need for a good, GPL CF editor. Translating 
from PHP was tricky because PHP is loosely typed (variables don't need to exist, you 
can convert between datatypes for the same variable, etc.) and CF is a hassle with 
mapppings (IMO... when you don't have your very own CF dedicated server).
This version of CF-SPAW should work pretty much anywhere CFCs are enabled.
Any input on SPAW-CF will be appreciated (I am no PhD on OOP nor CFCs so I bet there 
are parts that could be better-written)

- mga
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Can I Throw within ???

2003-09-16 Thread Raymond Camden
foo(x=y z=a) is not valid in cfml. The example in the link below does
not do that. You should instead do:

foo(y,a)

or

foo(x=y,z=a)




===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, September 16, 2003 4:03 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
> 
> 
> Raymond,
> 
> CFFunction works, what doesn't is:
> 
> 
>   throw(type="ValidationError" Message="This just wont work");
>   ...
> 
> Andy
> 
> -Original Message-
> From: Raymond Camden [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:50 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
> 
> 
> Why not? Every OS running CFMX will support cffunction.
> 
> ==
> ==
> ===
> Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
> (www.mindseye.com)
> Member of Team Macromedia 
> (http://www.macromedia.com/go/teammacromedia)
> 
> Email: 
> [EMAIL PROTECTED]
> Blog : www.camdenfamily.com/morpheus/blog
> Yahoo IM : morpheus
> 
> "My ally is the Force, and a powerful ally it is." - Yoda
> 
> > -Original Message-
> > From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:40 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > This won't work on my system running under NT & MX.
> >
> > Andy
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Tuesday, September 16, 2003 3:53 PM
> > To: CF-Talk
> > Subject: RE: Can I Throw within ???
> >
> >
> > no need for wrapper...throw();
> >
> http://www.mail-archive.com/[EMAIL PROTECTED]/msg145231.html
> for an example
> 
> 
> 
> 
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: CFC-based GPL web HTML editor

2003-09-16 Thread Claude Schneegans
>>That would mean that everyone who uses Windows using IE 5.5+,

No, because you also have all those using IE on Macs ;-)
When one say 95% of IE users, this include about all Mac users.
The 5% remaining are not Mac users, but Opera, Mozilla, etc.

>>most people who are using modern browsers such as IE 5.5
  certainly do have Java.

IE 5.5 yes, but about 60% of users are running version 6 which does not include the
"Virtual Machine" and many of those people won't even try to install it.

>>It is entirely possible that the percentage of people with Java
installed is actually higher than the number of people who have IE 5.5+.

IMHO it is much probable it is far less than that.



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: CFC-based GPL web HTML editor

2003-09-16 Thread Andre Turrettini
No one is disregarding.  The opposite.  Its providing the best functionality
you can within reason for each browser.

Example, Yahoo uses it for their email program.  The wysiwig doesnt show up
on a mac or netscape browser but plenty of people use yahoo with macs and
with netscape.

DRE


-Original Message-
From: Adam Wayne Lehman [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 10:16 AM
To: CF-Talk
Subject: RE: CFC-based GPL web HTML editor


Look, if only 100 people used the internet, then disregarding 5% would
be acceptable. 2004 projections for people online worldwide is 710-945
million. 
So are you saying that 35-74 million users aren't worth your time? There
are plenty of Javascript and Flash based WYSIWYGs.

Adam Wayne Lehman
Web Systems Developer
Johns Hopkins Bloomberg School of Public Health
Distance Education Division


-Original Message-
From: Thane Sherrington [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 11:58 AM
To: CF-Talk
Subject: RE: CFC-based GPL web HTML editor

At 11:37 AM 9/16/03 -0400, Adam Wayne Lehman wrote:
>Umm... I hate to break it to you, but people *do* use Macs, and you
>can't just ignore users just cuz they are a minority.

That depends.  If 5% of users are non-IE users, then I can't really
spend 
more than 5% of my development time on making things work for them, can 
I?  That's the downside to the non-IE compatible browsers.  Remember
when 
word processors *had* to be WordStar file compatible?  It's the same
thing 
with browsers.  I'm all for competition, but browser companies should
take 
note of OpenOffice - it can read MS Word formats well, and that's what's

making it successful.


T

Tired of your bookmarks/favourites being limited to one computer?  Move 
them to the Net!
www.stuffbythane.com/webfavourites makes it easy to keep all your 
favourites in one place and
access them from any computer that's attached to the Internet. 



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: stupid question (DWMX)

2003-09-16 Thread John Wilker
I've known about that too. But it's no where near as easy or intuitive as
simply ctrl clicking where you are currently looking. At least to me.

-Original Message-
From: Mike Kear [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 2:54 PM
To: CF-Talk
Subject: RE: stupid question (DWMX)


That functionality is there in Dreamweaver, but not as CTRL Click.  It's
been there since I first saw DW.

For example if you click somewhere inside a   

Click on one of them and it will select that whole tag.  Want to find the
beginning and end of the ?  Click on  and it'll select the whole row
in both design and code view. 

I'd like to have CTRL Click too, because I use that a lot in CFStudio, but I
think I can get used to doing it this way.

I use it a lot when I'm looking at other peoples' code, that has heaps of
nested tables. (I HATE nested tables) and trying to figure out where the
different cells start and end, and whether they're in the inner table, the
next one out or the one after that isn't always easy.  Just click on the tag
at the bottom of the screen and you can select the whole content of that
tag, including the opening and closing tags.



Cheers,
Michael Kear
Windsor, NSW, Australia
AFP Webworks.



-Original Message-
From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 17 September 2003 6:56 AM
To: CF-Talk
Subject: Re: stupid question (DWMX)

> Speaking of stupid DWMX tricks. In studio ctrl click (I think that's 
> what
it
> was) selected an entire tag pair. I know in DW I have the little list 
> at
the
> bottom but is there anything like ctrl click?

No, it's not there, please cast your vote:

http://www.macromedia.com/support/email/wishform/





~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: CFC-based GPL web HTML editor

2003-09-16 Thread Claude Schneegans
>>Java is installed in around 91% of users' computers.

Even this looks pretty optimistic to me.
There are also those who "do have Java installed", but it is not activated, and this 
includes
all those who never found it in their IE options and didn't know it was called 
"Virtual Machine" ;-))

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re:CFC-based GPL web HTML editor

2003-09-16 Thread Matt Robertson
Mauricio wrote:
>Java is installed in around 91% of users' computers. 
>I prefer a 95% IE 5.5+ no-plug-in-needed penetration 
>than a 91% Java penetration.

Actually, *all* versions of IE are about 95%.  IE 5.5+ is *well* under that number.  I 
know you meant well, though :-)

Realistically, whats out there if you need cross-platform and international language 
support?

I think it was already pointed out that Ephox' java variant was a good solution that 
seemed to work well for cross-platform.  But its ability to support foreign languages 
is pathetic, if what their web site touts as language support (see the feature set) is 
all there is.  

The FCKEditor seems to have the language issue nailed, but its MSIE only.  As I 
mentioned earlier I have a translateable ActivEdit, and I'm sure I'm by no means the 
only one who's done that, since the product is available unencrypted.

If you want cross-platform *and* multilanguage support, looks like you're screwed 
unless you write your own.

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

--
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: Can I Throw within ???

2003-09-16 Thread Andy Ousterhout
Raymond,

CFFunction works, what doesn't is:


throw(type="ValidationError" Message="This just wont work");
...

Andy

-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 4:50 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


Why not? Every OS running CFMX will support cffunction.


===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda

> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 3:40 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> This won't work on my system running under NT & MX.
>
> Andy
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 3:53 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
>
>
> no need for wrapper...throw();
>
http://www.mail-archive.com/[EMAIL PROTECTED]/msg145231.html
for an example




~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


Re: CFC-based GPL web HTML editor

2003-09-16 Thread Claude Schneegans
>>I would think a better approach would be to use the tools native to each browser

The problem is that there is NO editing tools in other browsers :-(

>>That way, instead of rolling your own very limited, non-native Java editor,

I don't see the advantage of going Java in order to get "cross browser"
There may be about 5% of users that don't use IE, but there is definitely a much
greater percentage of IE 6 users not having Java installed and who don't want to here 
about it.

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


Re: CFC-based GPL web HTML editor

2003-09-16 Thread Matt Liotta
> According to this:
> http://www.macromedia.com/software/player_census/flashplayer/
>
> Java is installed in around 91% of users' computers. I prefer a 95% IE 
> 5.5+ no-plug-in-needed penetration than a 91% Java penetration.
>
What is interesting about those statistics is that they don't tell you 
the conclusion you are making. For example, how could 95% of people 
being using IE 5.5+ if 5% of people are using Macs. That would mean 
that everyone who uses Windows using IE 5.5+, which is certainly not 
true. Further, the Java number is also skewed as most people who are 
using modern browsers such as IE 5.5 certainly do have Java. And of 
course there is the fact that all Mac OS X users have Java installed.

It is entirely possible that the percentage of people with Java 
installed is actually higher than the number of people who have IE 5.5+.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.MontaraSoftware.com
(888) 408-0900 x901


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: Mail spooling issue

2003-09-16 Thread Casey C Cook
You saw it pop up from time to time, was an effort made come up with some 
sort of prevention? Can it be prevented at the application level vs the 
core CF level.
Any thoughts would be appreciated.

Thanks,
CC

This is a PRIVATE message. If you are not the intended recipient, please 
delete without copying and kindly advise us by e-mail of the mistake in 
delivery. NOTE: Regardless of content, this e-mail shall not operate to 
bind CSC to any order or other contract unless pursuant to explicit 
written agreement or government initiative expressly permitting the use of 
e-mail for such purpose.






"Dan Phillips \(CFXHosting.com\)" 
09/16/2003 02:24 PM
Please respond to cf-talk

 
To: CF-Talk <[EMAIL PROTECTED]>
cc: 
Subject:RE: Mail spooling issue


>From my experience, this was never fixed until 6.1. In 3 1/2 years of
working with hundreds of 4, 4.5, and 5.0 servers, I've always seen this
pop up from time to time. 

Dan Phillips
www.CFXHosting.com 
1-866-239-4678
[EMAIL PROTECTED]



-Original Message-
From: Casey C Cook [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 5:14 PM
To: CF-Talk
Subject: Re: Mail spooling issue


Yes, a restart fixed it, but what caused it? So far I have been reading 
this is a "known issue" and should just be dealt with as it arises.  If 
there is a known cause then we can find a work-around until Macromedia 
fixes it. (or use the work around until we upgrade, given I dont think
CF 
4.5 is supported anymore)

Thanks,
CC


This is a PRIVATE message. If you are not the intended recipient, please

delete without copying and kindly advise us by e-mail of the mistake in 
delivery. NOTE: Regardless of content, this e-mail shall not operate to 
bind CSC to any order or other contract unless pursuant to explicit 
written agreement or government initiative expressly permitting the use
of 
e-mail for such purpose.







"Howie Hamlin" 
09/16/2003 02:02 PM
Please respond to cf-talk

 
To: CF-Talk <[EMAIL PROTECTED]>
cc: 
Subject:Re: Mail spooling issue


Looks like the file is locked but is still being sent.  A restart of CF 
might fix it.

Good luck,

Regards,

Howie

- Original Message - 
From: "Casey C Cook" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 16, 2003 4:45 PM
Subject: Re: Mail spooling issue


> Here is the mail error message, there are thousands of entries in the
log 
> file, so the problem seems to be with coldfusion.
> 
> "Warning","TID=972","09/16/03","08:45:37","Unable to move the spooled
mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the
file 
> because it is being used by another process.." 
> "Warning","TID=972","09/16/03","08:45:38","Unable to move the spooled
mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the
file 
> because it is being used by another process.." 
> "Warning","TID=972","09/16/03","08:45:39","Unable to move the spooled
mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the
file 
> because it is being used by another process.." 
> "Warning","TID=972","09/16/03","08:45:40","Unable to move the spooled
mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the
file 
> because it is being used by another process.."
> 
> Thanks,
> CC
> 


> This is a PRIVATE message. If you are not the intended recipient, 
> please

> delete without copying and kindly advise us by e-mail of the mistake 
> in
> delivery. NOTE: Regardless of content, this e-mail shall not operate
to 
> bind CSC to any order or other contract unless pursuant to explicit 
> written agreement or government initiative expressly permitting the
use 
of 
> e-mail for such purpose.
> 


> 
> 
> 
> 
> 
> info
> @turnkey.to
> 09/16/2003 01:44 PM
> Please respond to cf-talk
> 
> 
> To: CF-Talk <[EMAIL PROTECTED]>
> cc: 
> Subject:Re: Mail spooling issue
> 
> 
> Assuming they're both running the same version of CF I'd reinstall the
one 
> that's having the problem... If you're running CFMX and haven't 
> upgraded

> to 6.1 (Red Sky) yet, I'd definately try that first. ... unfortunately

> I

> don't have any suggestions to get around having to wait a month to see
if 
> it's working.
> 
> ike
> 
> -- Original Message --
> From: Casey C Cook <[EMAIL PROTECTED]>
> To: CF-Talk <[EMAIL PROTECTED]>
> Sent: Sep 16, 2003 01:0

RE: stupid question (DWMX)

2003-09-16 Thread Mike Kear
That functionality is there in Dreamweaver, but not as CTRL Click.  It's
been there since I first saw DW.

For example if you click somewhere inside a   

Click on one of them and it will select that whole tag.  Want to find the
beginning and end of the ?  Click on  and it'll select the whole row
in both design and code view. 

I'd like to have CTRL Click too, because I use that a lot in CFStudio, but I
think I can get used to doing it this way.

I use it a lot when I'm looking at other peoples' code, that has heaps of
nested tables. (I HATE nested tables) and trying to figure out where the
different cells start and end, and whether they're in the inner table, the
next one out or the one after that isn't always easy.  Just click on the tag
at the bottom of the screen and you can select the whole content of that
tag, including the opening and closing tags.



Cheers,
Michael Kear
Windsor, NSW, Australia
AFP Webworks.



-Original Message-
From: Massimo, Tiziana e Federica [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 17 September 2003 6:56 AM
To: CF-Talk
Subject: Re: stupid question (DWMX)

> Speaking of stupid DWMX tricks. In studio ctrl click (I think that's what
it
> was) selected an entire tag pair. I know in DW I have the little list at
the
> bottom but is there anything like ctrl click?

No, it's not there, please cast your vote:

http://www.macromedia.com/support/email/wishform/




~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: Can I Throw within ???

2003-09-16 Thread Raymond Camden
Why not? Every OS running CFMX will support cffunction.


===
Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc
(www.mindseye.com)
Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

Email: [EMAIL PROTECTED]
Blog : www.camdenfamily.com/morpheus/blog
Yahoo IM : morpheus

"My ally is the Force, and a powerful ally it is." - Yoda 

> -Original Message-
> From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
> Sent: Tuesday, September 16, 2003 3:40 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
> 
> 
> This won't work on my system running under NT & MX.
> 
> Andy
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 3:53 PM
> To: CF-Talk
> Subject: RE: Can I Throw within ???
> 
> 
> no need for wrapper...throw();
> 
http://www.mail-archive.com/[EMAIL PROTECTED]/msg145231.html
for an example



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: Can I Throw within ???

2003-09-16 Thread Andy Ousterhout
This won't work on my system running under NT & MX.

Andy

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 3:53 PM
To: CF-Talk
Subject: RE: Can I Throw within ???


no need for wrapper...throw();

http://www.mail-archive.com/[EMAIL PROTECTED]/msg145231.html  for an
example

doug

>-Original Message-
>From: Shawn Grover [mailto:[EMAIL PROTECTED]
>Sent: Tuesday, September 16, 2003 4:48 PM
>To: CF-Talk
>Subject: RE: Can I Throw within ???
>
>
>You can write a wrapper function for CFTHROW then call that
>function from
>within your CFScript block...
>
>-Original Message-
>From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
>Sent: Tuesday, September 16, 2003 2:43 PM
>To: CF-Talk
>Subject: Can I Throw within ???
>
>
>Do I have to go out of the script language to throw and error
>or is there a
>way to do it within cf-script(without separate function call
>that throws
>error)?
>
>Andy
>
>
>
>

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re:CFC-based GPL web HTML editor

2003-09-16 Thread Mauricio Giraldo
>I would like to see the "old browsers" handled by replacing the tag with a
>standard textarea tag rather than bump them off to an "oldbrowser.htm" file.
>Is this easy to do?

Absolutely. It is already implemented. Non-IE 5.5+ browsers will get a plain old 
TEXTAREA tag

:)

- mga

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: CFC-based GPL web HTML editor

2003-09-16 Thread Kevin Graeme
Hey Mauricio,

I just wanted to say that despite all the commotion your editor caused that
I think it's great that you took an open source option and converted it to
CF. It makes me want to take another look through SourceForge to see if
there's other nifty things I haven't been paying attention to that might be
worth converting.

-Kevin

- Original Message - 
From: "Mauricio Giraldo" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, September 15, 2003 5:09 PM
Subject: OT: CFC-based GPL web HTML editor


> Hi
>
> Just wanted to let you know we have posted on SourceForge a WYSIWYG
> web-based HTML Editor. It is in Beta development right now. It is quite
> stable and I'm sure you will find it useful (we looked all over the web
for
> a good CF web editor and all are quite costly so we decided to port a
really
> good PHP-based editor).
>
> It uses CFC so CFMX is required. It will work in shared server
environments.
> Win MSIE 5.5+ required.
>
> If you want to contribute/submit bugs/whatever just post your messages in
> the corresponding SourceForge forums for the project. The project summary
is
> in:
>
> http://sourceforge.net/projects/spaw-cf
>
> Regards
> - mga
>
> (Non-commercial only for now)
>
> _
> Try MSN Messenger 6.0 with integrated webcam functionality!
> http://www.msnmessenger-download.com/tracking/reach_webcam
>
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: Mail spooling issue

2003-09-16 Thread Dan Phillips \(CFXHosting.com\)
>From my experience, this was never fixed until 6.1. In 3 1/2 years of
working with hundreds of 4, 4.5, and 5.0 servers, I've always seen this
pop up from time to time. 

Dan Phillips
www.CFXHosting.com 
1-866-239-4678
[EMAIL PROTECTED]



-Original Message-
From: Casey C Cook [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 5:14 PM
To: CF-Talk
Subject: Re: Mail spooling issue


Yes, a restart fixed it, but what caused it? So far I have been reading 
this is a "known issue" and should just be dealt with as it arises.  If 
there is a known cause then we can find a work-around until Macromedia 
fixes it. (or use the work around until we upgrade, given I dont think
CF 
4.5 is supported anymore)

Thanks,
CC


This is a PRIVATE message. If you are not the intended recipient, please

delete without copying and kindly advise us by e-mail of the mistake in 
delivery. NOTE: Regardless of content, this e-mail shall not operate to 
bind CSC to any order or other contract unless pursuant to explicit 
written agreement or government initiative expressly permitting the use
of 
e-mail for such purpose.







"Howie Hamlin" 
09/16/2003 02:02 PM
Please respond to cf-talk

 
To: CF-Talk <[EMAIL PROTECTED]>
cc: 
Subject:Re: Mail spooling issue


Looks like the file is locked but is still being sent.  A restart of CF 
might fix it.

Good luck,

Regards,

Howie

- Original Message - 
From: "Casey C Cook" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 16, 2003 4:45 PM
Subject: Re: Mail spooling issue


> Here is the mail error message, there are thousands of entries in the
log 
> file, so the problem seems to be with coldfusion.
> 
> "Warning","TID=972","09/16/03","08:45:37","Unable to move the spooled
mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the
file 
> because it is being used by another process.." 
> "Warning","TID=972","09/16/03","08:45:38","Unable to move the spooled
mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the
file 
> because it is being used by another process.." 
> "Warning","TID=972","09/16/03","08:45:39","Unable to move the spooled
mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the
file 
> because it is being used by another process.." 
> "Warning","TID=972","09/16/03","08:45:40","Unable to move the spooled
mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the
file 
> because it is being used by another process.."
> 
> Thanks,
> CC
> 


> This is a PRIVATE message. If you are not the intended recipient, 
> please

> delete without copying and kindly advise us by e-mail of the mistake 
> in
> delivery. NOTE: Regardless of content, this e-mail shall not operate
to 
> bind CSC to any order or other contract unless pursuant to explicit 
> written agreement or government initiative expressly permitting the
use 
of 
> e-mail for such purpose.
> 


> 
> 
> 
> 
> 
> info
> @turnkey.to
> 09/16/2003 01:44 PM
> Please respond to cf-talk
> 
> 
> To: CF-Talk <[EMAIL PROTECTED]>
> cc: 
> Subject:Re: Mail spooling issue
> 
> 
> Assuming they're both running the same version of CF I'd reinstall the
one 
> that's having the problem... If you're running CFMX and haven't 
> upgraded

> to 6.1 (Red Sky) yet, I'd definately try that first. ... unfortunately

> I

> don't have any suggestions to get around having to wait a month to see
if 
> it's working.
> 
> ike
> 
> -- Original Message --
> From: Casey C Cook <[EMAIL PROTECTED]>
> To: CF-Talk <[EMAIL PROTECTED]>
> Sent: Sep 16, 2003 01:09 PM
> Subject: Re: Mail spooling issue
> 
> >Has anyone experienced the mail spooler sending out like 14,000 
> >emails, even though the CF statement only sends 1 e-mail to the 
> >spooler?...Bascially the same e-mail is being sent over and over and
over
> >quickly.  We only have the administrator set to check for new e-mails

> >every 60 seconds.  What would cause it to rapid fire out 14k e-mails 
> >before we catch it? It only has done this 2 times over the past 2
months
> >and the application has been on-line for a year and a half. This only

> >seems to be happening on the US server and has not impacted the UK
> servers
> >running the same application. Any thoughts?
> >
> >Thanks much,
> >CC
> 
>---
>-
> >This is a PRIVATE message. If you are not the intended recipient,
please
> >delete without copying and kindly advise us by e-mail of the mistake 
> >in delivery. NOTE: Re

Re:CFC-based GPL web HTML editor

2003-09-16 Thread Mauricio Giraldo
>Second, why would a Java solution be limited in any 
>way as compared to a native solution?

According to this:
http://www.macromedia.com/software/player_census/flashplayer/

Java is installed in around 91% of users' computers. I prefer a 95% IE 5.5+ 
no-plug-in-needed penetration than a 91% Java penetration.

- mga
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: CFC-based GPL web HTML editor

2003-09-16 Thread Mike Kear
I've implemented that editor on an experimental area of a site I'm working
on and it's a beaut!  It's simple to use, no heaps and heaps of
configuration files to muck about with.  It's great for what I think would
be the majority of applications for this kind of tag.

I like the fact that the formatting options are limited, so non-technical
users can't experiment with html tags and wreck the look and feel of my
site.  I can restrict the html they can use.  And it's cfc-friendly.



I would like to see the "old browsers" handled by replacing the tag with a
standard textarea tag rather than bump them off to an "oldbrowser.htm" file.
Is this easy to do?



Cheers,
Michael Kear
Windsor, NSW, Australia
AFP Webworks.




-Original Message-
From: Thane Sherrington [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, 17 September 2003 1:58 AM
To: CF-Talk
Subject: RE: CFC-based GPL web HTML editor

At 11:37 AM 9/16/03 -0400, Adam Wayne Lehman wrote:
>Umm... I hate to break it to you, but people *do* use Macs, and you
>can't just ignore users just cuz they are a minority.

That depends.  If 5% of users are non-IE users, then I can't really spend 
more than 5% of my development time on making things work for them, can 
I?  That's the downside to the non-IE compatible browsers.  Remember when 
word processors *had* to be WordStar file compatible?  It's the same thing 
with browsers.  I'm all for competition, but browser companies should take 
note of OpenOffice - it can read MS Word formats well, and that's what's 
making it successful.


T




~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


QUESTION: generation SOAP security information for a web service request

2003-09-16 Thread John Paul Ashenfelter
Folks,

I have a Java web service client (given by a credit card vendor -- Cybersource) that 
generates the following message 


http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:wsse="http://schemas.xmlsoap.org/ws/2002/04/secext";>


 (lots of binary data)



 http://www.w3.org/2000/09/xmldsig#";>
  http://www.w3.org/2000/09/xmldsig#";>
   http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/>
   http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
   
http://www.w3.org/2000/09/xmldsig#sha1"/>
(lots of binary stuff)
   
  
  (lots of binary stuff)
  
   http://schemas.xmlsoap.org/ws/2002/04/secext";>

   
  
 




 (requestMessage XML object)




Now I know how to create the XML for the requestMessage object, and I have done some 
basic web service work in ColdFusion (eg the Google Webservice API, etc) but never 
something that uses security. I've got the Java client working from the command line, 
just like it should, but is there a *straigtforward* way to implement this in 
ColdFusion MX 6.1 using CFINVOKE? Or should I just spend my time directly on 
customizing the web client they gave me?

The web client basically takes a properties file and an XML message. The properties 
file contains all of the references to the SSL keys and such. I can make a HashMap and 
the XML requestMessage easily in CF, but passing it to the service is where I lose it. 
The URL for their WSDL is

https://ics2wstest.ic3.com/commerce/1.x/transactionProcessor/CyberSourceTransaction_1.1.wsdl

if you really want to take a look :)

Thanks in advance -- and feel free to take it off list and I'll summarize and report 
back. 

Regards,

John Paul Ashenfelter
CTO/Transitionpoint
[EMAIL PROTECTED]

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: SSL & Load Balanced CF

2003-09-16 Thread Howie Hamlin
We're going to be setting up a redundant load balancers that do the SSL.  The client 
communicatess to the load balancer in encrypted mode and the communucation from the 
load balancer to the web servers is unencrypted.

Works great and you could probably pick up a box like this on ebay.

HTH,

--
Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc. - www.CoolFusion.com
inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server
((())) PrismAV is Coming ((()))
>>> Please vote for iMS here: 
>>> http://www.sys-con.com/coldfusion/readerschoice2003/index.cfm 
>>> Find out how iMS Stacks up to the competition: 
>>> http://www.coolfusion.com/imssecomparison.cfm


> 
> -Original Message-
> From: Justin Hansen [mailto:[EMAIL PROTECTED] 
> Sent: September 16, 2003 3:30 PM
> To: CF-Talk
> Subject: SOT: SSL & Load Balanced CF
> 
> I'm starting a new project that will require SSL and I have a few
> questions...
> If a user is on Server(A) and has and SSL session going what happens if
> Server(A) goes down?
> When Server(B) picks up the user will the SSL be broken?
> Both servers have to have different keys right? Wouldn't that break the
> users session?
> What would happen user?
> 
> Thanks, Justin
> 
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: CFC-based GPL web HTML editor

2003-09-16 Thread Matt Liotta
> That way, instead of rolling your own very limited, non-native Java
> editor, you could provide a feature rich, seamless experience for each
> browser.
>
First, if you wrap your editor around native functionality then the 
capabilities and behavior of the editor will vary by platform, which is 
certainly no good. Second, why would a Java solution be limited in any 
way as compared to a native solution?

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.MontaraSoftware.com
(888) 408-0900 x901


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


Re: Mail spooling issue

2003-09-16 Thread Casey C Cook
Yes, a restart fixed it, but what caused it? So far I have been reading 
this is a "known issue" and should just be dealt with as it arises.  If 
there is a known cause then we can find a work-around until Macromedia 
fixes it. (or use the work around until we upgrade, given I dont think CF 
4.5 is supported anymore)

Thanks,
CC

This is a PRIVATE message. If you are not the intended recipient, please 
delete without copying and kindly advise us by e-mail of the mistake in 
delivery. NOTE: Regardless of content, this e-mail shall not operate to 
bind CSC to any order or other contract unless pursuant to explicit 
written agreement or government initiative expressly permitting the use of 
e-mail for such purpose.






"Howie Hamlin" 
09/16/2003 02:02 PM
Please respond to cf-talk

 
To: CF-Talk <[EMAIL PROTECTED]>
cc: 
Subject:Re: Mail spooling issue


Looks like the file is locked but is still being sent.  A restart of CF 
might fix it.

Good luck,

Regards,

Howie

- Original Message - 
From: "Casey C Cook" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 16, 2003 4:45 PM
Subject: Re: Mail spooling issue


> Here is the mail error message, there are thousands of entries in the 
log 
> file, so the problem seems to be with coldfusion.
> 
> "Warning","TID=972","09/16/03","08:45:37","Unable to move the spooled 
mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the 
file 
> because it is being used by another process.."
> "Warning","TID=972","09/16/03","08:45:38","Unable to move the spooled 
mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the 
file 
> because it is being used by another process.."
> "Warning","TID=972","09/16/03","08:45:39","Unable to move the spooled 
mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the 
file 
> because it is being used by another process.."
> "Warning","TID=972","09/16/03","08:45:40","Unable to move the spooled 
mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the 
file 
> because it is being used by another process.."
> 
> Thanks,
> CC
> 

> This is a PRIVATE message. If you are not the intended recipient, please 

> delete without copying and kindly advise us by e-mail of the mistake in 
> delivery. NOTE: Regardless of content, this e-mail shall not operate to 
> bind CSC to any order or other contract unless pursuant to explicit 
> written agreement or government initiative expressly permitting the use 
of 
> e-mail for such purpose.
> 

> 
> 
> 
> 
> 
> info
> @turnkey.to
> 09/16/2003 01:44 PM
> Please respond to cf-talk
> 
> 
> To: CF-Talk <[EMAIL PROTECTED]>
> cc: 
> Subject:Re: Mail spooling issue
> 
> 
> Assuming they're both running the same version of CF I'd reinstall the 
one 
> that's having the problem... If you're running CFMX and haven't upgraded 

> to 6.1 (Red Sky) yet, I'd definately try that first. ... unfortunately I 

> don't have any suggestions to get around having to wait a month to see 
if 
> it's working. 
> 
> ike 
> 
> -- Original Message -- 
> From: Casey C Cook <[EMAIL PROTECTED]>
> To: CF-Talk <[EMAIL PROTECTED]>
> Sent: Sep 16, 2003 01:09 PM
> Subject: Re: Mail spooling issue
> 
> >Has anyone experienced the mail spooler sending out like 14,000 emails,
> >even though the CF statement only sends 1 e-mail to the
> >spooler?...Bascially the same e-mail is being sent over and over and 
over
> >quickly.  We only have the administrator set to check for new e-mails
> >every 60 seconds.  What would cause it to rapid fire out 14k e-mails
> >before we catch it? It only has done this 2 times over the past 2 
months
> >and the application has been on-line for a year and a half. This only
> >seems to be happening on the US server and has not impacted the UK 
> servers
> >running the same application. Any thoughts?
> >
> >Thanks much,
> >CC
> 
>
> >This is a PRIVATE message. If you are not the intended recipient, 
please
> >delete without copying and kindly advise us by e-mail of the mistake in
> >delivery. NOTE: Regardless of content, this e-mail shall not operate to
> >bind CSC to any order or other contract unless pursuant to explicit
> >written agreement or government initiative expressly permitting the use 

> of
> >e-mail for such purpose.
> 
>
> >
> >
> >
> >
> >
> >"Andy Ousterhout"  >@omygoodness.com>
> >09/16/2003 01:0

RE: SSL & Load Balanced CF

2003-09-16 Thread Stacy Young
What about having apache handle the ssl, then clustered with two backend
CF servers? The connector communication from Apache to the CF servers is
independent of the original request.

Stace

-Original Message-
From: Justin Hansen [mailto:[EMAIL PROTECTED] 
Sent: September 16, 2003 3:30 PM
To: CF-Talk
Subject: SOT: SSL & Load Balanced CF

I'm starting a new project that will require SSL and I have a few
questions...
If a user is on Server(A) and has and SSL session going what happens if
Server(A) goes down?
When Server(B) picks up the user will the SSL be broken?
Both servers have to have different keys right? Wouldn't that break the
users session?
What would happen user?

Thanks, Justin

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


Re:CFC-based GPL web HTML editor

2003-09-16 Thread Mauricio Giraldo
>I have given it a look and I believe that using a Java front-end 
>through either an Applet or Java Web Start is the only way to create a 
>good cross-platform HTML editor. 

LOL

All this discussion around cross-browser compatibility and it ends up being a 
no-can-do (as far as browser-only technologies/languages).
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: CFC-based GPL web HTML editor

2003-09-16 Thread Benjamin S. Rogers
> I have given it a look and I believe that using a Java front-end 
> through either an Applet or Java Web Start is the only way to create a

> good cross-platform HTML editor. Therefore, nothing in your project is

> useful in that regard.

I would think a better approach would be to use the tools native to each
browser and provide a standard ColdFusion interface:

 
http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/msht
ml/mshtml_editing_node_entry.asp

  http://www.mozilla.org/catalog/libraries/editor/

That way, instead of rolling your own very limited, non-native Java
editor, you could provide a feature rich, seamless experience for each
browser.

Benjamin S. Rogers
http://www.c4.net/
v.508.240.0051
f.508.240.0057

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


Re: Mail spooling issue

2003-09-16 Thread Howie Hamlin
Looks like the file is locked but is still being sent.  A restart of CF might fix it.

Good luck,

Regards,

Howie

- Original Message - 
From: "Casey C Cook" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 16, 2003 4:45 PM
Subject: Re: Mail spooling issue


> Here is the mail error message, there are thousands of entries in the log 
> file, so the problem seems to be with coldfusion.
> 
> "Warning","TID=972","09/16/03","08:45:37","Unable to move the spooled mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the file 
> because it is being used by another process.."
> "Warning","TID=972","09/16/03","08:45:38","Unable to move the spooled mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the file 
> because it is being used by another process.."
> "Warning","TID=972","09/16/03","08:45:39","Unable to move the spooled mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the file 
> because it is being used by another process.."
> "Warning","TID=972","09/16/03","08:45:40","Unable to move the spooled mail 
> file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the file 
> because it is being used by another process.."
> 
> Thanks,
> CC
> 
> This is a PRIVATE message. If you are not the intended recipient, please 
> delete without copying and kindly advise us by e-mail of the mistake in 
> delivery. NOTE: Regardless of content, this e-mail shall not operate to 
> bind CSC to any order or other contract unless pursuant to explicit 
> written agreement or government initiative expressly permitting the use of 
> e-mail for such purpose.
> 
> 
> 
> 
> 
> 
> info
> @turnkey.to
> 09/16/2003 01:44 PM
> Please respond to cf-talk
> 
>  
> To: CF-Talk <[EMAIL PROTECTED]>
> cc: 
> Subject:Re: Mail spooling issue
> 
> 
> Assuming they're both running the same version of CF I'd reinstall the one 
> that's having the problem... If you're running CFMX and haven't upgraded 
> to 6.1 (Red Sky) yet, I'd definately try that first. ... unfortunately I 
> don't have any suggestions to get around having to wait a month to see if 
> it's working. 
> 
> ike 
> 
> -- Original Message -- 
> From: Casey C Cook <[EMAIL PROTECTED]>
> To: CF-Talk <[EMAIL PROTECTED]>
> Sent: Sep 16, 2003 01:09 PM
> Subject: Re: Mail spooling issue
> 
> >Has anyone experienced the mail spooler sending out like 14,000 emails,
> >even though the CF statement only sends 1 e-mail to the
> >spooler?...Bascially the same e-mail is being sent over and over and over
> >quickly.  We only have the administrator set to check for new e-mails
> >every 60 seconds.  What would cause it to rapid fire out 14k e-mails
> >before we catch it? It only has done this 2 times over the past 2 months
> >and the application has been on-line for a year and a half. This only
> >seems to be happening on the US server and has not impacted the UK 
> servers
> >running the same application. Any thoughts?
> >
> >Thanks much,
> >CC
> >
> >This is a PRIVATE message. If you are not the intended recipient, please
> >delete without copying and kindly advise us by e-mail of the mistake in
> >delivery. NOTE: Regardless of content, this e-mail shall not operate to
> >bind CSC to any order or other contract unless pursuant to explicit
> >written agreement or government initiative expressly permitting the use 
> of
> >e-mail for such purpose.
> >
> >
> >
> >
> >
> >
> >"Andy Ousterhout"  >@omygoodness.com>
> >09/16/2003 01:01 PM
> >Please respond to cf-talk
> >
> >
> >To: CF-Talk <[EMAIL PROTECTED]>
> >cc:
> >Subject:RE:  problem
> >
> >
> >http://
> >
> >-Original Message-
> >From: J E VanOver [mailto:[EMAIL PROTECTED]
> >Sent: Tuesday, September 16, 2003 2:53 PM
> >To: CF-Talk
> >Subject: RE:  problem
> >
> >
> >Is that a proper url?  Shouldn't it start with http:// or file: ??
> >
> >-Original Message-
> >From: AKERS,BRET (HP-SanDiego,ex1) [mailto:[EMAIL PROTECTED]
> >Sent: Tuesday, September 16, 2003 12:39 PM
> >To: CF-Talk
> >Subject:  problem
> >
> >
> >Hi All,
> >
> >I've got a crazy problem with the  tag. When using it to
> >redirect to network locations, i.e.  >url="\\machine\share\directory\" addtoken="no">, I get the "Page cannot 
> be
> >displayed" error unless I disable the "Show friendly http error messages"
> >checkbox in Internet explorer". Any idea of what's going on here? Running
> >CFMX 6 on a W2K server.
> >
> >Thanks.
> >
> >
> >
> >
> 
> 
~|
Archives: http://www.

Re: MySQL ?

2003-09-16 Thread Matt Robertson
Use the InnoDB table type (as opposed to the default myISAM) to get transaction 
support.


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

--
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: MySQL ?

2003-09-16 Thread Barney Boisvert
MySQL has multiple different storage engines that all reside underneath the
common MySQL interface.  Some of the storage engines (innoDB and BDB)
support transactions, the rest don't.  If yuo don't want to use a
transactional engine, you can duplicate the functionality with table locks
(on any engine), thought that obviously has a great effect on concurrency.

barneyb

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 1:51 PM
> To: CF-Talk
> Subject: MySQL ?
>
>
> i havent used this db before but im gunna do a site where they want it if
> possible.
>
> I have never really used it before and my only concern is i remember
> something about it no supporting transactions.
>
> the part on the site i will be concerned with is there will be a small
> auction section & i'm curious to how that can be handled with MySQL.
> mostly were ppl are bidding at the last second.
> can I use cftransaction with MySQL i guess is my question, if not how do
> you guys do this with this db?
>
> ty
> dave
>
>
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: MySQL ?

2003-09-16 Thread Bryan Stevenson
I'm not sure about CFTRANSACTION and MySQL, but it does NOT support stored
procedures, triggers, views, or full-blown referential integrity!!

Cheers

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: Tuesday, September 16, 2003 1:51 PM
Subject: MySQL ?


> i havent used this db before but im gunna do a site where they want it if
> possible.
>
> I have never really used it before and my only concern is i remember
> something about it no supporting transactions.
>
> the part on the site i will be concerned with is there will be a small
> auction section & i'm curious to how that can be handled with MySQL.
> mostly were ppl are bidding at the last second.
> can I use cftransaction with MySQL i guess is my question, if not how do
> you guys do this with this db?
>
> ty
> dave
>
>
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re: stupid question (DWMX)

2003-09-16 Thread Massimo, Tiziana e Federica
> Speaking of stupid DWMX tricks. In studio ctrl click (I think that's what
it
> was) selected an entire tag pair. I know in DW I have the little list at
the
> bottom but is there anything like ctrl click?

No, it's not there, please cast your vote:

http://www.macromedia.com/support/email/wishform/


Massimo Foti
Certified Dreamweaver MX Developer
Certified Advanced ColdFusion MX Developer
http://www.massimocorner.com/



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: Can I Throw within ???

2003-09-16 Thread Douglas.Knudsen
no need for wrapper...throw();

http://www.mail-archive.com/[EMAIL PROTECTED]/msg145231.html  for an example

doug

>-Original Message-
>From: Shawn Grover [mailto:[EMAIL PROTECTED]
>Sent: Tuesday, September 16, 2003 4:48 PM
>To: CF-Talk
>Subject: RE: Can I Throw within ???
>
>
>You can write a wrapper function for CFTHROW then call that 
>function from
>within your CFScript block...
>
>-Original Message-
>From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
>Sent: Tuesday, September 16, 2003 2:43 PM
>To: CF-Talk
>Subject: Can I Throw within ???
>
>
>Do I have to go out of the script language to throw and error 
>or is there a
>way to do it within cf-script(without separate function call 
>that throws
>error)?
>
>Andy
>
>
>
>
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re: Can I Throw within ???

2003-09-16 Thread Paul Hastings
> You can write a wrapper function for CFTHROW then call that function from
> within your CFScript block...

yes, but you have to manage most of the error details yourself. cfscript
really needs a throw().


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


MySQL ?

2003-09-16 Thread cf
i havent used this db before but im gunna do a site where they want it if
possible.

I have never really used it before and my only concern is i remember
something about it no supporting transactions.

the part on the site i will be concerned with is there will be a small
auction section & i'm curious to how that can be handled with MySQL.
mostly were ppl are bidding at the last second.
can I use cftransaction with MySQL i guess is my question, if not how do
you guys do this with this db?

ty
dave


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: Mail spooling issue

2003-09-16 Thread Casey C Cook
Here is the mail error message, there are thousands of entries in the log 
file, so the problem seems to be with coldfusion.

"Warning","TID=972","09/16/03","08:45:37","Unable to move the spooled mail 
file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the file 
because it is being used by another process.."
"Warning","TID=972","09/16/03","08:45:38","Unable to move the spooled mail 
file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the file 
because it is being used by another process.."
"Warning","TID=972","09/16/03","08:45:39","Unable to move the spooled mail 
file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the file 
because it is being used by another process.."
"Warning","TID=972","09/16/03","08:45:40","Unable to move the spooled mail 
file, d:\CFUSION\MAIL\spool\88.cfmail. The process cannot access the file 
because it is being used by another process.."

Thanks,
CC

This is a PRIVATE message. If you are not the intended recipient, please 
delete without copying and kindly advise us by e-mail of the mistake in 
delivery. NOTE: Regardless of content, this e-mail shall not operate to 
bind CSC to any order or other contract unless pursuant to explicit 
written agreement or government initiative expressly permitting the use of 
e-mail for such purpose.






info
@turnkey.to
09/16/2003 01:44 PM
Please respond to cf-talk

 
To: CF-Talk <[EMAIL PROTECTED]>
cc: 
Subject:Re: Mail spooling issue


Assuming they're both running the same version of CF I'd reinstall the one 
that's having the problem... If you're running CFMX and haven't upgraded 
to 6.1 (Red Sky) yet, I'd definately try that first. ... unfortunately I 
don't have any suggestions to get around having to wait a month to see if 
it's working. 

ike 

-- Original Message -- 
From: Casey C Cook <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Sep 16, 2003 01:09 PM
Subject: Re: Mail spooling issue

>Has anyone experienced the mail spooler sending out like 14,000 emails,
>even though the CF statement only sends 1 e-mail to the
>spooler?...Bascially the same e-mail is being sent over and over and over
>quickly.  We only have the administrator set to check for new e-mails
>every 60 seconds.  What would cause it to rapid fire out 14k e-mails
>before we catch it? It only has done this 2 times over the past 2 months
>and the application has been on-line for a year and a half. This only
>seems to be happening on the US server and has not impacted the UK 
servers
>running the same application. Any thoughts?
>
>Thanks much,
>CC
>
>This is a PRIVATE message. If you are not the intended recipient, please
>delete without copying and kindly advise us by e-mail of the mistake in
>delivery. NOTE: Regardless of content, this e-mail shall not operate to
>bind CSC to any order or other contract unless pursuant to explicit
>written agreement or government initiative expressly permitting the use 
of
>e-mail for such purpose.
>
>
>
>
>
>
>"Andy Ousterhout" @omygoodness.com>
>09/16/2003 01:01 PM
>Please respond to cf-talk
>
>
>To: CF-Talk <[EMAIL PROTECTED]>
>cc:
>Subject:RE:  problem
>
>
>http://
>
>-Original Message-
>From: J E VanOver [mailto:[EMAIL PROTECTED]
>Sent: Tuesday, September 16, 2003 2:53 PM
>To: CF-Talk
>Subject: RE:  problem
>
>
>Is that a proper url?  Shouldn't it start with http:// or file: ??
>
>-Original Message-
>From: AKERS,BRET (HP-SanDiego,ex1) [mailto:[EMAIL PROTECTED]
>Sent: Tuesday, September 16, 2003 12:39 PM
>To: CF-Talk
>Subject:  problem
>
>
>Hi All,
>
>I've got a crazy problem with the  tag. When using it to
>redirect to network locations, i.e. url="\\machine\share\directory\" addtoken="no">, I get the "Page cannot 
be
>displayed" error unless I disable the "Show friendly http error messages"
>checkbox in Internet explorer". Any idea of what's going on here? Running
>CFMX 6 on a W2K server.
>
>Thanks.
>
>
>
>

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: Can I Throw within ???

2003-09-16 Thread Shawn Grover
You can write a wrapper function for CFTHROW then call that function from
within your CFScript block...

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 2:43 PM
To: CF-Talk
Subject: Can I Throw within ???


Do I have to go out of the script language to throw and error or is there a
way to do it within cf-script(without separate function call that throws
error)?

Andy



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: stupid question (DWMX)

2003-09-16 Thread Barney Boisvert
CTRL+[ will select the parent tag.  so put your cursor inside the tag you
want and hit that keyset, and it'll select the entire tag.  It's on the edit
menu, I believe.

barneyb

> -Original Message-
> From: John Wilker [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 1:44 PM
> To: CF-Talk
> Subject: RE: stupid question (DWMX)
>
>
> Speaking of stupid DWMX tricks. In studio ctrl click (I think
> that's what it
> was) selected an entire tag pair. I know in DW I have the little
> list at the
> bottom but is there anything like ctrl click?
>
> -Original Message-
> From: Tony Weeg [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 1:11 PM
> To: CF-Talk
> Subject: RE: stupid question (DWMX)
>
>
> kinda retarded and such basic functionality that we love in hs+ and
> cfstudio.
>
> tony weeg
> sr. web applications architect
> navtrak, inc.
> [EMAIL PROTECTED]
> www.navtrak.net
> office 410.548.2337
> fax 410.860.2337
>
>
> -Original Message-
> From: John Wilker [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 4:12 PM
> To: CF-Talk
> Subject: RE: stupid question (DWMX)
>
>
> Doesn't do it in code view for me either. Have to open the wizard to get
> that. Dunno why
>
> -Original Message-
> From: Tony Weeg [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 12:52 PM
> To: CF-Talk
> Subject: RE: stupid question (DWMX)
>
>
> not in code view?
>
> tony weeg
> sr. web applications architect
> navtrak, inc.
> [EMAIL PROTECTED]
> www.navtrak.net
> office 410.548.2337
> fax 410.860.2337
>
>
> -Original Message-
> From: Dave Watts [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 3:53 PM
> To: CF-Talk
> Subject: RE: stupid question (DWMX)
>
>
> > hey why hasn't macromedia made it so that when you drag
> > an image from the left directory tree to the workspace
> > it fills in the h/w of the image tag?
> >
> > just another shortcomingdoesnt make sense?
>
> It works fine for me, in design view. I do that all the time.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
>
>
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re: Transferring Snippets.

2003-09-16 Thread cf
ty:)











>> Massimo,
>> do you know if there is a way to back up or save the extention folder?
>
> Yes, back up everything and copy it. As soon as you don't move things
> across different versions of DW, you will be safe
>
> The data about what extension you have installed are stored inside:
>
> Configuration\Extensions
>
> 
> Massimo Foti
> Certified Dreamweaver MX Developer
> Certified Advanced ColdFusion MX Developer
> http://www.massimocorner.com/
> 
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: A Positive for DW2004

2003-09-16 Thread Stacy Young
A-Ha! Gotcha! Not EXACTLY the same LOL ;-)


-Original Message-
From: Massimo Foti [mailto:[EMAIL PROTECTED] 
Sent: September 16, 2003 12:07 PM
To: CF-Talk
Subject: Re: A Positive for DW2004

> Ya but in 2004 its also showing the line of text with the target
> underlined...I don't remember seeing that in MX lol.
> 
Ya, in DW MX it wasn't underlined :-)))


Massimo Foti
Certified Dreamweaver MX Developer
Certified Advanced ColdFusion MX Developer
http://www.massimocorner.com/







~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Can I Throw within ???

2003-09-16 Thread Andy Ousterhout
Do I have to go out of the script language to throw and error or is there a
way to do it within cf-script(without separate function call that throws
error)?

Andy


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: Mail spooling issue

2003-09-16 Thread Mike Townend
Check your logs.

We have it happening on CF 5 here... Basically the spool file gets locked so
CF picks it up again.  The error is something like failed to delete spool
file as its being used by another process.

AFAIK it's a known issue that wont be fixed for 5


HTH


-Original Message-
From: Casey C Cook [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 21:09
To: CF-Talk
Subject: Mail spooling issue


Has anyone experienced the mail spooler sending out like 14,000 emails, 
even though the CF statement only sends 1 e-mail to the 
spooler?...Bascially the same e-mail is being sent over and over and over 
quickly.  We only have the administrator set to check for new e-mails 
every 60 seconds.  What would cause it to rapid fire out 14k e-mails 
before we catch it? It only has done this 2 times over the past 2 months 
and the application has been on-line for a year and a half. This only 
seems to be happening on the US server and has not impacted the UK servers 
running the same application. Any thoughts?

Thanks much,
CC


This is a PRIVATE message. If you are not the intended recipient, please 
delete without copying and kindly advise us by e-mail of the mistake in 
delivery. NOTE: Regardless of content, this e-mail shall not operate to 
bind CSC to any order or other contract unless pursuant to explicit 
written agreement or government initiative expressly permitting the use of 
e-mail for such purpose.







"Andy Ousterhout" 
09/16/2003 01:01 PM
Please respond to cf-talk

 
To: CF-Talk <[EMAIL PROTECTED]>
cc: 
Subject:RE:  problem


http://

-Original Message-
From: J E VanOver [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 2:53 PM
To: CF-Talk
Subject: RE:  problem


Is that a proper url?  Shouldn't it start with http:// or file: ??

-Original Message-
From: AKERS,BRET (HP-SanDiego,ex1) [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 12:39 PM
To: CF-Talk
Subject:  problem


Hi All,

I've got a crazy problem with the  tag. When using it to
redirect to network locations, i.e. , I get the "Page cannot be
displayed" error unless I disable the "Show friendly http error messages"
checkbox in Internet explorer". Any idea of what's going on here? Running
CFMX 6 on a W2K server.

Thanks.




~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: stupid question (DWMX)

2003-09-16 Thread John Wilker
Speaking of stupid DWMX tricks. In studio ctrl click (I think that's what it
was) selected an entire tag pair. I know in DW I have the little list at the
bottom but is there anything like ctrl click?

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 1:11 PM
To: CF-Talk
Subject: RE: stupid question (DWMX)


kinda retarded and such basic functionality that we love in hs+ and
cfstudio.

tony weeg
sr. web applications architect
navtrak, inc.
[EMAIL PROTECTED]
www.navtrak.net
office 410.548.2337
fax 410.860.2337


-Original Message-
From: John Wilker [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 4:12 PM
To: CF-Talk
Subject: RE: stupid question (DWMX)


Doesn't do it in code view for me either. Have to open the wizard to get
that. Dunno why

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 12:52 PM
To: CF-Talk
Subject: RE: stupid question (DWMX)


not in code view?

tony weeg
sr. web applications architect
navtrak, inc.
[EMAIL PROTECTED]
www.navtrak.net
office 410.548.2337
fax 410.860.2337


-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 3:53 PM
To: CF-Talk
Subject: RE: stupid question (DWMX)


> hey why hasn't macromedia made it so that when you drag
> an image from the left directory tree to the workspace
> it fills in the h/w of the image tag?
> 
> just another shortcomingdoesnt make sense?

It works fine for me, in design view. I do that all the time.

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





~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re: Mail spooling issue

2003-09-16 Thread info
Assuming they're both running the same version of CF I'd reinstall the one that's 
having the problem... If you're running CFMX and haven't upgraded to 6.1 (Red Sky) 
yet, I'd definately try that first. ... unfortunately I don't have any suggestions to 
get around having to wait a month to see if it's working. 

ike 

-- Original Message -- 
From: Casey C Cook <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Sep 16, 2003 01:09 PM
Subject: Re: Mail spooling issue

>Has anyone experienced the mail spooler sending out like 14,000 emails,
>even though the CF statement only sends 1 e-mail to the
>spooler?...Bascially the same e-mail is being sent over and over and over
>quickly.  We only have the administrator set to check for new e-mails
>every 60 seconds.  What would cause it to rapid fire out 14k e-mails
>before we catch it? It only has done this 2 times over the past 2 months
>and the application has been on-line for a year and a half. This only
>seems to be happening on the US server and has not impacted the UK servers
>running the same application. Any thoughts?
>
>Thanks much,
>CC
>
>This is a PRIVATE message. If you are not the intended recipient, please
>delete without copying and kindly advise us by e-mail of the mistake in
>delivery. NOTE: Regardless of content, this e-mail shall not operate to
>bind CSC to any order or other contract unless pursuant to explicit
>written agreement or government initiative expressly permitting the use of
>e-mail for such purpose.
>
>
>
>
>
>
>"Andy Ousterhout" @omygoodness.com>
>09/16/2003 01:01 PM
>Please respond to cf-talk
>
>
>To: CF-Talk <[EMAIL PROTECTED]>
>cc:
>Subject:RE:  problem
>
>
>http://
>
>-Original Message-
>From: J E VanOver [mailto:[EMAIL PROTECTED]
>Sent: Tuesday, September 16, 2003 2:53 PM
>To: CF-Talk
>Subject: RE:  problem
>
>
>Is that a proper url?  Shouldn't it start with http:// or file: ??
>
>-Original Message-
>From: AKERS,BRET (HP-SanDiego,ex1) [mailto:[EMAIL PROTECTED]
>Sent: Tuesday, September 16, 2003 12:39 PM
>To: CF-Talk
>Subject:  problem
>
>
>Hi All,
>
>I've got a crazy problem with the  tag. When using it to
>redirect to network locations, i.e. url="\\machine\share\directory\" addtoken="no">, I get the "Page cannot be
>displayed" error unless I disable the "Show friendly http error messages"
>checkbox in Internet explorer". Any idea of what's going on here? Running
>CFMX 6 on a W2K server.
>
>Thanks.
>
>
>
>
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re: CFC-based GPL web HTML editor

2003-09-16 Thread Matt Liotta
> The editor is built using CFCs and an OO perspective. This way we can 
> replace pieces of code without having to redo everything. Javascript 
> is well separated from CF. I guess a cross-browser version could be 
> done why not? Have you given it a look?
>
I have given it a look and I believe that using a Java front-end 
through either an Applet or Java Web Start is the only way to create a 
good cross-platform HTML editor. Therefore, nothing in your project is 
useful in that regard.

Matt Liotta
President & CEO
Montara Software, Inc.
http://www.MontaraSoftware.com
(888) 408-0900 x901


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re: Mail spooling issue

2003-09-16 Thread Howie Hamlin
That's the thing - you need to find out where the duplication is happening - 
ColdFusion or the email server.  The best place to look is the mail server logs 
(hopefully, you can get access).

HTH,

--
Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc. - www.CoolFusion.com
inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server
((())) PrismAV is Coming ((()))
>>> Please vote for iMS here: 
>>> http://www.sys-con.com/coldfusion/readerschoice2003/index.cfm 
>>> Find out how iMS Stacks up to the competition: 
>>> http://www.coolfusion.com/imssecomparison.cfm

- Original Message - 
From: "Casey C Cook" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 16, 2003 4:25 PM
Subject: Re: Mail spooling issue


> 1) It actually sends out the e-mail.
> 
> 2) The code has been unchanged for the 1 and 1/2 years the program has 
> been running.
> 
> I dont know enough about what happens to the e-mail once it leaves the 
> spool folder and enters the e-mail system flow.  Perhaps something is 
> going screwy after it leaves coldfusions hands.
> 
> Thanks.
> CC
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Re: Mail spooling issue

2003-09-16 Thread Casey C Cook
1) It actually sends out the e-mail.

2) The code has been unchanged for the 1 and 1/2 years the program has 
been running.

I dont know enough about what happens to the e-mail once it leaves the 
spool folder and enters the e-mail system flow.  Perhaps something is 
going screwy after it leaves coldfusions hands.

Thanks.
CC

This is a PRIVATE message. If you are not the intended recipient, please 
delete without copying and kindly advise us by e-mail of the mistake in 
delivery. NOTE: Regardless of content, this e-mail shall not operate to 
bind CSC to any order or other contract unless pursuant to explicit 
written agreement or government initiative expressly permitting the use of 
e-mail for such purpose.






"Kevin Graeme" 
09/16/2003 01:19 PM
Please respond to cf-talk

 
To: CF-Talk <[EMAIL PROTECTED]>
cc: 
Subject:Re: Mail spooling issue


Is it actually sending the mail or is it just spooling them? There is a 
bug
that we've run into where if the developer forgets to set a TO or FROM
address, the spooler fills up with duplicates as it fails to send the
message and retries. This is on CF<=5 for us. I don't know about MX.

-Kevin

- Original Message - 
From: "Casey C Cook" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 16, 2003 3:09 PM
Subject: Mail spooling issue


> Has anyone experienced the mail spooler sending out like 14,000 emails,
> even though the CF statement only sends 1 e-mail to the
> spooler?...Bascially the same e-mail is being sent over and over and 
over
> quickly.  We only have the administrator set to check for new e-mails
> every 60 seconds.  What would cause it to rapid fire out 14k e-mails
> before we catch it? It only has done this 2 times over the past 2 months
> and the application has been on-line for a year and a half. This only
> seems to be happening on the US server and has not impacted the UK 
servers
> running the same application. Any thoughts?
>
> Thanks much,
> CC
> 
--
--
> This is a PRIVATE message. If you are not the intended recipient, please
> delete without copying and kindly advise us by e-mail of the mistake in
> delivery. NOTE: Regardless of content, this e-mail shall not operate to
> bind CSC to any order or other contract unless pursuant to explicit
> written agreement or government initiative expressly permitting the use 
of
> e-mail for such purpose.
> 
--
--
>
>
>
>
>
> "Andy Ousterhout"  @omygoodness.com>
> 09/16/2003 01:01 PM
> Please respond to cf-talk
>
>
> To: CF-Talk <[EMAIL PROTECTED]>
> cc:
> Subject:RE:  problem
>
>
> http://
>
> -Original Message-
> From: J E VanOver [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 2:53 PM
> To: CF-Talk
> Subject: RE:  problem
>
>
> Is that a proper url?  Shouldn't it start with http:// or file: ??
>
> -Original Message-
> From: AKERS,BRET (HP-SanDiego,ex1) [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 12:39 PM
> To: CF-Talk
> Subject:  problem
>
>
> Hi All,
>
> I've got a crazy problem with the  tag. When using it to
> redirect to network locations, i.e.  url="\\machine\share\directory\" addtoken="no">, I get the "Page cannot 
be
> displayed" error unless I disable the "Show friendly http error 
messages"
> checkbox in Internet explorer". Any idea of what's going on here? 
Running
> CFMX 6 on a W2K server.
>
> Thanks.
>
>
>
> 

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


Re: Mail spooling issue

2003-09-16 Thread Kevin Graeme
Is it actually sending the mail or is it just spooling them? There is a bug
that we've run into where if the developer forgets to set a TO or FROM
address, the spooler fills up with duplicates as it fails to send the
message and retries. This is on CF<=5 for us. I don't know about MX.

-Kevin

- Original Message - 
From: "Casey C Cook" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 16, 2003 3:09 PM
Subject: Mail spooling issue


> Has anyone experienced the mail spooler sending out like 14,000 emails,
> even though the CF statement only sends 1 e-mail to the
> spooler?...Bascially the same e-mail is being sent over and over and over
> quickly.  We only have the administrator set to check for new e-mails
> every 60 seconds.  What would cause it to rapid fire out 14k e-mails
> before we catch it? It only has done this 2 times over the past 2 months
> and the application has been on-line for a year and a half. This only
> seems to be happening on the US server and has not impacted the UK servers
> running the same application. Any thoughts?
>
> Thanks much,
> CC
> --
--
> This is a PRIVATE message. If you are not the intended recipient, please
> delete without copying and kindly advise us by e-mail of the mistake in
> delivery. NOTE: Regardless of content, this e-mail shall not operate to
> bind CSC to any order or other contract unless pursuant to explicit
> written agreement or government initiative expressly permitting the use of
> e-mail for such purpose.
> --
--
>
>
>
>
>
> "Andy Ousterhout"  @omygoodness.com>
> 09/16/2003 01:01 PM
> Please respond to cf-talk
>
>
> To: CF-Talk <[EMAIL PROTECTED]>
> cc:
> Subject:RE:  problem
>
>
> http://
>
> -Original Message-
> From: J E VanOver [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 2:53 PM
> To: CF-Talk
> Subject: RE:  problem
>
>
> Is that a proper url?  Shouldn't it start with http:// or file: ??
>
> -Original Message-
> From: AKERS,BRET (HP-SanDiego,ex1) [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 12:39 PM
> To: CF-Talk
> Subject:  problem
>
>
> Hi All,
>
> I've got a crazy problem with the  tag. When using it to
> redirect to network locations, i.e.  url="\\machine\share\directory\" addtoken="no">, I get the "Page cannot be
> displayed" error unless I disable the "Show friendly http error messages"
> checkbox in Internet explorer". Any idea of what's going on here? Running
> CFMX 6 on a W2K server.
>
> Thanks.
>
>
>
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re: Stats package

2003-09-16 Thread John Paul Ashenfelter
I'd go further and say actively avoid anything in CF. I can't think of a
common language other than Perl that's as suited to parsing semi-regular
text files. I a previous gig, we crunched stats from 12 GB (gigabytes) of
web logs PER DAY (that's big in my neck of the woods) into daily stats. When
we started, it took 26 hours to crunch one day of data, but once we let the
perl wizards loose, we got it down to 6-8 hours and even lower (of course
traffic kept picking up too...)

Point is, look for Perl-based ones. Period. Even the commercial leader
(WebTrends) at least *used* to be Perl under the hood (they used the Perl
exe compiler from ActiveState or somesuch in the Windows versions I used).

Regards,

John Paul Ashenfelter
CTO/Transitionpoint
[EMAIL PROTECTED]
- Original Message - 
From: "Dave Watts" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 16, 2003 3:25 PM
Subject: RE: Stats package


> > I am looking for a easy, free CF stats package. Nothing to
> > elaborate. I have provided something for my clients but it is
> > real raw. Would like to give them something more, some that I
> > can integrate quickly for my time is limited and to write one
> > now would be out of the question.
>
> Why does it have to be CF? I'd suggest Analog (http://www.analog.cx/) with
> ReportMagic (http://www.reportmagic.org/).
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
>
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Web stats packages [Re: Stats package]

2003-09-16 Thread John Paul Ashenfelter
I just installed awstats and analog/reportmagic. Both require perl, but both
are pretty useful. Analog/ReportMagic is easier to use and setup compared to
awstats, but awstats looks much nicer and has more extensive info. But I set
both up in a morning. There's also webalyzer (sp?) but haven't used in
years. They all generate web pages with stats (dynamic or on a schedule
depending on setup, details, blah, blah)

Both are opensource, free, cross-platform for web server (IIS, Apache, and
others) and run under Perl, so fine in Linux and Windows. Analog is probably
easiest for a quick and dirty project -- took less than an hour to get it
and reportmagic reporting off our log files. We only are crunching
5-10MB/day though, so small volume.

Regards,

John Paul Ashenfelter
CTO/Transitionpoint
[EMAIL PROTECTED]
- Original Message - 
From: "Eric Creese" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, September 16, 2003 3:07 PM
Subject: RE: Stats package


> I am sorry, Web traffic stats.
>
> -Original Message-
> From: John Paul Ashenfelter [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, September 16, 2003 2:05 PM
> To: CF-Talk
> Subject: Re: Stats package
>
>
> Stats for what? Calculating statistics? Web usage statisics? Something
else?
>
> Regards,
>
> John Paul Ashenfelter
> CTO/Transitionpoint
> [EMAIL PROTECTED]
> - Original Message - 
> From: "Eric Creese" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, September 16, 2003 2:47 PM
> Subject: Stats package
>
>
> > I am looking for a easy, free CF stats package. Nothing to elaborate. I
> have provided something for my clients but it is real raw. Would like to
> give them something more, some that I can integrate quickly for my time is
> limited and to write one now would be out of the question.
> >
> > Eric Creese
> > Database Administrator
> > [EMAIL PROTECTED]
> > http://www.eaa.org
> > http://www.airventure.org
> > 920.426.6130
> >
> >
>
> 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: stupid question (DWMX)

2003-09-16 Thread Tony Weeg
kinda retarded and such basic functionality that we love in hs+ and
cfstudio.

tony weeg
sr. web applications architect
navtrak, inc.
[EMAIL PROTECTED]
www.navtrak.net
office 410.548.2337
fax 410.860.2337


-Original Message-
From: John Wilker [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 4:12 PM
To: CF-Talk
Subject: RE: stupid question (DWMX)


Doesn't do it in code view for me either. Have to open the wizard to get
that. Dunno why

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 12:52 PM
To: CF-Talk
Subject: RE: stupid question (DWMX)


not in code view?

tony weeg
sr. web applications architect
navtrak, inc.
[EMAIL PROTECTED]
www.navtrak.net
office 410.548.2337
fax 410.860.2337


-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 3:53 PM
To: CF-Talk
Subject: RE: stupid question (DWMX)


> hey why hasn't macromedia made it so that when you drag
> an image from the left directory tree to the workspace
> it fills in the h/w of the image tag?
> 
> just another shortcomingdoesnt make sense?

It works fine for me, in design view. I do that all the time.

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




~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


Mail spooling issue

2003-09-16 Thread Casey C Cook
Has anyone experienced the mail spooler sending out like 14,000 emails, 
even though the CF statement only sends 1 e-mail to the 
spooler?...Bascially the same e-mail is being sent over and over and over 
quickly.  We only have the administrator set to check for new e-mails 
every 60 seconds.  What would cause it to rapid fire out 14k e-mails 
before we catch it? It only has done this 2 times over the past 2 months 
and the application has been on-line for a year and a half. This only 
seems to be happening on the US server and has not impacted the UK servers 
running the same application. Any thoughts?

Thanks much,
CC

This is a PRIVATE message. If you are not the intended recipient, please 
delete without copying and kindly advise us by e-mail of the mistake in 
delivery. NOTE: Regardless of content, this e-mail shall not operate to 
bind CSC to any order or other contract unless pursuant to explicit 
written agreement or government initiative expressly permitting the use of 
e-mail for such purpose.






"Andy Ousterhout" 
09/16/2003 01:01 PM
Please respond to cf-talk

 
To: CF-Talk <[EMAIL PROTECTED]>
cc: 
Subject:RE:  problem


http://

-Original Message-
From: J E VanOver [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 2:53 PM
To: CF-Talk
Subject: RE:  problem


Is that a proper url?  Shouldn't it start with http:// or file: ??

-Original Message-
From: AKERS,BRET (HP-SanDiego,ex1) [mailto:[EMAIL PROTECTED]
Sent: Tuesday, September 16, 2003 12:39 PM
To: CF-Talk
Subject:  problem


Hi All,

I've got a crazy problem with the  tag. When using it to
redirect to network locations, i.e. , I get the "Page cannot be
displayed" error unless I disable the "Show friendly http error messages"
checkbox in Internet explorer". Any idea of what's going on here? Running
CFMX 6 on a W2K server.

Thanks.



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


RE: stupid question (DWMX)

2003-09-16 Thread John Wilker
Doesn't do it in code view for me either. Have to open the wizard to get
that. Dunno why

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 12:52 PM
To: CF-Talk
Subject: RE: stupid question (DWMX)


not in code view?

tony weeg
sr. web applications architect
navtrak, inc.
[EMAIL PROTECTED]
www.navtrak.net
office 410.548.2337
fax 410.860.2337


-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, September 16, 2003 3:53 PM
To: CF-Talk
Subject: RE: stupid question (DWMX)


> hey why hasn't macromedia made it so that when you drag
> an image from the left directory tree to the workspace
> it fills in the h/w of the image tag?
> 
> just another shortcomingdoesnt make sense?

It works fine for me, in design view. I do that all the time.

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



~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


  1   2   3   >