RE: (OT) Is Microsoft Using ColdFusion?

2002-11-19 Thread Tilbrook, Peter
Yeah! Even Tel$tra (Australia's monopoly company for telecommunications)
uses CF!

-Original Message-
From: Ezine [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 20 November 2002 5:25 PM
To: CF-Talk
Subject: (OT) Is Microsoft Using ColdFusion?


Hey,

Check it out..  Microsoft Using ColdFusion for a specific service?

http://solutions.greatplains.com/FreeToWork1/form1_tdm.cfm?user=1&code=22&ci
d=48&mediatype=dm

'Great Plains Software Inc. is a wholly-owned subsidiary of Microsoft
Corporation. The names of actual companies and products mentioned herein may
be the trademarks of their respective owners. Microsoft will not share the
information you provide with third parties without your permission except
where necessary to complete the services or transactions you have requested,
or as required by law.'

Daniel Olivares
WorldWideWebz.com

Phone:  (760) 268-0504
Email: [EMAIL PROTECTED] 
URL:  http://www.worldwidewebz.com
<  mailto:[EMAIL PROTECTED] >




-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 1:25 AM
To: CF-Talk
Subject: Re: Server Scope / UDFs


> On Tuesday, Nov 19, 2002, at 12:05 US/Pacific, Dave Watts
> wrote:
>> Well, personally, I'm not much of a fan of the idea of
>> loading UDFs
>> into
>> memory anyway - memory is good for storing data, but is
>> wasted on code.

> Well, functions are just data. The benefit is that you
> don't have to
> include the file that defines the function...

I have a sneaky suspicion that  is
faster than  ...  or the cfscript
equivalent... I've never load tested it, but i would expect that the CF
processing engine, whether it's CF 5 pcode or CF MX Java has to take more
time to read in and create the function than to assign a pointer to it.

The pointer is after all only a byte or two of volatile memory lookup vs.
the function definition which is invariably larger, plus time to actually
parse and validate the code and make sure it's not missing a double-quote or
a close-parenthesis somewhere, etc.

Does anybody know for sure? Has anyone done any load testing to compare
them?

s. isaac dealey954-776-0046

new epoch  http://www.turnkey.to

lead architect, tapestry cms   http://products.turnkey.to

certified advanced coldfusion 5 developer
http://www.macromedia.com/v1/handlers/index.cfm?ID=21816




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



Can a web service call another local component?

2002-11-19 Thread Brook Davies
What I meant by this post, is that I have a component which in turn uses 
 to invoke another component. This works fine when the containing 
component is called locally.

But when I try to call it as a webservice, I get an error. If I remove the 
component reference within the web service component, then it works.

Is this a bug? Can anyone verify this...

Brook


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



(OT) Is Microsoft Using ColdFusion?

2002-11-19 Thread Ezine
Hey,

Check it out..  Microsoft Using ColdFusion for a specific service?

http://solutions.greatplains.com/FreeToWork1/form1_tdm.cfm?user=1&code=22&ci
d=48&mediatype=dm

'Great Plains Software Inc. is a wholly-owned subsidiary of Microsoft
Corporation. The names of actual companies and products mentioned herein may
be the trademarks of their respective owners. Microsoft will not share the
information you provide with third parties without your permission except
where necessary to complete the services or transactions you have requested,
or as required by law.'

Daniel Olivares
WorldWideWebz.com

Phone:  (760) 268-0504
Email: [EMAIL PROTECTED] 
URL:  http://www.worldwidewebz.com
<  mailto:[EMAIL PROTECTED] >




-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 20, 2002 1:25 AM
To: CF-Talk
Subject: Re: Server Scope / UDFs


> On Tuesday, Nov 19, 2002, at 12:05 US/Pacific, Dave Watts
> wrote:
>> Well, personally, I'm not much of a fan of the idea of
>> loading UDFs
>> into
>> memory anyway - memory is good for storing data, but is
>> wasted on code.

> Well, functions are just data. The benefit is that you
> don't have to
> include the file that defines the function...

I have a sneaky suspicion that  is
faster than  ...  or the cfscript
equivalent... I've never load tested it, but i would expect that the CF
processing engine, whether it's CF 5 pcode or CF MX Java has to take more
time to read in and create the function than to assign a pointer to it.

The pointer is after all only a byte or two of volatile memory lookup vs.
the function definition which is invariably larger, plus time to actually
parse and validate the code and make sure it's not missing a double-quote or
a close-parenthesis somewhere, etc.

Does anybody know for sure? Has anyone done any load testing to compare
them?

s. isaac dealey954-776-0046

new epoch  http://www.turnkey.to

lead architect, tapestry cms   http://products.turnkey.to

certified advanced coldfusion 5 developer
http://www.macromedia.com/v1/handlers/index.cfm?ID=21816



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



Re: Server Scope / UDFs

2002-11-19 Thread S . Isaac Dealey
> On Tuesday, Nov 19, 2002, at 12:05 US/Pacific, Dave Watts
> wrote:
>> Well, personally, I'm not much of a fan of the idea of
>> loading UDFs
>> into
>> memory anyway - memory is good for storing data, but is
>> wasted on code.

> Well, functions are just data. The benefit is that you
> don't have to
> include the file that defines the function...

I have a sneaky suspicion that  is
faster than  ...  or the cfscript
equivalent... I've never load tested it, but i would expect that the CF
processing engine, whether it's CF 5 pcode or CF MX Java has to take more
time to read in and create the function than to assign a pointer to it.

The pointer is after all only a byte or two of volatile memory lookup vs.
the function definition which is invariably larger, plus time to actually
parse and validate the code and make sure it's not missing a double-quote or
a close-parenthesis somewhere, etc.

Does anybody know for sure? Has anyone done any load testing to compare
them?

s. isaac dealey954-776-0046

new epoch  http://www.turnkey.to

lead architect, tapestry cms   http://products.turnkey.to

certified advanced coldfusion 5 developer
http://www.macromedia.com/v1/handlers/index.cfm?ID=21816


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



RE: Macromedia Studio MX

2002-11-19 Thread Mike Brunt
I love this SOT, here bloody here well done and much deserved.

http://www.pcmag.com/article2/0,4149,715068,00.asp I wish that poison snake
would bow out gracefully!

Mike Brunt - CTO
Webapper Services LLC
Blog - http://www.webapper.net
Downey CA Office
562.243.6255
AIM webappermb

Web Application Specialists

-Original Message-
From: Tilbrook, Peter [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 9:42 PM
To: CF-Talk
Subject: SOT: Macromedia Studio MX


MM (Macromedia - not Mere Male) have apparently sold more than 250,000
copies of Studio MX since its June introduction - making it MM's most
popular product yet. Pretty good result really. And if you are considering
upgrading to MX it's available for US$799 until December 31 (US$100 cheaper
than it will be after that).

And if that wasn't good enough MM have since gone on to win the "Best
Development Tool" award at the PC Magazine Awards for Technical Excellence!
Well done MM!

==
Peter Tilbrook
Project Officer
Strategic Development
Australian Building Codes Board
GPO Box 9839
CANBERRA ACT 2601
AUSTRALIA

   E-Mail: [EMAIL PROTECTED]
Telephone: (02) 6213 6731
   Mobile: 0439 401 823
Facsimile: (02) 6213 7287


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

**

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
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: HTML from CFC's in a shared scope

2002-11-19 Thread S . Isaac Dealey
> On Tuesday, Nov 19, 2002, at 13:57 US/Pacific,
> S. Isaac Dealey wrote:
>>> Correct. Or  for that matter. This is a
>>> known bug. Oh, so there's a plan for this to change
>>> in the future... cool. :)

> Not if I have anything to do with it :)

> FWIW, I think it's fine that CFCs in shared scopes can't
> output HTML - I don't like that idiom so I'm perfectly
> happy for that bug not to be fixed.

>>> The second example will work on the first hit only.
>>> As it stands, many people (myself included) think
>>> it's a bad idea to directly output from the method.
>>> But - that's another discussion...

> *grin* Well, there you go... Ray and I are in agreement
> on this one.

Well, I think at the very least you should be able to to output html
(anything really) directly from #application.mycfc.mymethod()# where the
return value from mycfc.mymethod() is a string value, and have it work on
more than the first hit on a given page. Whether that's good form or not is
an entirely different story, but I think not being able to is like saying
"You can't bring (physically carry) that lamp in here because the walls are
beige." So I'd advocate some kind of fix for it -- even if it's not a "best
practice".


s. isaac dealey954-776-0046

new epoch  http://www.turnkey.to

lead architect, tapestry cms   http://products.turnkey.to

certified advanced coldfusion 5 developer
http://www.macromedia.com/v1/handlers/index.cfm?ID=21816


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



RE: Web Services Shortcomings was (RE: WDDX and large recordsets)

2002-11-19 Thread Stacy Young
WS's on Mx has been a little shaky but thats great news Sean thx!

Stace

-Original Message-
From: Sean A Corfield [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, November 20, 2002 12:02 AM
To: CF-Talk
Subject: Re: Web Services Shortcomings was (RE: WDDX and large recordsets)

On Tuesday, Nov 19, 2002, at 17:16 US/Pacific, Samuel Neff wrote:
> I would certainly second that request.  My experience with complex web
> services and interoperability with CFMX has not been positive (to put 
> it
> nicely) and responses from tech support often push issues off on Axis
> (which has not always been accurate).

ColdFusion MX's support for Web Services *is* dependent on Axis. You 
will be pleased to know that the Updater program for CFMX will include 
Axis updates as well so CFMX will 'catch up' with the Axis releases 
over time.

Sean A Corfield -- Director, Architecture
Web Technology Group -- Macromedia, Inc.
tel: (415) 252-2287 -- cell: (415) 717-8473
aim: seancorfield -- http://www.macromedia.com
An Architect's View -- http://www.corfield.org/blog/

Introducing Macromedia Contribute. Web publishing for everyone.
Learn more at http://www.macromedia.com/contribute


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



RE: Macromedia Studio MX

2002-11-19 Thread Dave Notik
You sure you don't work for Macromedia?  :)

Yea, I've been using Studio for a few months, and the entire suite is
very well designed.  DWMX, in particular, kicks ass.

--D

_ 
David Notik 
Digital202, LLC 
Imagination gone digital. 
WWW: www.digital202.com 
E-mail: [EMAIL PROTECTED] 
Work: 206.575.1717 
Cell: 206.351.3948 


-Original Message-
From: Tilbrook, Peter [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, November 19, 2002 9:42 PM
To: CF-Talk
Subject: SOT: Macromedia Studio MX

MM (Macromedia - not Mere Male) have apparently sold more than 250,000
copies of Studio MX since its June introduction - making it MM's most
popular product yet. Pretty good result really. And if you are
considering
upgrading to MX it's available for US$799 until December 31 (US$100
cheaper
than it will be after that).

And if that wasn't good enough MM have since gone on to win the "Best
Development Tool" award at the PC Magazine Awards for Technical
Excellence!
Well done MM!

==
Peter Tilbrook
Project Officer
Strategic Development
Australian Building Codes Board
GPO Box 9839
CANBERRA ACT 2601
AUSTRALIA

   E-Mail: [EMAIL PROTECTED]
Telephone: (02) 6213 6731
   Mobile: 0439 401 823
Facsimile: (02) 6213 7287


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

**

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



SOT: Macromedia Studio MX

2002-11-19 Thread Tilbrook, Peter
MM (Macromedia - not Mere Male) have apparently sold more than 250,000
copies of Studio MX since its June introduction - making it MM's most
popular product yet. Pretty good result really. And if you are considering
upgrading to MX it's available for US$799 until December 31 (US$100 cheaper
than it will be after that).

And if that wasn't good enough MM have since gone on to win the "Best
Development Tool" award at the PC Magazine Awards for Technical Excellence!
Well done MM!

==
Peter Tilbrook
Project Officer
Strategic Development
Australian Building Codes Board
GPO Box 9839
CANBERRA ACT 2601
AUSTRALIA

   E-Mail: [EMAIL PROTECTED]
Telephone: (02) 6213 6731
   Mobile: 0439 401 823
Facsimile: (02) 6213 7287


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

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



RE: HTML from CFC's in a shared scope

2002-11-19 Thread Matthew Walker
> The second example will work on the first hit only. As it stands, many
> people (myself included) think it's a bad idea to directly output from
> the method. But - that's another discussion...

Well, I don't have any production code that outputs from methods, but I
find it very useful to be able to shove a cfdump in there. Point being
that there can be situations where outputting in a cfc is legitamate.
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Error 232

2002-11-19 Thread Antony Sideropoulos
Hi

I am running CF5 with a variety of MS Access and Oracle 8 databases.

A recurring problem I experience is that on pages with long lists of query 
data, if the user clicks away to another page before the page finishes 
loading, my server.log file fills up with Error 232 messages.

I believe that 232 is an error that occurs when the database is unable to 
communicate with the page requesting the data - in this case, because the 
user has moved on to a new page, the data has nowhere to go.

The end result of the above, is that the server.log file grows alarmingly if 
not closely monitored - once it grew to 1.5Gb (that's not a typo) and took 
up all the space on the server c:\ and crashed the server :-(

The log file cannot be deleted because CF is continually writing to it, and 
the file is in use.  The only way to stop it is to restart the CF 
Application Service - thus also clearing all application and session 
variables, and stuffing up all the applications on the server.

Can I tell CF to stopp logging 232 errors?  Or can I stop the error?

I know one way is to limit query output to 50 rows per page, but in my 
current application that would result in a poor user interface.

Any ideas?




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



Re: Web Services Shortcomings was (RE: WDDX and large recordsets)

2002-11-19 Thread Sean A Corfield
On Tuesday, Nov 19, 2002, at 17:16 US/Pacific, Samuel Neff wrote:
> I would certainly second that request.  My experience with complex web
> services and interoperability with CFMX has not been positive (to put 
> it
> nicely) and responses from tech support often push issues off on Axis
> (which has not always been accurate).

ColdFusion MX's support for Web Services *is* dependent on Axis. You 
will be pleased to know that the Updater program for CFMX will include 
Axis updates as well so CFMX will 'catch up' with the Axis releases 
over time.

Sean A Corfield -- Director, Architecture
Web Technology Group -- Macromedia, Inc.
tel: (415) 252-2287 -- cell: (415) 717-8473
aim: seancorfield -- http://www.macromedia.com
An Architect's View -- http://www.corfield.org/blog/

Introducing Macromedia Contribute. Web publishing for everyone.
Learn more at http://www.macromedia.com/contribute

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



Re: Server Scope / UDFs

2002-11-19 Thread Sean A Corfield
On Tuesday, Nov 19, 2002, at 12:05 US/Pacific, Dave Watts wrote:
> Well, personally, I'm not much of a fan of the idea of loading UDFs 
> into
> memory anyway - memory is good for storing data, but is wasted on code.

Well, functions are just data. The benefit is that you don't have to 
include the file that defines the function...

Sean A Corfield -- Director, Architecture
Web Technology Group -- Macromedia, Inc.
tel: (415) 252-2287 -- cell: (415) 717-8473
aim: seancorfield -- http://www.macromedia.com
An Architect's View -- http://www.corfield.org/blog/

Introducing Macromedia Contribute. Web publishing for everyone.
Learn more at http://www.macromedia.com/contribute

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



SOT: CFDEV.com

2002-11-19 Thread Tilbrook, Peter
Attention Pete Freitag.

You do not appear to accept American Express (pretty strange for a US based
company).

Can you please send an invoice for ActiveEdit/ActiveScan/ActiveSpell for
ColdFusion to the address below.

Thanks :)

==
Peter Tilbrook
Project Officer
Strategic Development
Australian Building Codes Board
GPO Box 9839
CANBERRA ACT 2601
AUSTRALIA

   E-Mail: [EMAIL PROTECTED]
Telephone: (02) 6213 6731
   Mobile: 0439 401 823
Facsimile: (02) 6213 7287


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

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



Re: HTML from CFC's in a shared scope

2002-11-19 Thread Sean A Corfield
On Tuesday, Nov 19, 2002, at 13:57 US/Pacific, S. Isaac Dealey wrote:
>> Correct. Or  for that matter. This is a known bug.
> Oh, so there's a plan for this to change in the future... cool. :)

Not if I have anything to do with it :)

FWIW, I think it's fine that CFCs in shared scopes can't output HTML - 
I don't like that idiom so I'm perfectly happy for that bug not to be 
fixed.

>> The second example will work on the first hit only. As it stands, many
>> people (myself included) think it's a bad idea to directly output from
>> the method. But - that's another discussion...

*grin* Well, there you go... Ray and I are in agreement on this one.

"I have always wished that my computer would be
  as easy to use as my telephone.
  My wish has come true - I no longer know how to
  use my telephone."  -- Bjarne Stroustrup

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



RE: nesting cfoutputs?

2002-11-19 Thread Ezine
lol, In 4.5, you could nest cfoutputs without the group attribute by putting
them inside a cfincluded document.

Daniel Olivares
WorldWideWebz.com

Phone:  (760) 268-0504
Email: [EMAIL PROTECTED] 
URL:  http://www.worldwidewebz.com
<  mailto:[EMAIL PROTECTED] >




-Original Message-
From: Matthew Walker [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 11:31 PM
To: CF-Talk
Subject: RE: nesting cfoutputs?


Sorry -- misread your message. Yes, weird, works for me too cfmx/iis.

> -Original Message-
> From: Tony Weeg [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 20 November 2002 5:23 p.m.
> To: CF-Talk
> Subject: nesting cfoutputs?
>
>
> not that i care or would ever need to do this, but oddly
> enough i am able toi can nest cfoutputs?
>
> we werent able to in cf5. i dont think?
>
> 
>
> #tony##tony#
>
> i am running cfmx on iis5
>
> jussa wondrin'
>
> ...tony
>
> tony weeg
> [EMAIL PROTECTED]
> www.revolutionwebdesign.com
> rEvOlUtIoN wEb DeSiGn
> 410.334.6331
>
>

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



RE: nesting cfoutputs?

2002-11-19 Thread Matthew Walker
Sorry -- misread your message. Yes, weird, works for me too cfmx/iis.

> -Original Message-
> From: Tony Weeg [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 20 November 2002 5:23 p.m.
> To: CF-Talk
> Subject: nesting cfoutputs?
> 
> 
> not that i care or would ever need to do this, but oddly
> enough i am able toi can nest cfoutputs?
> 
> we werent able to in cf5. i dont think?
> 
> 
> 
> #tony##tony#
> 
> i am running cfmx on iis5
> 
> jussa wondrin'
> 
> ...tony
> 
> tony weeg
> [EMAIL PROTECTED]
> www.revolutionwebdesign.com
> rEvOlUtIoN wEb DeSiGn
> 410.334.6331 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: nesting cfoutputs?

2002-11-19 Thread Matthew Walker
Not unless you use a group attribute. Otherwise there wouldn't be a
point, would there?

> -Original Message-
> From: Tony Weeg [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 20 November 2002 5:23 p.m.
> To: CF-Talk
> Subject: nesting cfoutputs?
> 
> 
> not that i care or would ever need to do this, but oddly
> enough i am able toi can nest cfoutputs?
> 
> we werent able to in cf5. i dont think?
> 
> 
> 
> #tony##tony#
> 
> i am running cfmx on iis5
> 
> jussa wondrin'
> 
> ...tony
> 
> tony weeg
> [EMAIL PROTECTED]
> www.revolutionwebdesign.com
> rEvOlUtIoN wEb DeSiGn
> 410.334.6331 
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



nesting cfoutputs?

2002-11-19 Thread Tony Weeg
not that i care or would ever need to do this, but oddly
enough i am able toi can nest cfoutputs?

we werent able to in cf5. i dont think?



#tony##tony#

i am running cfmx on iis5

jussa wondrin'

...tony

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

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



RE: MX and UPS XML

2002-11-19 Thread Erik Yowell
Here's a UDF I adapted from an amalgamation of Jon's code and Ben
Forta's HTTPGet UDF for Posting of UPS XML Posts - just append together
the XML request packet and the tracking or service selection packet
using cfsavecontent to build the materials. Unless of course there's
some sort of toString() method for converting XML structures to string
for later appending, dunno - I just got lazy and used the savecontent
tag. Oh, and it needs JRE 1.4 (SSL improvements) or I suppose you can
load JSSE into the UDF, but once again - lazy. 

function RawPost(urlString,messageString) {
   // Variables
   var oURL = "";
   var oPage = "";
   var oInputStream = "";
   var oOutputStream = "";
   var oConnection = "";
   var oReader = "";
   var oWriter = "";
   var oBuffer = "";
   var sLine = "";
   var sOutput = "";
   
   // Init class
   oURL = CreateObject("java", "java.net.URL");
   oWriter = CreateObject("java", "java.io.OutputStreamWriter");
   oReader = CreateObject("java", "java.io.InputStreamReader"); 
   oBuffer = CreateObject("java", "java.io.BufferedReader");
   
   // Create URL Instance
   oInstance = oURL.init(urlString);
   
   // Open URL Connection
   oConnection = oInstance.openConnection();
   oConnection.setDoInput(true);
   oConnection.setDoOutput(true);
   oConnection.setUseCaches(false);   
   oConnection.setAllowUserInteraction("false");
   oConnection.setFollowRedirects("false");
   oConnection.setRequestMethod("POST");
  
   nContentLength = JavaCast("string",Len(messageString));
   
   oConnection.setRequestProperty("HOST",CGI.REMOTE_HOST & ":80");
   oConnection.setRequestProperty("CONTENT-LENGTH",nContentLength);
   oConnection.setRequestProperty("ACCEPT","*/*");
   oConnection.setRequestProperty("USER_AGENT",CGI.HTTP_REFERER);
  
   oOutputStream = oConnection.getOutputStream();
   
   oWriter.init(oOutputStream); 
   oWriter.write(messageString); 
   oWriter.flush(); 
   oWriter.close();  
   
   // Get stream
   oInputStream = oConnection.getInputStream();
   oReader.init(oInputStream);
   oBufferStream = oBuffer.init(oReader);

   sLine = oBuffer.readLine();
   
   while (IsDefined("sLine")) {
 sOutput = sOutput & sLine;
 sLine = oBuffer.readLine();
}
   
   // Close stream (Close method doesn't seem to work too well here?) 
   // Don't know if setting to nothing closes it or not, figure that out
later...   
   oInputStream = "";
   oConnection.disconnect();   

   // Parse Response 
   sOutput = XMLParse(sOutput);

   return sOutput;
}

Erik Yowell
[EMAIL PROTECTED]
http://www.shortfusemedia.com


-Original Message-
From: Jon Hall [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, November 19, 2002 3:07 PM
To: CF-Talk
Subject: Re: MX and UPS XML

I should write up a CF/UPS XML FAQ or something, seeing as how often
this question comes up.

CFHTTP can not be used to POST XML because CFHTTP encodes all
POSTS, unless the receiver specifically takes steps to decode the XML.
These companies are in the minority in my experience though. UPS
expects non-encoded XML. That's why it doesn't work. The type=xml does
not construct the HTTP commands. It just opens a socket and sends xml.

cfx_rawsocket probably works with the 1.4 JRE, because the 1.4 JRE
integrates SSL (JSSE), which the 1.3 JRE does not. CFHTTP with a
default CF install will not work with SSL either. UPS requires SSL.

I posted some MX/Java code to do http posts, and the source for a
java cfx tag was posted within the last few weeks. A raw socket tag
will work as well, but you will need to construct the http posts
yourself...not difficult, just another step. If you are using MX
enterprise, you can use the Jakarta JSP Taglibs also, which are pretty
neat imo.


-- 
jon
mailto:[EMAIL PROTECTED]

Tuesday, November 19, 2002, 4:14:48 PM, you wrote:

C> We actually got MX to talk to UPS for tracking.  We had to use
C> CFX_RawSocket http://www.iexp.com/

C> Of course according to all of CFX_RawSocket's documentation it should
C> not work under MX.  We upgraded the JRE to 1.4 and it appears to work
C> for UPS tracking numbers.

C> I have no idea what we will run into by upgrading to 1.4, but we will
C> keep playing with it and see if there are any downsides.





>> -Original Message-
>> From: Chad [mailto:[EMAIL PROTECTED]]
>> Sent: Tuesday, November 19, 2002 2:52 PM
>> To: CF-Talk
>> Subject: RE: MX and UPS XML
>> 
>> I hate to beat this into the ground, but why won't this type of XML
>> passing work with UPS?  We started looking at the Java example they
>> sent.  It works, but it sure is complicated!
>> 


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



RE: BRAIN TEASER: Inserting a query into a table?

2002-11-19 Thread Mark A. Kruger - CFG
Novak,

Nothing comes to mind that is simpler than looping. I suppose you could save
the whole thing to a flat file using the querytoCSV custom tag, then execute
a DTS package to import it. You could also create XML and post it to the SQL
server using SQL's XML mapping capabilities.  I'm not sure that either of
these options is simpler than just looping through your data.

Either that or you have to do something other than using the set of query
tools in CF.

-mk


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 8:31 PM
To: CF-Talk
Subject: BRAIN TEASER: Inserting a query into a table?


Hi All,

Here's an interesting twist.  I have a "virtual" query (for lack of a better
term) that I created and populated in ColdFusion using the various query
functions in CFMX.  I can "CFDUMP" the query on the screen and everything
looks perfect.

BUT... what I really want to do is dump the contents of that query into an
SQL Server 2000 database.  I'd prefer something easy and automated such as:

INSERT INTO table
SELECT * FROM newQuery

I'd prefer it if I didn't have to loop over each row in my newQuery and
insert it one row at a time.  Can this be done?  Has anyone ever done
anything like this before?  Some example code would be fantastic.

-Novak


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



Re: Large Corporations that use ColdFusion

2002-11-19 Thread Michael Vinson
Rockwell Software (Rockwell Automation, Allen-Bradley, etc.) started 
w/CF about 5 years ago -- forums, support, news, etc. Since then the 
training department has licensed Thinq's Training Server Learning 
Management System (CF + Oracle).  And most recently, I put up an 
Access-based training e-store thingy (internal-only)... If I keep 
reading this list, then maybe someday they'll let me punch a hole 
through their firewall and serve up some macromedia 
cf/director/flash/authorware e-learning goodies!

-mv

Winn, Ron wrote:

>Philips and Bank of America
>
>-Original Message-
>From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
>Sent: Tuesday, November 19, 2002 12:51 PM
>To: CF-Talk
>Subject: RE: Large Corporations that use ColdFusion
>
>I am currently working a project at a medium sized chemical company who uses
>it for their ERP system.  Inventory manageent, financials, manufacturing
>process, etc...
>
>-Cameron
>
>-
>Cameron Childress
>Sumo Consulting Inc.
>---
>cell:  678-637-5072
>aim:   cameroncf
>email: [EMAIL PROTECTED]
>
>
>>-Original Message-
>>From: Rick Root [mailto:[EMAIL PROTECTED]]
>>Sent: Tuesday, November 19, 2002 12:01 PM
>>To: CF-Talk
>>Subject: Re: Large Corporations that use ColdFusion
>>
>>
>>Parts of Duke University use it.. I'm not sure how many parts
>>though.  I
>>know parts of the University of North Carolina use it too
>>(more heavily,
>>I think, than we do, actually).
>>
>>Progress Energy (which owns Carolina Power & Light, Florida
>>Power, and
>>some other companies) uses it pretty heavily internally, and
>>somewhat on
>>their external site too (they're using TeamSite, and they do
>>some custom
>>stuff too for job postings and things).  And before you say anything
>>about Progress Energy not being a large corporation because
>>you've never
>>heard of them, they are Fortune 250 I think. =)  (I used to
>>work there)
>>
>>  - Rick
>>
>>
>>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



BRAIN TEASER: Inserting a query into a table?

2002-11-19 Thread cf-talk
Hi All,

Here's an interesting twist.  I have a "virtual" query (for lack of a better
term) that I created and populated in ColdFusion using the various query
functions in CFMX.  I can "CFDUMP" the query on the screen and everything
looks perfect.

BUT... what I really want to do is dump the contents of that query into an
SQL Server 2000 database.  I'd prefer something easy and automated such as:

INSERT INTO table
SELECT * FROM newQuery

I'd prefer it if I didn't have to loop over each row in my newQuery and
insert it one row at a time.  Can this be done?  Has anyone ever done
anything like this before?  Some example code would be fantastic.

-Novak

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



RE: Can a web service call another local component?

2002-11-19 Thread Tony Weeg
have you tried to make a simple onelike this

==Code begin paste into invokeThis.cfm=

http://localhost/test.cfc?wsdl";
returnVariable="TestWebService"
>









===End code snippet for invokeThis.cfm

and then this code below for test.cfc

===Begin snippet==








   








  



===End Snippet

just to see if you can invoke locally?

can you view the ?wsdl in your browser calling it locally?

like this...

http://localhost/test.cfc?wsdl

maybe this will help?

tony

-Original Message-
From: Brook Davies [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, November 19, 2002 8:31 PM
To: CF-Talk
Subject: Can a web service call another local component?


I just tried to call a CFMX Web Service which in turned called a
component
using standard  syntax. I got errors. Is this
also a
known bug?

I tested the same CFC, but called it locally as opposed to
calling it as a web service and it worked fine.

Brook



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



RE: Can a web service call another local component?

2002-11-19 Thread Tony Weeg
i have successfully created a cfc, checked the wsdl
and called it locally and it worked fine.
tw


-Original Message-
From: Brook Davies [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, November 19, 2002 8:31 PM
To: CF-Talk
Subject: Can a web service call another local component?


I just tried to call a CFMX Web Service which in turned called a
component
using standard  syntax. I got errors. Is this
also a
known bug?

I tested the same CFC, but called it locally as opposed to
calling it as a web service and it worked fine.

Brook



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



Can a web service call another local component?

2002-11-19 Thread Brook Davies
I just tried to call a CFMX Web Service which in turned called a component
using standard  syntax. I got errors. Is this also a
known bug?

I tested the same CFC, but called it locally as opposed to
calling it as a web service and it worked fine.

Brook


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



RE: WDDX and large recordsets

2002-11-19 Thread Samuel Neff
The WDDX grammar is extremely verbose.. More so than most XML.  My
suggestion would be to create a custom XML Schema for your data, send
with CFHTTP, and parse with XmlParse.  You can even wrap it inside
 and  and call it a SOAP web service.  :-)

I've had many issues with medium size WDDX packets (1000-2000 elements)
on the JavaScript side.  JS is just too slow to serialize that much data
(this is data entered by the user through a complex DHTML interface).

My $0.02.

Sam


> -Original Message-
> From: Brook Davies [mailto:[EMAIL PROTECTED]] 
> Sent: Tuesday, November 19, 2002 6:35 PM
> To: CF-Talk
> Subject: WDDX and large recordsets
> 
> 
> Can anyone share there experience using WDDX and large record 
> sets? Any 
> caveats?
> 
> Brook
> 


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



RE: Web Services Shortcomings was (RE: WDDX and large recordsets)

2002-11-19 Thread Samuel Neff
I would certainly second that request.  My experience with complex web
services and interoperability with CFMX has not been positive (to put it
nicely) and responses from tech support often push issues off on Axis
(which has not always been accurate).

Sam
Team MM for CF


> -Original Message-
> From: Tony Weeg [mailto:[EMAIL PROTECTED]] 
> Sent: Tuesday, November 19, 2002 7:29 PM
> To: CF-Talk
> Subject: Web Services Shortcomings was (RE: WDDX and large recordsets)
> 
> 
> Are there plans within MM to make CFMX and webServices
> more like .NET and webServices.  I mean, not really like .NET 
> and webServices, but more along the interoperability lines.
> >From my experience, and what Brook is going through there
> seem to be some limitations...I wonder if someone from MM 
> could chime in here and let us know where MM is really 
> heading with webServices and CFMX in the future...
> 
> thanks.
> tony
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: WDDX and large recordsets

2002-11-19 Thread Brook Davies
I just tried to call a CFMX Web Service which in turned called a component 
using standard  syntax. I got errors. Is this also a 
known bug?  I test the same CFC, but called it locally as opposed to 
calling it as a web service and it worked fine.

Brook


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



RE: WDDX and large recordsets

2002-11-19 Thread Raymond Camden
Be aware there is a known issue deserializing a large wddx packet that
contains datetime values. This will be fixed in the next updater.

===
Raymond Camden, ColdFusion Jedi Master for Hire

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

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

> -Original Message-
> From: Brook Davies [mailto:[EMAIL PROTECTED]] 
> Sent: Tuesday, November 19, 2002 7:21 PM
> To: CF-Talk
> Subject: RE: WDDX and large recordsets
> 
> 
> I'm trying to find a work around for the inability to pass 
> two CF Queries 
> objects via a web service. I tried to create a stucture 
> containing both 
> queries and this failed with a de serialization error. 
> Apparently it's a 
> bug. So I thought I would try WDDX. Which Works, but like you 
> say - may be 
> slow.
> 
> Luckily, the exchange of data will not happen very frequently.
> 
> Brook
> 
> At 07:10 PM 19/11/02 -0500, you wrote:
> >If u are parsing out.. way too much data into WDDX...or 
> back.. this will
> >affect
> >your performance in CFMX.
> >
> >Joe


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



Problem Determining Image Size

2002-11-19 Thread Bob Haroche
I'm using the custom tag imagesize to get the width/height of uploaded
images. I'm finding a problem sometimes with very simple jpeg uploads.
Say the image is 200 x 200. I can upload it to the server and it
remains 200 x 200 (I've checked), but the imagesize tag tells me the
image is 112 x 112.

If I take the same image into Fireworks and re-export, again as a jpeg
with same 200 x 200 dimensions, this time the imagesize tag reports
the correct dimensions.

Is there a known issue with either CF and/or something to do with
exporting jpegs -- eg, corrupt image info in the binary jpeg file?

-
Regards,
Bob Haroche
O n P o i n t  S o l u t i o n s
www.OnPointSolutions.com

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



Web Services Shortcomings was (RE: WDDX and large recordsets)

2002-11-19 Thread Tony Weeg
Are there plans within MM to make CFMX and webServices
more like .NET and webServices.  I mean, not really like .NET
and webServices, but more along the interoperability lines.
>From my experience, and what Brook is going through there
seem to be some limitations...I wonder if someone from MM could
chime in here and let us know where MM is really heading with
webServices and CFMX in the future...

thanks.
tony

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



Re: secure email...

2002-11-19 Thread Jochem van Dieten
Matt Robertson wrote:

> You can log in to an smtp server with a mail message header??

If I remember the RFC right, one form of authentication is an extension 
of the envelope from where you just add a space and a password after the 
From. Considering the envelope from is copied from the from attribute of 
cfmail that part might just be possible. You have to subsequently reset 
the From inside the actual headers using an additional cfmailparam so 
the From in the mail headers becomes a valid address and recipients 
don't see the password, but in theory it works (if you can make sure the 
mailer uses EHLO instead of HELO, which I couldn't).

> This I gotta see.  :)  

Second. If this works I doubt it is portable to MX because the From 
address has to be a valid email address so you can't add a password to 
it, but the theoretical possibility is there.

Jochem

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



RE: WDDX and large recordsets

2002-11-19 Thread Brook Davies
I'm trying to find a work around for the inability to pass two CF Queries 
objects via a web service. I tried to create a stucture containing both 
queries and this failed with a de serialization error. Apparently it's a 
bug. So I thought I would try WDDX. Which Works, but like you say - may be 
slow.

Luckily, the exchange of data will not happen very frequently.

Brook

At 07:10 PM 19/11/02 -0500, you wrote:
>If u are parsing out.. way too much data into WDDX...or back.. this will
>affect
>your performance in CFMX.
>
>Joe
>
>
> > -Original Message-
> > From: Brook Davies [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, November 19, 2002 6:35 PM
> > To: CF-Talk
> > Subject: WDDX and large recordsets
> >
> >
> > Can anyone share there experience using WDDX and large record sets? Any
> > caveats?
> >
> > Brook
> >
> >
> >
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: WDDX and large recordsets

2002-11-19 Thread Joe Eugene
If u are parsing out.. way too much data into WDDX...or back.. this will
affect
your performance in CFMX.

Joe


> -Original Message-
> From: Brook Davies [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 6:35 PM
> To: CF-Talk
> Subject: WDDX and large recordsets
>
>
> Can anyone share there experience using WDDX and large record sets? Any
> caveats?
>
> Brook
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: WDDX and large recordsets

2002-11-19 Thread Brook Davies
Between 50,000 and 300,000 large some with up to 8 or more columns, but 
most with smaller 2-4 column recordsets.




At 04:58 PM 19/11/02 -0700, you wrote:
>How large?
>
> >>> [EMAIL PROTECTED] 11/19/02 04:34PM >>>
>Can anyone share there experience using WDDX and large record sets? Any
>
>caveats?
>
>Brook
>
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: WDDX and large recordsets

2002-11-19 Thread Willy Ray
How large?

>>> [EMAIL PROTECTED] 11/19/02 04:34PM >>>
Can anyone share there experience using WDDX and large record sets? Any

caveats?

Brook



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



WDDX and large recordsets

2002-11-19 Thread Brook Davies
Can anyone share there experience using WDDX and large record sets? Any 
caveats?

Brook


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



RE: hyperlink

2002-11-19 Thread Russ
I did this a way that was simple to me at the time, and I don't
necessarily know if it was the most efficient way, but...

On my iFrame, I had the content feed from the database, or it would load
a separate page, all determined by the URL.

If you want to force information to be pushed to the ENTIRE page, I
don't see why you couldn't just send your href to target="_top".

HTH,

Russ

Russ Unger
Managing Partner
blueChrome design, LLC
www.bluechromedesign.com
312.593.4260 :office
877.433.8427 :pager
312.873.4033 :fax


> -Original Message-
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED]] 
> Sent: Tuesday, November 19, 2002 4:11 PM
> To: CF-Talk
> Subject:  hyperlink
> 
> 
> Thanks in advance.
> 
> I have a an iframe within a page, there's a hyperlink in the 
> page referenced 
> within the iframe.  When I click on the hyperlink, it goes to 
> the page and displays the new page from within the iframe.  
> 
> How do I get the hyperlink in the iframe to push the new page 
> to replace the 
> page that has the iframe?
> 
> IFRAME.CFM
>  src="home_content_iframe.cfm" scrolling="No" name="hit">
> 
> HOME_CONTENT_IFRAME.CFM
> Click here
> 
> 
> Thanks.
> 
> D- 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: MX and UPS XML

2002-11-19 Thread Jon Hall
I should write up a CF/UPS XML FAQ or something, seeing as how often
this question comes up.

CFHTTP can not be used to POST XML because CFHTTP encodes all
POSTS, unless the receiver specifically takes steps to decode the XML.
These companies are in the minority in my experience though. UPS
expects non-encoded XML. That's why it doesn't work. The type=xml does
not construct the HTTP commands. It just opens a socket and sends xml.

cfx_rawsocket probably works with the 1.4 JRE, because the 1.4 JRE
integrates SSL (JSSE), which the 1.3 JRE does not. CFHTTP with a
default CF install will not work with SSL either. UPS requires SSL.

I posted some MX/Java code to do http posts, and the source for a
java cfx tag was posted within the last few weeks. A raw socket tag
will work as well, but you will need to construct the http posts
yourself...not difficult, just another step. If you are using MX
enterprise, you can use the Jakarta JSP Taglibs also, which are pretty
neat imo.


-- 
jon
mailto:[EMAIL PROTECTED]

Tuesday, November 19, 2002, 4:14:48 PM, you wrote:

C> We actually got MX to talk to UPS for tracking.  We had to use
C> CFX_RawSocket http://www.iexp.com/

C> Of course according to all of CFX_RawSocket's documentation it should
C> not work under MX.  We upgraded the JRE to 1.4 and it appears to work
C> for UPS tracking numbers.

C> I have no idea what we will run into by upgrading to 1.4, but we will
C> keep playing with it and see if there are any downsides.





>> -Original Message-
>> From: Chad [mailto:[EMAIL PROTECTED]]
>> Sent: Tuesday, November 19, 2002 2:52 PM
>> To: CF-Talk
>> Subject: RE: MX and UPS XML
>> 
>> I hate to beat this into the ground, but why won't this type of XML
>> passing work with UPS?  We started looking at the Java example they
>> sent.  It works, but it sure is complicated!
>> 

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



RE: hyperlink

2002-11-19 Thread Ben Doom
The target="_top" attribute in your anchor tag should make the link open up
in the topmost frame, iframe, etc.



  --Ben Doom
Programmer & General Lackey
Moonbow Software

: -Original Message-
: From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
: Sent: Tuesday, November 19, 2002 5:11 PM
: To: CF-Talk
: Subject:  hyperlink
:
:
: Thanks in advance.
:
: I have a an iframe within a page, there's a hyperlink in the page
: referenced
: within the iframe.  When I click on the hyperlink, it goes to the page and
: displays the new page from within the iframe.
:
: How do I get the hyperlink in the iframe to push the new page to
: replace the
: page that has the iframe?
:
: IFRAME.CFM
: 
:
: HOME_CONTENT_IFRAME.CFM
: Click here
:
:
: Thanks.
:
: D-
: 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: hyperlink

2002-11-19 Thread Antony Sideropoulos
Try:

HOME_CONTENT_IFRAME.CFM
Click here

>
>Thanks in advance.
>
>I have a an iframe within a page, there's a hyperlink in the page 
>referenced
>within the iframe.  When I click on the hyperlink, it goes to the page and
>displays the new page from within the iframe.
>
>How do I get the hyperlink in the iframe to push the new page to replace 
>the
>page that has the iframe?
>
>IFRAME.CFM
>src="home_content_iframe.cfm" scrolling="No" name="hit">
>
>HOME_CONTENT_IFRAME.CFM
>Click here
>
>
>Thanks.
>
>D-
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: RegExpression Question

2002-11-19 Thread Andy Ousterhout
No problem.  Didn't take it so.  Always appreciate the help.

-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 3:10 PM
To: CF-Talk
Subject: RE: RegExpression Question


Ahh okay, that explains it... in reviewing my previous message -- I didn't
intend it to sound as critical as it appeared to me...

> Isaac,

> Thanks for the link.  This is my first attempted usage of RegEx

> Andy

> -Original Message-
> From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 11:31 AM
> To: CF-Talk
> Subject: Re: RegExpression Question


>> I want to find any of the following:
>> "Andy"
>> (Andy)
>> 'Andy'
>>  in a string, but not find
>> "andy was here (not)

>> I know the following will find each of the three options if I do it 3
>> times.
>> Can I find all 1 one statement without finding ["andy was here (not] ?

>> REFind("[]'*'[]", "Find this 'here'")
>> REFind("[](*)[]", "Find this (here)")
>> REFind("[]""*""[]", "Find this ""here""")

> You might want to try [EMAIL PROTECTED]

> although -- the expressions in this example look all wrong... you're not
> actually using * like that in your expression are you? That's a special
> character in regex meaning "zero or more instances" of the previous
> character or subexpression. And [] means "match any of the 0 characters in
> these brackets" or in other words "do nothing". and the () are special
> characters indicateing a sub-expression if they haven't been escaped with
> \
> . So -- if anything, I would expect these expressions would match items
> like or one or more single or double quotes with nothing in them. The
> middle
> expression "[](*)[]" shouldn't match anything at all if it doesn't error
> out, because it says "Find nothing, followed by a subexpression including
> zero or more of nothing, followed by nothing".


> S. Isaac Dealey
> Certified Advanced ColdFusion 5 Developer

> www.turnkey.to
> 954-776-0046

>

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



hyperlink

2002-11-19 Thread coldfusion . developer
Thanks in advance.

I have a an iframe within a page, there's a hyperlink in the page referenced 
within the iframe.  When I click on the hyperlink, it goes to the page and
displays the new page from within the iframe.  

How do I get the hyperlink in the iframe to push the new page to replace the 
page that has the iframe?

IFRAME.CFM


HOME_CONTENT_IFRAME.CFM
Click here


Thanks.

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



RE: ColdFusion practical limits

2002-11-19 Thread S . Isaac Dealey
Ahh... okay then. :)

> Isaac,

> I think the point he is making is that - although it's particle board and
> duct tape, he still has 2 1/2 baths and a walkout basement .

> -Mark

> -Original Message-
> From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 3:48 PM
> To: CF-Talk
> Subject: RE: ColdFusion practical limits


>> I have a small content management system built with CF5 on a single Win
>> 2K server.  I load tested it with over 200,000 hits per hour.  Normal
>> load for the app isn't more than a few hundred hits on the busiest of
>> days.

>> This is not comparable to most sites--it uses a lot of caching which
>> isn't possible in more dynamic apps--but I still like these results.

>> BTW, it uses an MS Access back end.  :)

> I dunno -- this last line strikes me as equivalent of bragging about
> building a house out of particle-board and duct-tape. The fact that it's a
> house doesn't make the materials any less inferior to brick, solid-wood
> and
> concrete.


> S. Isaac Dealey
> Certified Advanced ColdFusion 5 Developer

> www.turnkey.to
> 954-776-0046

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



RE: ColdFusion practical limits

2002-11-19 Thread S . Isaac Dealey
> S. Isaac Dealey wrote:
>> Yea, that's a rediculous scenario...
>>
>> "I have a toothpick and some chewing gum. I'd like you to build the
>> Hoover
>> dam. Can you guarantee that it will support the weight of 15
>> million gallons
>> of water? ... No we don't have a budget for high-school physics
>> text-books."

> Hrmph... MacGyver could've done that. 8^)

Produced a budget for high-school physics text-books? ;P

S. Isaac Dealey
Certified Advanced ColdFusion 5 Developer

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



RE: HTML from CFC's in a shared scope

2002-11-19 Thread S . Isaac Dealey
>>
>> >> Also, has anyone had any negative reaction to loading a
>> CFC into server
>> >> scope?
>>
>> > Note that you cannot output HTML from methods of CFCs that
>> are stored
>> > in shared scopes (but, hey, you wouldn't be outputting HTML
>> from CFCs
>> > anyway, would you?).
>>
>> How does that happen? I can't store a CFC in the application
>> scope and use
>> writeoutput() in a method to display stuff from it? ... Or

> Correct. Or  for that matter. This is a known bug.

Oh, so there's a plan for this to change in the future... cool. :)

>> for that matter
>>
>> #application.mycfc.mymethod()#
>>
>> and simply have the method return a string?

> If the method RETURNS a string, then it will work ok.

> I.e., this is good:

> 

> This is not:

> You go, girl

> The second example will work on the first hit only. As it stands, many
> people (myself included) think it's a bad idea to directly output from
> the method. But - that's another discussion...

I think in most cases you're probably right -- it's probably best to stick
with the integrity of the "function metaphor" -- multiple arguments,
singular result.

S. Isaac Dealey
Certified Advanced ColdFusion 5 Developer

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



RE: RegExpression Question

2002-11-19 Thread S . Isaac Dealey
mmm... you're right -- that hadn't occurred to me -- you'd have to make the
search for () separate from the search for single or double quotes...

> I don't understand how the backreferences can work in this case:

> (Andy)

> If it matches the first (, then it will search for a matching (, not the
> matching ).

>> -Original Message-
>> From: Ben Doom [mailto:[EMAIL PROTECTED]]
>> Sent: Tuesday, November 19, 2002 12:25 PM
>> To: CF-Talk
>> Subject: RE: RegExpression Question
>>
>>
>> refind("([""'(])Andy\1", string)
>> will find the tree examples you gave.
>>
>> If you want an explanation or more help, I suggest you turn
>> to:
>> http://www.houseoffusion.com/cf_lists/index.cfm?method=threads
> &forumid=21
> Read, Post to, or Join the list here for all your RegEx needs.  :-)


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



RE: ColdFusion practical limits

2002-11-19 Thread Mark A. Kruger - CFG
Isaac,

I think the point he is making is that - although it's particle board and
duct tape, he still has 2 1/2 baths and a walkout basement .

-Mark

-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 3:48 PM
To: CF-Talk
Subject: RE: ColdFusion practical limits


> I have a small content management system built with CF5 on a single Win
> 2K server.  I load tested it with over 200,000 hits per hour.  Normal
> load for the app isn't more than a few hundred hits on the busiest of
> days.

> This is not comparable to most sites--it uses a lot of caching which
> isn't possible in more dynamic apps--but I still like these results.

> BTW, it uses an MS Access back end.  :)

I dunno -- this last line strikes me as equivalent of bragging about
building a house out of particle-board and duct-tape. The fact that it's a
house doesn't make the materials any less inferior to brick, solid-wood and
concrete.


S. Isaac Dealey
Certified Advanced ColdFusion 5 Developer

www.turnkey.to
954-776-0046

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



RE: Stored Proc list input

2002-11-19 Thread S . Isaac Dealey
The reason I've tried to avoid doing this in the past is because ms sql
server loops are slow ( funny that, considering how quickly it deals with
record sets )... not to mention it's a lot more code in the sp where there
aren't any native list functions -- or you have to build your own sql server
udf's for ms sql 2000... just my 2c...

> Neil,

> There are a few ways to deal with this. Here's one option.

> http://accesshelp.net/content/Report.asp?REPORT=4&PARAM_ID=46

> Chris

> -Original Message-
> From: Neil H. [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 2:07 PM
> To: CF-Talk
> Subject: Re: Stored Proc list input


> Impossible that there is no way to do this, at least you would think so?!

> Neil

> - Original Message -
> From: "S. Isaac Dealey" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, November 19, 2002 1:52 PM
> Subject: Re: Stored Proc list input


>> Likely you're going to run into a larger issue with your database not
> being
>> able to interpret the @PassVariable value as an integer... at least with
> MS
>> SQL Server I have yet to find a way to pass a list to a stored procedure
>> without passing it as a varchar and then using exec (@mysqlstatement) or
>> exec sp_executesql @mysqlstatement which somewhat defeats the purpose of
> the
>> storedprocedure being pre-processed.
>>
>> > I need to pass a string such as 1,2 in to a stored procedure.  The
>> > variable
>> > is then used like this:
>>
>> > Where MYVariable IN (@PassVariable)
>>
>> > Now the problem is that MYVariable is an INT and I am passing in the
>> > @PassVariable as a string.
>>
>> > I get this error:
>>
>> > Syntax error converting the varchar value '1,2' to a column of data
>> > type
>> > int.
>>
>> > I need to figure some way around this.  Any ideas?
>>
>> > Thanks,
>>
>> > Neil
>>
>> S. Isaac Dealey
>> Certified Advanced ColdFusion 5 Developer
>>
>> www.turnkey.to
>> 954-776-0046
>>

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



RE: ColdFusion practical limits

2002-11-19 Thread S . Isaac Dealey
> I have a small content management system built with CF5 on a single Win
> 2K server.  I load tested it with over 200,000 hits per hour.  Normal
> load for the app isn't more than a few hundred hits on the busiest of
> days.

> This is not comparable to most sites--it uses a lot of caching which
> isn't possible in more dynamic apps--but I still like these results.

> BTW, it uses an MS Access back end.  :)

I dunno -- this last line strikes me as equivalent of bragging about
building a house out of particle-board and duct-tape. The fact that it's a
house doesn't make the materials any less inferior to brick, solid-wood and
concrete.


S. Isaac Dealey
Certified Advanced ColdFusion 5 Developer

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



Re: Frames Craziness.

2002-11-19 Thread S . Isaac Dealey
>  does not accept the target attribute. You can do the redirect
> with inline JS like this:

> 
> parent.location.href="#myurl#"
> 

> You could replace parent with  the name of the target frame. Does this
> help?

or top.myframe.location.replace("#myurl#"); which will replace the current
location of that frame in the browser's history stack ( the same as
cflocation ) and is viable all the way back to NS 3 and equivalent version
of IE.

S. Isaac Dealey
Certified Advanced ColdFusion 5 Developer

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



RE: ColdFusion practical limits

2002-11-19 Thread Dave Watts
> > Drop the typical page time to 50ms (easier said than 
> > done), and you've got a lot more "simultaneous" connections.  
> 
> I've always used the term simultaneous in this context to 
> mean executing at the same time, not executing within the 
> same second or, as Dave suggested, pooled but not currently 
> executing. Which is the correct definition in this sense?

I don't think that one definition is more correct than the other - it's
purely a matter of perspective. From the outside, you can't really tell how
many requests are simultaneously executing other than by measuring responses
over a period of time.

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

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
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: You People Are AWESOME

2002-11-19 Thread Dave Watts
> We're using a fresh install of CFMX on a rebuilt NT2k server. 
> 
> It's not machine specific. We can replicate it on any of our 
> desktops.

If you can, try deleting the appropriate compiled Java classes from
/WEB-INF/cfclasses. If you don't know which ones they are, just delete all
of them. Then, restart CF and see what happens.

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

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



RE: You People Are AWESOME

2002-11-19 Thread Haggerty, Mike
Is your ISP caching pages? Are you browsing the local network or going over
the Internet?

M

-Original Message-
From: Kennerly, Rick H CIV [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 5:30 PM
To: CF-Talk
Subject: RE: You People Are AWESOME


We're using a fresh install of CFMX on a rebuilt NT2k server. 

It's not machine specific.  We can replicate it on any of our desktops.  



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



RE: You People Are AWESOME

2002-11-19 Thread Kennerly, Rick H CIV
We're using a fresh install of CFMX on a rebuilt NT2k server. 

It's not machine specific.  We can replicate it on any of our desktops.  


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



Re: network file storage

2002-11-19 Thread Jacob
Depend on how much storage...

Little storage:  Go with a server.
Moderate storage:  Maybe a Snap Server.
Lots of storage: $$$

At 01:05 PM 11/19/2002 -0800, you wrote:
>I have  a CF app which we are preparing to cluster. The problem is the app
>reads/writes many files from the disk. If we try to use a load balancer,
>the end user might be redirected to a server that does not have the file he
>just wrote in the last request. So we are looking at using a network file
>server of some sort. Does anybody have any direction in this regard? Should
>we just use a standard computer with a decent RAID setup or are there some
>moderately inexpensive network storage devices (rack mount?) designed
>specifically for this purpose?
>
>Thanks for the input!
>
>Brook
>
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: You People Are AWESOME

2002-11-19 Thread Kennerly, Rick H CIV
>sounds like you have server caching on ... 

>its in the CF web admin screens  a simple checkbox.

If it were only checked.  It's not.  

Still working on it. 

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



Re: SOT: servlet maintain state in CF app

2002-11-19 Thread Eric Dawson
here is some code that works - I got rid of the stuff that I used to figure 
out what cookies I needed to create and send, but this might get you 
started. Hopefully I understood the question.


   

   http://www.othersite.com/index.cfm";
   method="POST">
  
  
   
   Response Headers





   

http://www.othersite.com/content.cfm";
   method="POST"
   resolveurl="true">
   
   
   
   
   



#cfhttp.filecontent#



From: Nathan Shaw <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: CF-Talk <[EMAIL PROTECTED]>
Subject: SOT: servlet maintain state in CF app
Date: Tue, 19 Nov 2002 10:16:30 -0800 (PST)

Hi all. I am a digester (can't handle the traffic), so
I
would appreciate a direct reply to [EMAIL PROTECTED]
Thanks =;>

I am writing a servlet to act as a gateway to a CF app
in a portal. I am making HTTPURLConnections to the CF
app ok, but I cannot seem to get it to maintain state,
even though I am grabbing the CFID and CFTOKEN from
the headers I get back and sending them along with my
requests. I have tried sending them thru a GET, POST
and as cookies and the CF app keeps sending me back a
new CFID and CFTOKEN on each request, thus losing
state.

Has anyone had any experience in doing something like
this? What is the trick to get CF to "see" the CFID
and CFTOKEN I am sending it?

Thanks,

--Nathan

__
Do you Yahoo!?
Yahoo! Web Hosting - Let the expert host your site
http://webhosting.yahoo.com



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



RE: Frames Craziness.

2002-11-19 Thread Luce, Greg
Hmm. I put this in place of my cflocation:


parent.location.href="#request.root_url#/index.cfm?fuseaction=profile.profil
e8"

and it gets out of the frameset, but isn't going to the new url. It's
actually going to the frame that we were in, but outside the frameset.

-Original Message-
From: Brook Davies [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 3:52 PM
To: CF-Talk
Subject: Re: Frames Craziness.


 does not accept the target attribute. You can do the redirect 
with inline JS like this:


parent.location.href="#myurl#"


You could replace parent with  the name of the target frame. Does this help?

Brook

At 03:43 PM 19/11/02 -0500, you wrote:
>I'm inside a frameset and I'd like to cflocation to a template that would
>break me out of the frameset, but still be in the same window.
>
>I have a multipart form in a frameset that has paging also. The paging
>buttons submit the form to itself, do some processing and repost the frame.
>When done I want it to repost to itself do some processing, then cflocation
>to the next form that isn't in the frameset. 
>
>Right now when I cflocation I do the processing and of course it runs the
>next form inside the frame. :-(
>
>Any ideas?
>***Sterling Financial Investment Group, Inc. (SFIG) is a member of
>NASD/MSRB/NFA/SIPC.  Email transmissions may be monitored.  SFIG cannot
>accept orders to buy or sell via email.  Please visit www.mysterling.com
for
>more information.***
>

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



RE: MX and UPS XML

2002-11-19 Thread Chad
We actually got MX to talk to UPS for tracking.  We had to use
CFX_RawSocket http://www.iexp.com/

Of course according to all of CFX_RawSocket's documentation it should
not work under MX.  We upgraded the JRE to 1.4 and it appears to work
for UPS tracking numbers.

I have no idea what we will run into by upgrading to 1.4, but we will
keep playing with it and see if there are any downsides.





> -Original Message-
> From: Chad [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 2:52 PM
> To: CF-Talk
> Subject: RE: MX and UPS XML
> 
> I hate to beat this into the ground, but why won't this type of XML
> passing work with UPS?  We started looking at the Java example they
> sent.  It works, but it sure is complicated!
> 
> 
> https://www.ups.com/ups.app/xml/Track"; >
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> > -Original Message-
> > From: Ben Densmore [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, November 19, 2002 1:06 PM
> > To: CF-Talk
> > Subject: RE: MX and UPS XML
> >
> > Use 2  then call your trackrequest xml file and
> > accessrequest file. But I don't think you can use  with UPS
> XML
> > Track, from what I have been told cfhttp doesn't work with SSL, you
> need
> > to use a raw socket.
> >
> > Ben
> >
> > -Original Message-
> > From: Chad [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, November 19, 2002 1:00 PM
> > To: CF-Talk
> > Subject: RE: MX and UPS XML
> >
> > I still cannot get this thing to work!
> >
> > If I put two  CF throws an error and says
I
> > can only have one
> >
> > How can I concatenate the two  vars?  Will a simple &
> concatenate
> > the two structures together so I can use only one  > type="XML>?
> >
> >
> >
> >
> > > -Original Message-
> > > From: Chad [mailto:[EMAIL PROTECTED]]
> > > Sent: Friday, November 15, 2002 2:41 PM
> > > To: CF-Talk
> > > Subject: RE: MX and UPS XML
> > >
> > > The MX documentation mentions nothing about a  > > type="XML"...>
> > >
> > > Are you sure this exists?
> > >
> > >
> > >
> > > > -Original Message-
> > > > From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]]
> > > > Sent: Friday, November 15, 2002 11:00 AM
> > > > To: CF-Talk
> > > > Subject: RE: MX and UPS XML
> > > >
> > > > Chad,
> > > >
> > > > CFHTTP will encode the form field and UPS will not read it
> > correctly.
> > > > There
> > > > is a type "xml" in CFMX instead of formfield.
> > > >
> > > > -mk
> > > >
> > > > -Original Message-
> > > > From: Chad [mailto:[EMAIL PROTECTED]]
> > > > Sent: Friday, November 15, 2002 9:41 AM
> > > > To: CF-Talk
> > > > Subject: MX and UPS XML
> > > >
> > > >
> > > > OK correct me if I am wrong.
> > > >
> > > > To use the UPS XML I need to use the following to connect to the
> UPS
> > > > server:
> > > >
> > > > https://www.ups.com/ups.app/xml/Track";
method="POST"
> > > > port="443">
> > > >
> > > > I also need the following to post the XML to the UPS server:
> > > > 
> > > >
> > > > Then to return the results I just use:
> > > > #cfhttp.filecontent#
> > > >
> > > > OK if I am right so far.  How should I prep the XML to send to
> UPS?
> > > > Should I use ?
> > > >
> > > > Here is the code I have so far for a custom tag, but I keep
> getting
> > > this
> > > > error from UPS: 0 Failure Hard 10002 The XML document is well
> formed
> > > but
> > > > the document is not valid TrackRequest
> > > >
> > > > 
> > > > 
> > > > 
> > > > 
> > > >
> > > > 
> > > > 
> > > >
> > > >
> > >
> >
>
#Attributes.licensenumber# > > > cessLicenseNumber>
> > > >
#Attributes.UserId#
> > > >
>   #Attributes.Password#
> > > > 
> > > > 
> > > > 
> > > > 
> > > > 
> > > > 
> > > > 
> > > > 1.0001
> > > > 
> > > > Track
> > > > 
> > > > 
> > > >
> > > >
> > >
> >
>
#Attributes.TrackingNumber# > > > utput>
> > > > 
> > > > 
> > > >
> > > > https://www.ups.com/ups.app/xml/Track";
method="POST"
> > > > port="443" resolveurl="false">
> > > >  > > > value="#variables.xml#">
> > > >  > > > value="#variables.xml2#">
> > > > 
> > > >
> > > > 
> > > >
> > > >
> > > >
> > > >
> > >
> >
> >
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



RE: RegExpression Question

2002-11-19 Thread S . Isaac Dealey
Ahh okay, that explains it... in reviewing my previous message -- I didn't
intend it to sound as critical as it appeared to me...

> Isaac,

> Thanks for the link.  This is my first attempted usage of RegEx

> Andy

> -Original Message-
> From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 11:31 AM
> To: CF-Talk
> Subject: Re: RegExpression Question


>> I want to find any of the following:
>> "Andy"
>> (Andy)
>> 'Andy'
>>  in a string, but not find
>> "andy was here (not)

>> I know the following will find each of the three options if I do it 3
>> times.
>> Can I find all 1 one statement without finding ["andy was here (not] ?

>> REFind("[]'*'[]", "Find this 'here'")
>> REFind("[](*)[]", "Find this (here)")
>> REFind("[]""*""[]", "Find this ""here""")

> You might want to try [EMAIL PROTECTED]

> although -- the expressions in this example look all wrong... you're not
> actually using * like that in your expression are you? That's a special
> character in regex meaning "zero or more instances" of the previous
> character or subexpression. And [] means "match any of the 0 characters in
> these brackets" or in other words "do nothing". and the () are special
> characters indicateing a sub-expression if they haven't been escaped with
> \
> . So -- if anything, I would expect these expressions would match items
> like or one or more single or double quotes with nothing in them. The
> middle
> expression "[](*)[]" shouldn't match anything at all if it doesn't error
> out, because it says "Find nothing, followed by a subexpression including
> zero or more of nothing, followed by nothing".


> S. Isaac Dealey
> Certified Advanced ColdFusion 5 Developer

> www.turnkey.to
> 954-776-0046

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



RE: ColdFusion practical limits

2002-11-19 Thread Benjamin S. Rogers
> Drop the typical page time to 50ms (easier said than done),
> and you've got a lot more "simultaneous" connections.  

I've always used the term simultaneous in this context to mean executing
at the same time, not executing within the same second or, as Dave
suggested, pooled but not currently executing. Which is the correct
definition in this sense?

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


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



CFTREE not loading

2002-11-19 Thread Eric Creese
PROBLEM SOLVED

I figured it out. I have some orphaned records in the select which hosed it all up. 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



network file storage

2002-11-19 Thread Brook Davies
I have  a CF app which we are preparing to cluster. The problem is the app 
reads/writes many files from the disk. If we try to use a load balancer, 
the end user might be redirected to a server that does not have the file he 
just wrote in the last request. So we are looking at using a network file 
server of some sort. Does anybody have any direction in this regard? Should 
we just use a standard computer with a decent RAID setup or are there some 
moderately inexpensive network storage devices (rack mount?) designed 
specifically for this purpose?

Thanks for the input!

Brook


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



RE: Frames Craziness.

2002-11-19 Thread Brian Ledwith
Try this on the page that you cflocate to that you want to be frameless.



function changePage() {
if (self.parent.frames.length != 0)
self.parent.location=document.location; 
}
setTimeout ("changePage()", 1);



HTH,
~bgl

--> -Original Message-
--> From: Luce, Greg [mailto:[EMAIL PROTECTED]]
--> Sent: Tuesday, November 19, 2002 12:44 PM
--> To: CF-Talk
--> Subject: Frames Craziness.
--> 
--> I'm inside a frameset and I'd like to cflocation to a template that
--> would
--> break me out of the frameset, but still be in the same window.
--> 
--> I have a multipart form in a frameset that has paging also. The
paging
--> buttons submit the form to itself, do some processing and repost the
--> frame.
--> When done I want it to repost to itself do some processing, then
--> cflocation
--> to the next form that isn't in the frameset. 
--> 
--> Right now when I cflocation I do the processing and of course it
runs
--> the
--> next form inside the frame. :-(
--> 
--> Any ideas?
--> ***Sterling Financial Investment Group, Inc. (SFIG) is a member of
--> NASD/MSRB/NFA/SIPC.  Email transmissions may be monitored.  SFIG
cannot
--> accept orders to buy or sell via email.  Please visit
www.mysterling.com
--> for
--> more information.***
-->

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



RE: Frames Craziness.

2002-11-19 Thread Jerry Barnes
If I understand your post, then all you would need is this at the top of your next 
form.


if (parent.frames.length > 0) 
{   
parent.location.href = self.document.location
}




-Original Message-
From: Luce, Greg [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, November 19, 2002 3:44 PM
To: CF-Talk
Subject: Frames Craziness.


I'm inside a frameset and I'd like to cflocation to a template that would break me out 
of the frameset, but still be in the same window.

I have a multipart form in a frameset that has paging also. The paging buttons submit 
the form to itself, do some processing and repost the frame. When done I want it to 
repost to itself do some processing, then cflocation to the next form that isn't in 
the frameset. 

Right now when I cflocation I do the processing and of course it runs the next form 
inside the frame. :-(

Any ideas?
***Sterling Financial Investment Group, Inc. (SFIG) is a member of NASD/MSRB/NFA/SIPC. 
 Email transmissions may be monitored.  SFIG cannot accept orders to buy or sell via 
email.  Please visit www.mysterling.com for more information.*** 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Frames Craziness.

2002-11-19 Thread Brook Davies
 does not accept the target attribute. You can do the redirect 
with inline JS like this:


parent.location.href="#myurl#"


You could replace parent with  the name of the target frame. Does this help?

Brook

At 03:43 PM 19/11/02 -0500, you wrote:
>I'm inside a frameset and I'd like to cflocation to a template that would
>break me out of the frameset, but still be in the same window.
>
>I have a multipart form in a frameset that has paging also. The paging
>buttons submit the form to itself, do some processing and repost the frame.
>When done I want it to repost to itself do some processing, then cflocation
>to the next form that isn't in the frameset. 
>
>Right now when I cflocation I do the processing and of course it runs the
>next form inside the frame. :-(
>
>Any ideas?
>***Sterling Financial Investment Group, Inc. (SFIG) is a member of
>NASD/MSRB/NFA/SIPC.  Email transmissions may be monitored.  SFIG cannot
>accept orders to buy or sell via email.  Please visit www.mysterling.com for
>more information.***
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Frames Craziness.

2002-11-19 Thread Ben Doom
Use javascript instead -- window.href comes to mind.

That should break out of the frameset, iirc.


  --Ben Doom
Programmer & General Lackey
Moonbow Software

: -Original Message-
: From: Luce, Greg [mailto:[EMAIL PROTECTED]]
: Sent: Tuesday, November 19, 2002 3:44 PM
: To: CF-Talk
: Subject: Frames Craziness.
:
:
: I'm inside a frameset and I'd like to cflocation to a template that would
: break me out of the frameset, but still be in the same window.
:
: I have a multipart form in a frameset that has paging also. The paging
: buttons submit the form to itself, do some processing and repost
: the frame.
: When done I want it to repost to itself do some processing, then
: cflocation
: to the next form that isn't in the frameset. 
:
: Right now when I cflocation I do the processing and of course it runs the
: next form inside the frame. :-(
:
: Any ideas?
: ***Sterling Financial Investment Group, Inc. (SFIG) is a member of
: NASD/MSRB/NFA/SIPC.  Email transmissions may be monitored.  SFIG cannot
: accept orders to buy or sell via email.  Please visit
: www.mysterling.com for
: more information.***
: 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: secure email...

2002-11-19 Thread Matt Robertson
You can log in to an smtp server with a mail message header??

This I gotta see.  :)  

--Matt--

-- Original Message --
from: "samcfug" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
date: Tue, 19 Nov 2002 14:39:05 -0600

>Yes it is
>
>=
>Douglas White
>group Manager
>mailto:[EMAIL PROTECTED]
>http://www.samcfug.org
>=
>- Original Message -
>From: "Paris Lundis" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Tuesday, November 19, 2002 2:25 PM
>Subject: Re: secure email...
>
>
>| Doug, is this SMTP auth a feature through CFMAILPARAM as
>the reply to
>| was we talked about?
>|
>| Paris Lundis
>| Founder
>| Areaindex, L.L.C.
>| http://www.areaindex.com
>| http://www.pubcrawler.com
>| 412-292-3135
>| [finding the future in the past, passing the future in the
>present]
>| [connecting people, places and things]
>|
>|
>| -Original Message-
>| From: "samcfug" <[EMAIL PROTECTED]>
>| Date: Tue, 19 Nov 2002 14:20:43 -0600
>| Subject: Re: secure email...
>|
>| > As soon as I get this persistent client taken care of I
>will
>| > copy the code from my shopping cart page that notifies
>the
>| > Client of a secure order, and notifies the Customer with
>an
>| > acknowledgement of his/her order.
>| >
>| > It is Pure CF I assure you and when developing the site,
>I
>| > followed the instructions in the Documentation - I have
>been
>| > using exactly this same code since Version 3.  As inept
>as I
>| > am with CF I am surprised at all the doubting thomases
>out
>| > there.  If you have the Server installed on a local
>machine
>| > and selected "install documentation" them open the tag
>| > reference and do a search for CFMAIL and "password"  The
>| > code for CFPOP and CFMAIL works exactly the same.
>Works
>| > just fine with CFMX Pro, (I do not have enterprise)  But
>I
>| > am using this with CF 5.0 server running.  I agree the
>| > documentation is not that clear, but it conforms to most
>of
>| > MM's documentation,
>| >
>| > I run my own mail server, and it has SMTP AUTH
>implemented.
>| > That is it requires not only a user name, but a password
>in
>| > order to send mail out.  I do not have relaying turned
>on
>| > and the mail server is not on the same machine as the
>web
>| > site, in fact I run two mail servers, one uses
>Win2k/Imail,
>| > and the other uses RedHat/Sendmail  and both require
>SMTP
>| > AUTH.  The shopping cart is hosted on a remote network.
>The
>| > public web site is hosted on one of my servers.
>| >
>| > The web site is http://www.strictlyhodaka.com  and my
>| > hosting company is at http://www.clickdoug.com
>| >
>| > This was implemented a long time ago, because both mail
>| > servers are constantly being hammered by attempts to
>relay
>| > or spam, and I have them effectively blocked, by
>filtering
>| > through the ORDB database and spamcop.bl.
>| >
>| > Maybe we are not talking about the same thing, but I
>have an
>| > idea that we are.
>| >
>| > =
>| > Douglas White
>| > group Manager
>| > mailto:[EMAIL PROTECTED]
>| > http://www.samcfug.org
>| > =
>| > - Original Message -
>| > From: "Paris Lundis" <[EMAIL PROTECTED]>
>| > To: "CF-Talk" <[EMAIL PROTECTED]>
>| > Sent: Tuesday, November 19, 2002 1:38 PM
>| > Subject: Re: secure email...
>| >
>| >
>| > | Doug post a sample of code when you find it
>| > interesting knowledge
>| > | that isn't well spread/documented and not covered
>directly
>| > in any of the
>| > | books I have sitting here...
>| > |
>| > | -paris
>| > |
>| >
>| >
>|
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: secure email...

2002-11-19 Thread Paris Lundis
So through Doug's ommission:

The CFMAILPARAM that I hardly recognized as existing allows you to do
additional mail things specific to your server and the RFC pertinent to
this sorts of stuff...

Doug had sent one code sample around this weekend that provided the
reply to functionality CF lacks through the very flexible CFMAILPARAM
tag... Doug and I exchanged some emails on this authorization... there
are serveral forms.. the SMTP AUTH he refers to in this thread is a one
password for all users period.. its a server setting on most decent mail
servers...

I haven't the syntax or exacts on it.. but I assume when Doug free a
block of time and pulls the code you will be able to extract it... thats
how I learned about the reply to ability...  CFMAILPARAM doesn't get
enough airtime...

-paris

Paris Lundis
Founder
Areaindex, L.L.C.
http://www.areaindex.com
http://www.pubcrawler.com
412-292-3135
[finding the future in the past, passing the future in the present]
[connecting people, places and things]


-Original Message-
From: "samcfug" <[EMAIL PROTECTED]>
Date: Tue, 19 Nov 2002 14:39:05 -0600
Subject: Re: secure email...

> Yes it is
> 
> =
> Douglas White
> group Manager
> mailto:[EMAIL PROTECTED]
> http://www.samcfug.org
> =
> - Original Message -
> From: "Paris Lundis" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, November 19, 2002 2:25 PM
> Subject: Re: secure email...
> 
> 
> | Doug, is this SMTP auth a feature through CFMAILPARAM as
> the reply to
> | was we talked about?
> |
> | Paris Lundis
> | Founder
> | Areaindex, L.L.C.
> | http://www.areaindex.com
> | http://www.pubcrawler.com
> | 412-292-3135
> | [finding the future in the past, passing the future in the
> present]
> | [connecting people, places and things]
> |
> |
> | -Original Message-
> | From: "samcfug" <[EMAIL PROTECTED]>
> | Date: Tue, 19 Nov 2002 14:20:43 -0600
> | Subject: Re: secure email...
> |
> | > As soon as I get this persistent client taken care of I
> will
> | > copy the code from my shopping cart page that notifies
> the
> | > Client of a secure order, and notifies the Customer with
> an
> | > acknowledgement of his/her order.
> | >
> | > It is Pure CF I assure you and when developing the site,
> I
> | > followed the instructions in the Documentation - I have
> been
> | > using exactly this same code since Version 3.  As inept
> as I
> | > am with CF I am surprised at all the doubting thomases
> out
> | > there.  If you have the Server installed on a local
> machine
> | > and selected "install documentation" them open the tag
> | > reference and do a search for CFMAIL and "password"  The
> | > code for CFPOP and CFMAIL works exactly the same.
> Works
> | > just fine with CFMX Pro, (I do not have enterprise)  But
> I
> | > am using this with CF 5.0 server running.  I agree the
> | > documentation is not that clear, but it conforms to most
> of
> | > MM's documentation,
> | >
> | > I run my own mail server, and it has SMTP AUTH
> implemented.
> | > That is it requires not only a user name, but a password
> in
> | > order to send mail out.  I do not have relaying turned
> on
> | > and the mail server is not on the same machine as the
> web
> | > site, in fact I run two mail servers, one uses
> Win2k/Imail,
> | > and the other uses RedHat/Sendmail  and both require
> SMTP
> | > AUTH.  The shopping cart is hosted on a remote network.
> The
> | > public web site is hosted on one of my servers.
> | >
> | > The web site is http://www.strictlyhodaka.com  and my
> | > hosting company is at http://www.clickdoug.com
> | >
> | > This was implemented a long time ago, because both mail
> | > servers are constantly being hammered by attempts to
> relay
> | > or spam, and I have them effectively blocked, by
> filtering
> | > through the ORDB database and spamcop.bl.
> | >
> | > Maybe we are not talking about the same thing, but I
> have an
> | > idea that we are.
> | >
> | > =
> | > Douglas White
> | > group Manager
> | > mailto:[EMAIL PROTECTED]
> | > http://www.samcfug.org
> | > =
> | > - Original Message -
> | > From: "Paris Lundis" <[EMAIL PROTECTED]>
> | > To: "CF-Talk" <[EMAIL PROTECTED]>
> | > Sent: Tuesday, November 19, 2002 1:38 PM
> | > Subject: Re: secure email...
> | >
> | >
> | > | Doug post a sample of code when you find it
> | > interesting knowledge
> | > | that isn't well spread/documented and not covered
> directly
> | > in any of the
> | > | books I have sitting here...
> | > |
> | > | -paris
> | > |
> | >
> | >
> |
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that power

Frames Craziness.

2002-11-19 Thread Luce, Greg
I'm inside a frameset and I'd like to cflocation to a template that would
break me out of the frameset, but still be in the same window.

I have a multipart form in a frameset that has paging also. The paging
buttons submit the form to itself, do some processing and repost the frame.
When done I want it to repost to itself do some processing, then cflocation
to the next form that isn't in the frameset. 

Right now when I cflocation I do the processing and of course it runs the
next form inside the frame. :-(

Any ideas?
***Sterling Financial Investment Group, Inc. (SFIG) is a member of
NASD/MSRB/NFA/SIPC.  Email transmissions may be monitored.  SFIG cannot
accept orders to buy or sell via email.  Please visit www.mysterling.com for
more information.***
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: secure email...

2002-11-19 Thread Howie Hamlin
I've never seen this in any cf documentation and a search for cfmail and password 
comes up with no matches on my cf5
server documentation.

Howie

- Original Message -
From: "samcfug" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, November 19, 2002 3:20 PM
Subject: Re: secure email...


> As soon as I get this persistent client taken care of I will
> copy the code from my shopping cart page that notifies the
> Client of a secure order, and notifies the Customer with an
> acknowledgement of his/her order.
>
> It is Pure CF I assure you and when developing the site, I
> followed the instructions in the Documentation - I have been
> using exactly this same code since Version 3.  As inept as I
> am with CF I am surprised at all the doubting thomases out
> there.  If you have the Server installed on a local machine
> and selected "install documentation" them open the tag
> reference and do a search for CFMAIL and "password"  The
> code for CFPOP and CFMAIL works exactly the same.Works
> just fine with CFMX Pro, (I do not have enterprise)  But I
> am using this with CF 5.0 server running.  I agree the
> documentation is not that clear, but it conforms to most of
> MM's documentation,
>
> I run my own mail server, and it has SMTP AUTH implemented.
> That is it requires not only a user name, but a password in
> order to send mail out.  I do not have relaying turned on
> and the mail server is not on the same machine as the web
> site, in fact I run two mail servers, one uses Win2k/Imail,
> and the other uses RedHat/Sendmail  and both require SMTP
> AUTH.  The shopping cart is hosted on a remote network.  The
> public web site is hosted on one of my servers.
>
> The web site is http://www.strictlyhodaka.com  and my
> hosting company is at http://www.clickdoug.com
>
> This was implemented a long time ago, because both mail
> servers are constantly being hammered by attempts to relay
> or spam, and I have them effectively blocked, by filtering
> through the ORDB database and spamcop.bl.
>
> Maybe we are not talking about the same thing, but I have an
> idea that we are.
>
> =
> Douglas White
> group Manager
> mailto:[EMAIL PROTECTED]
> http://www.samcfug.org
> =

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



Re: secure email...

2002-11-19 Thread samcfug
Yes it is

=
Douglas White
group Manager
mailto:[EMAIL PROTECTED]
http://www.samcfug.org
=
- Original Message -
From: "Paris Lundis" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, November 19, 2002 2:25 PM
Subject: Re: secure email...


| Doug, is this SMTP auth a feature through CFMAILPARAM as
the reply to
| was we talked about?
|
| Paris Lundis
| Founder
| Areaindex, L.L.C.
| http://www.areaindex.com
| http://www.pubcrawler.com
| 412-292-3135
| [finding the future in the past, passing the future in the
present]
| [connecting people, places and things]
|
|
| -Original Message-
| From: "samcfug" <[EMAIL PROTECTED]>
| Date: Tue, 19 Nov 2002 14:20:43 -0600
| Subject: Re: secure email...
|
| > As soon as I get this persistent client taken care of I
will
| > copy the code from my shopping cart page that notifies
the
| > Client of a secure order, and notifies the Customer with
an
| > acknowledgement of his/her order.
| >
| > It is Pure CF I assure you and when developing the site,
I
| > followed the instructions in the Documentation - I have
been
| > using exactly this same code since Version 3.  As inept
as I
| > am with CF I am surprised at all the doubting thomases
out
| > there.  If you have the Server installed on a local
machine
| > and selected "install documentation" them open the tag
| > reference and do a search for CFMAIL and "password"  The
| > code for CFPOP and CFMAIL works exactly the same.
Works
| > just fine with CFMX Pro, (I do not have enterprise)  But
I
| > am using this with CF 5.0 server running.  I agree the
| > documentation is not that clear, but it conforms to most
of
| > MM's documentation,
| >
| > I run my own mail server, and it has SMTP AUTH
implemented.
| > That is it requires not only a user name, but a password
in
| > order to send mail out.  I do not have relaying turned
on
| > and the mail server is not on the same machine as the
web
| > site, in fact I run two mail servers, one uses
Win2k/Imail,
| > and the other uses RedHat/Sendmail  and both require
SMTP
| > AUTH.  The shopping cart is hosted on a remote network.
The
| > public web site is hosted on one of my servers.
| >
| > The web site is http://www.strictlyhodaka.com  and my
| > hosting company is at http://www.clickdoug.com
| >
| > This was implemented a long time ago, because both mail
| > servers are constantly being hammered by attempts to
relay
| > or spam, and I have them effectively blocked, by
filtering
| > through the ORDB database and spamcop.bl.
| >
| > Maybe we are not talking about the same thing, but I
have an
| > idea that we are.
| >
| > =
| > Douglas White
| > group Manager
| > mailto:[EMAIL PROTECTED]
| > http://www.samcfug.org
| > =
| > - Original Message -
| > From: "Paris Lundis" <[EMAIL PROTECTED]>
| > To: "CF-Talk" <[EMAIL PROTECTED]>
| > Sent: Tuesday, November 19, 2002 1:38 PM
| > Subject: Re: secure email...
| >
| >
| > | Doug post a sample of code when you find it
| > interesting knowledge
| > | that isn't well spread/documented and not covered
directly
| > in any of the
| > | books I have sitting here...
| > |
| > | -paris
| > |
| >
| >
|

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



RE: ColdFusion practical limits

2002-11-19 Thread Mosh Teitelbaum
S. Isaac Dealey wrote:
> Yea, that's a rediculous scenario...
>
> "I have a toothpick and some chewing gum. I'd like you to build the Hoover
> dam. Can you guarantee that it will support the weight of 15
> million gallons
> of water? ... No we don't have a budget for high-school physics
> text-books."

Hrmph... MacGyver could've done that. 8^)

--
Mosh Teitelbaum
evoch, LLC
Tel: (301) 625-9191
Fax: (301) 933-3651
Email: [EMAIL PROTECTED]
WWW: http://www.evoch.com/

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



Re: Anyone got a mac with version 4.5 Explorer on it

2002-11-19 Thread Bob Haroche
Everything shows up in IE 4.5 (mac) for me. But when I mouse over any
large button on the left, the swap image appears basically on top of
the button above it -- e.g., the Company info swap occurs on top of
Dealer location. The flyouts are likewise too high but they are
positioned correctly relative to the swap image, meaning if you can
fix the location of the swap images, the flyouts should be okay too.

I don't have AOL 5, but in AOL 4 (mac) the page doesn't work at all.
The top nav is missing, the side nav doesn't swap or flyout, and isn't
even clickable.

Bummer.

-
Regards,
Bob Haroche
O n P o i n t  S o l u t i o n s
www.OnPointSolutions.com



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
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: secure email...

2002-11-19 Thread Paris Lundis
Doug, is this SMTP auth a feature through CFMAILPARAM as the reply to
was we talked about?

Paris Lundis
Founder
Areaindex, L.L.C.
http://www.areaindex.com
http://www.pubcrawler.com
412-292-3135
[finding the future in the past, passing the future in the present]
[connecting people, places and things]


-Original Message-
From: "samcfug" <[EMAIL PROTECTED]>
Date: Tue, 19 Nov 2002 14:20:43 -0600
Subject: Re: secure email...

> As soon as I get this persistent client taken care of I will
> copy the code from my shopping cart page that notifies the
> Client of a secure order, and notifies the Customer with an
> acknowledgement of his/her order.
> 
> It is Pure CF I assure you and when developing the site, I
> followed the instructions in the Documentation - I have been
> using exactly this same code since Version 3.  As inept as I
> am with CF I am surprised at all the doubting thomases out
> there.  If you have the Server installed on a local machine
> and selected "install documentation" them open the tag
> reference and do a search for CFMAIL and "password"  The
> code for CFPOP and CFMAIL works exactly the same.Works
> just fine with CFMX Pro, (I do not have enterprise)  But I
> am using this with CF 5.0 server running.  I agree the
> documentation is not that clear, but it conforms to most of
> MM's documentation,
> 
> I run my own mail server, and it has SMTP AUTH implemented.
> That is it requires not only a user name, but a password in
> order to send mail out.  I do not have relaying turned on
> and the mail server is not on the same machine as the web
> site, in fact I run two mail servers, one uses Win2k/Imail,
> and the other uses RedHat/Sendmail  and both require SMTP
> AUTH.  The shopping cart is hosted on a remote network.  The
> public web site is hosted on one of my servers.
> 
> The web site is http://www.strictlyhodaka.com  and my
> hosting company is at http://www.clickdoug.com
> 
> This was implemented a long time ago, because both mail
> servers are constantly being hammered by attempts to relay
> or spam, and I have them effectively blocked, by filtering
> through the ORDB database and spamcop.bl.
> 
> Maybe we are not talking about the same thing, but I have an
> idea that we are.
> 
> =
> Douglas White
> group Manager
> mailto:[EMAIL PROTECTED]
> http://www.samcfug.org
> =
> - Original Message -
> From: "Paris Lundis" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, November 19, 2002 1:38 PM
> Subject: Re: secure email...
> 
> 
> | Doug post a sample of code when you find it
> interesting knowledge
> | that isn't well spread/documented and not covered directly
> in any of the
> | books I have sitting here...
> |
> | -paris
> |
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: secure email...

2002-11-19 Thread samcfug
As soon as I get this persistent client taken care of I will
copy the code from my shopping cart page that notifies the
Client of a secure order, and notifies the Customer with an
acknowledgement of his/her order.

It is Pure CF I assure you and when developing the site, I
followed the instructions in the Documentation - I have been
using exactly this same code since Version 3.  As inept as I
am with CF I am surprised at all the doubting thomases out
there.  If you have the Server installed on a local machine
and selected "install documentation" them open the tag
reference and do a search for CFMAIL and "password"  The
code for CFPOP and CFMAIL works exactly the same.Works
just fine with CFMX Pro, (I do not have enterprise)  But I
am using this with CF 5.0 server running.  I agree the
documentation is not that clear, but it conforms to most of
MM's documentation,

I run my own mail server, and it has SMTP AUTH implemented.
That is it requires not only a user name, but a password in
order to send mail out.  I do not have relaying turned on
and the mail server is not on the same machine as the web
site, in fact I run two mail servers, one uses Win2k/Imail,
and the other uses RedHat/Sendmail  and both require SMTP
AUTH.  The shopping cart is hosted on a remote network.  The
public web site is hosted on one of my servers.

The web site is http://www.strictlyhodaka.com  and my
hosting company is at http://www.clickdoug.com

This was implemented a long time ago, because both mail
servers are constantly being hammered by attempts to relay
or spam, and I have them effectively blocked, by filtering
through the ORDB database and spamcop.bl.

Maybe we are not talking about the same thing, but I have an
idea that we are.

=
Douglas White
group Manager
mailto:[EMAIL PROTECTED]
http://www.samcfug.org
=
- Original Message -
From: "Paris Lundis" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, November 19, 2002 1:38 PM
Subject: Re: secure email...


| Doug post a sample of code when you find it
interesting knowledge
| that isn't well spread/documented and not covered directly
in any of the
| books I have sitting here...
|
| -paris
|

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



RE: RegExpression Question

2002-11-19 Thread Ben Doom
um.  They don't.  I goofed.  This would work for anything where the opening
or closing are the same.

Hmm.  Offhand, I think you might have to use a separate check for anything
like (), {}, <>, and anything else where the opener and closer must be
paired but are different.



  --Ben Doom
Programmer & General Lackey
Moonbow Software

: -Original Message-
: From: Samuel Neff [mailto:[EMAIL PROTECTED]]
: Sent: Tuesday, November 19, 2002 2:24 PM
: To: CF-Talk
: Subject: RE: RegExpression Question
:
:
: I don't understand how the backreferences can work in this case:
:
: (Andy)
:
: If it matches the first (, then it will search for a matching (, not the
: matching ).
:
: > -Original Message-
: > From: Ben Doom [mailto:[EMAIL PROTECTED]]
: > Sent: Tuesday, November 19, 2002 12:25 PM
: > To: CF-Talk
: > Subject: RE: RegExpression Question
: >
: >
: > refind("([""'(])Andy\1", string)
: > will find the tree examples you gave.
: >
: > If you want an explanation or more help, I suggest you turn
: > to:
: > http://www.houseoffusion.com/cf_lists/index.cfm?method=threads
: &forumid=21
: Read, Post to, or Join the list here for all your RegEx needs.  :-)
:
:
: 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: You People Are AWESOME

2002-11-19 Thread Jeffry Houser
  That is weird.
  Are you sure that your browser cache does not play a part in this?
  Are you on CF 5 or CFMX?

At 03:23 PM 11/19/2002 -0500, you wrote:
>And, after a little sucking up for successfully helping me with my last
>question, here's another point of confusion for me.
>
>Where are Cold Fusion sites retained in memory?  I have a page that no
>longer exists that, if I type in the url, will appear and work just the way
>I don't want it to.  Another page that I know exists results in the Cold
>Fusion error message that the page doesn't exist, yet if I rename the folder
>containing the file, the file works just fine.  I looked at the CF
>Administrator settings but can't find anything that looks like my fix.  How
>do I clear out these ghosts?
>
>Thanks again,
>Keith

--
Jeffry Houser | mailto:[EMAIL PROTECTED]
DotComIt, Putting you on the web
AIM: Reboog711  | Phone: 1-203-379-0773
--
My CFMX Book: 

My Books: http://www.instantcoldfusion.com
My Band: http://www.farcryfly.com 

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



RE: Server Scope / UDFs

2002-11-19 Thread Dave Watts
> As easy as it would be to add  isdefined("server.udfs")> to every application.cfm 
> on the server it would be far cooler to not have 
> to. :)

Well, personally, I'm not much of a fan of the idea of loading UDFs into
memory anyway - memory is good for storing data, but is wasted on code.
However, if you really want to do this, there's no reason why you can't
write a batch file to start CF, then request a CF file using an HTTP
command-line client, like wget, to initialize your data.

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

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
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: Stored Proc list input

2002-11-19 Thread S . Isaac Dealey
>>>Server I have yet to find a way to pass a list to a stored procedure

> I found this a couple of days back; haven't tried it yet.

Found what? I'd love to see a url or such if you've got one. :)

> Matthew P. Smith
> Web Developer, Object Oriented
> Naval Education & Training Professional
> Development & Technology Center
> (NETPDTC)
> (850)452-1001 ext. 1245
> [EMAIL PROTECTED]


>>>-Original Message-
>>>From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
>>>Sent: Tuesday, November 19, 2002 12:52 PM
>>>To: CF-Talk
>>>Subject: Re: Stored Proc list input
>>>
>>>Likely you're going to run into a larger issue with your database not
>>>being
>>>able to interpret the @PassVariable value as an integer... at least with
>>>MS
>>>SQL Server I have yet to find a way to pass a list to a stored procedure
>>>without passing it as a varchar and then using exec (@mysqlstatement) or
>>>exec sp_executesql @mysqlstatement which somewhat defeats the purpose of
>>>the
>>>storedprocedure being pre-processed.
>>>
 I need to pass a string such as 1,2 in to a stored procedure.  The
 variable
 is then used like this:
>>>
 Where MYVariable IN (@PassVariable)
>>>
 Now the problem is that MYVariable is an INT and I am passing in the
 @PassVariable as a string.
>>>
 I get this error:
>>>
 Syntax error converting the varchar value '1,2' to a column of data
 type
 int.
>>>
 I need to figure some way around this.  Any ideas?
>>>
 Thanks,
>>>
 Neil
>>>
>>>S. Isaac Dealey
>>>Certified Advanced ColdFusion 5 Developer
>>>
>>>www.turnkey.to
>>>954-776-0046
>>>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Stored Proc list input

2002-11-19 Thread S . Isaac Dealey
Yea, it's something I've struggled with for a while -- I guess I've never
really understood why afaik no one's ever introduced native support for
lists in the rdbms as a parameter for a stored procedure.

> Impossible that there is no way to do this, at least you would think so?!

> Neil

> - Original Message -
> From: "S. Isaac Dealey" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, November 19, 2002 1:52 PM
> Subject: Re: Stored Proc list input


>> Likely you're going to run into a larger issue with your database not
> being
>> able to interpret the @PassVariable value as an integer... at least with
> MS
>> SQL Server I have yet to find a way to pass a list to a stored procedure
>> without passing it as a varchar and then using exec (@mysqlstatement) or
>> exec sp_executesql @mysqlstatement which somewhat defeats the purpose of
> the
>> storedprocedure being pre-processed.
>>
>> > I need to pass a string such as 1,2 in to a stored procedure.  The
>> > variable
>> > is then used like this:
>>
>> > Where MYVariable IN (@PassVariable)
>>
>> > Now the problem is that MYVariable is an INT and I am passing in the
>> > @PassVariable as a string.
>>
>> > I get this error:
>>
>> > Syntax error converting the varchar value '1,2' to a column of data
>> > type
>> > int.
>>
>> > I need to figure some way around this.  Any ideas?
>>
>> > Thanks,
>>
>> > Neil
>>
>> S. Isaac Dealey
>> Certified Advanced ColdFusion 5 Developer
>>
>> www.turnkey.to
>> 954-776-0046
>>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



RE: MX and UPS XML

2002-11-19 Thread Chad
I hate to beat this into the ground, but why won't this type of XML
passing work with UPS?  We started looking at the Java example they
sent.  It works, but it sure is complicated!


https://www.ups.com/ups.app/xml/Track"; >










> -Original Message-
> From: Ben Densmore [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 1:06 PM
> To: CF-Talk
> Subject: RE: MX and UPS XML
> 
> Use 2  then call your trackrequest xml file and
> accessrequest file. But I don't think you can use  with UPS
XML
> Track, from what I have been told cfhttp doesn't work with SSL, you
need
> to use a raw socket.
> 
> Ben
> 
> -Original Message-
> From: Chad [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, November 19, 2002 1:00 PM
> To: CF-Talk
> Subject: RE: MX and UPS XML
> 
> I still cannot get this thing to work!
> 
> If I put two  CF throws an error and says I
> can only have one
> 
> How can I concatenate the two  vars?  Will a simple &
concatenate
> the two structures together so I can use only one  type="XML>?
> 
> 
> 
> 
> > -Original Message-
> > From: Chad [mailto:[EMAIL PROTECTED]]
> > Sent: Friday, November 15, 2002 2:41 PM
> > To: CF-Talk
> > Subject: RE: MX and UPS XML
> >
> > The MX documentation mentions nothing about a  > type="XML"...>
> >
> > Are you sure this exists?
> >
> >
> >
> > > -Original Message-
> > > From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]]
> > > Sent: Friday, November 15, 2002 11:00 AM
> > > To: CF-Talk
> > > Subject: RE: MX and UPS XML
> > >
> > > Chad,
> > >
> > > CFHTTP will encode the form field and UPS will not read it
> correctly.
> > > There
> > > is a type "xml" in CFMX instead of formfield.
> > >
> > > -mk
> > >
> > > -Original Message-
> > > From: Chad [mailto:[EMAIL PROTECTED]]
> > > Sent: Friday, November 15, 2002 9:41 AM
> > > To: CF-Talk
> > > Subject: MX and UPS XML
> > >
> > >
> > > OK correct me if I am wrong.
> > >
> > > To use the UPS XML I need to use the following to connect to the
UPS
> > > server:
> > >
> > > https://www.ups.com/ups.app/xml/Track"; method="POST"
> > > port="443">
> > >
> > > I also need the following to post the XML to the UPS server:
> > > 
> > >
> > > Then to return the results I just use:
> > > #cfhttp.filecontent#
> > >
> > > OK if I am right so far.  How should I prep the XML to send to
UPS?
> > > Should I use ?
> > >
> > > Here is the code I have so far for a custom tag, but I keep
getting
> > this
> > > error from UPS: 0 Failure Hard 10002 The XML document is well
formed
> > but
> > > the document is not valid TrackRequest
> > >
> > > 
> > > 
> > > 
> > > 
> > >
> > > 
> > > 
> > >
> > >
> >
>
#Attributes.licensenumber# > > cessLicenseNumber>
> > >   #Attributes.UserId#
> > >   #Attributes.Password#
> > > 
> > > 
> > > 
> > > 
> > >   
> > >   
> > >   
> > >   1.0001
> > >   
> > >   Track
> > >   
> > >   
> > >
> > >
> >
>
#Attributes.TrackingNumber# > > utput>
> > > 
> > > 
> > >
> > > https://www.ups.com/ups.app/xml/Track"; method="POST"
> > > port="443" resolveurl="false">
> > >> > value="#variables.xml#">
> > >> > value="#variables.xml2#">
> > > 
> > >
> > > 
> > >
> > >
> > >
> > >
> >
> 
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Server Scope / UDFs

2002-11-19 Thread Sean Daniels
On Tuesday, November 19, 2002, at 11:51  AM, Raymond Camden wrote:

> No. Unless you have all your code under an Application.cfm that does 
> it.
> FYI, 'events' like this has been on the enhancement list for sometime.
> :)

Thanks for the responses Sean & Ray. I hope the "events" thing happens 
someday. As easy as it would be to add  to every application.cfm on the server it 
would be far cooler to not have to. :)

> Well, it is not recommends for CF5 because you would need to lock every
> use of it. However in MX you wouldn't need to worry about it.

Yeah, this is MX, so not as much of an issue.

On Tuesday, November 19, 2002, at 01:58  PM, Sean A Corfield wrote:

> Note that you cannot output HTML from methods of CFCs that are stored
> in shared scopes (but, hey, you wouldn't be outputting HTML from CFCs
> anyway, would you?).

Absolutely not! :)

> Nope, you need to scope them. Sure, you could create a 'local' alias
> via Application.cfm ()
> but that won't be available inside custom tags for example.

Right. I was more looking for a "hack" ala putting custom tags into the 
\wwwroot\WEB-INF\cftags directory so they be called like 
native tags. Oh well. Only a little additional typing.

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



RE: ColdFusion practical limits

2002-11-19 Thread Mike Brunt
Just one thing that if it was mentioned before I apologize for the
repetition (It's actually two things).  A number such as this number of
simultaneous hits even if exaggerated will HAVE to be clustered.  So which
version of ColdFusion will you use (I believe CFMX Enterprise can use the
"Buddy" system for sharing Session Variables across a cluster) and secondly
(maybe should have been firstly) determined what kind of variables will be
or are used in the app before deciding on anything else.  This may be too
late but I would strongly recommend Cisco Local Director(s) for your
hardware device because it has the most closely coupled feedback mechanism
for ColdFusion.  And as someone else already said Load-Test - Load-Test and
Load-Test!

Kind Regards - Mike Brunt, CTO
Webapper
Blog http://www.webapper.net
Web site http://www.webapper.com
Downey CA Office
562.243.6255
AIM - webappermb

Web Application Specialists


-Original Message-
From: Howie Hamlin [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 10:53 AM
To: CF-Talk
Subject: Re: ColdFusion practical limits


I tried to tell them that 2000 simultaneous queries was a ridiculous number
to consider but, alas, I am just a techie
peon :-)

Thanks,

Howie

- Original Message -
From: "Tony Weeg" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, November 19, 2002 1:42 PM
Subject: RE: ColdFusion practical limits


> another thing to think about is 2000 simultaneous users, is about the
> same
> traffic that yahoo gets.  wouldn't you say? simultaneous means, exact
> click at the
> exact same moment, to the exact same resource, etc
>
> if they *really* expect that many *simultaneous* hits, they should look
> into a managed
> hosting solution that has a load balancing setup already ready to go,
> and is set up
> for failover etc.
>
> that's really a shitload of *simultaneous* hits.
>
> ..tony
>
> Tony Weeg
> Senior Web Developer
> Information System Design
> Navtrak, Inc.
> Fleet Management Solutions
> www.navtrak.net
> 410.548.2337
>


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



RE: HTML from CFC's in a shared scope

2002-11-19 Thread Raymond Camden
> 
> >> Also, has anyone had any negative reaction to loading a 
> CFC into server
> >> scope?
> 
> > Note that you cannot output HTML from methods of CFCs that 
> are stored
> > in shared scopes (but, hey, you wouldn't be outputting HTML 
> from CFCs
> > anyway, would you?).
> 
> How does that happen? I can't store a CFC in the application 
> scope and use
> writeoutput() in a method to display stuff from it? ... Or 

Correct. Or  for that matter. This is a known bug.

> for that matter
> 
> #application.mycfc.mymethod()#
> 
> and simply have the method return a string?

If the method RETURNS a string, then it will work ok.

I.e., this is good:



This is not:

You go, girl

The second example will work on the first hit only. As it stands, many
people (myself included) think it's a bad idea to directly output from
the method. But - that's another discussion...

===
Raymond Camden, ColdFusion Jedi Master for Hire

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

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


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



RE: ColdFusion practical limits

2002-11-19 Thread Dave Watts
> > 2000 simultaneous transactions
> 
> Maybe I'm missing something, but it used to be that 
> Allaire recommended (as a general rule) limiting the 
> simultaneous transactions to 4 x the number of CPUs. 
> Of course, that goes back to ColdFusion 4 and early
> Pentium IIs, and there were lots of other variables 
> to take into consideration. Nevertheless, even if 
> that number has grown to, say, 20 for your average 
> Web server, and you have dual processor boxes (still
> the best bang for the buck?), that would be 50 servers.

The number of simultaneous requests that CF will process isn't necessarily
the same as the number of simultaneous transactions, from an external
perspective. Let's say you do have 2000 simultaneous requests, and CF is set
to process four at a time. It'll queue the other 1,996 requests, and when it
finishes one, the first queued request will be processed. From an external
perspective, as long as all the requests completed within an acceptable
time, the server would be considered able to handle that number of
simultaneous requests.

This queuing architecture is supposed to be faster than creating a thread or
process for each request.

As for the "general rule" you noted, that rule isn't very useful (and never
was, really). It's been my experience that the appropriate setting for this
can vary significantly, based on many ambiguous variables, and the only way
to determine a value is through load testing against the specific
application(s) on that server.

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

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



Re: secure email...

2002-11-19 Thread Paris Lundis
Doug post a sample of code when you find it interesting knowledge
that isn't well spread/documented and not covered directly in any of the
books I have sitting here...

-paris

Paris Lundis
Founder
Areaindex, L.L.C.
http://www.areaindex.com
http://www.pubcrawler.com
412-292-3135
[finding the future in the past, passing the future in the present]
[connecting people, places and things]


-Original Message-
From: "samcfug" <[EMAIL PROTECTED]>
Date: Tue, 19 Nov 2002 11:52:01 -0600
Subject: Re: secure email...

> Yep
> 
> In the CFMAIL section of the Docs for version 5.0 it
> describes the tags.  It is similar to CFPOP as well and
> works the same way.
> 
> The FROM address should be the Account name the mail server
> uses, followed by password ="pop passwordhere"
> You use the REPLYTO as the email address of the user
> actually sending the mail to prevent spamming.
> 
> When I get a chance I will dig out the code from a running
> app I have if you cannot find it.
> 
> =
> Douglas White
> group Manager
> mailto:[EMAIL PROTECTED]
> http://www.samcfug.org
> =
> - Original Message -
> From: "Josh Trefethen" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Tuesday, November 19, 2002 12:08 AM
> Subject: RE: secure email...
> 
> 
> | Hey Doug, you there?
> |
> | --
> | Josh Trefethen
> |
> | :[ Exciteworks, Inc ]::[
> http://exciteworks.com ]:.
> | ::[ cf hosting on linux ]::[ consulting ]::[
> expertise ]::.
> |
> |
> | -Original Message-
> | From: Josh Trefethen
> [mailto:[EMAIL PROTECTED]]
> | Sent: Sunday, November 17, 2002 1:29 PM
> | To: CF-Talk
> | Subject: RE: secure email...
> |
> |
> | I was thinking the same thing...
> |
> | There is no reference to a log in and password in your
> example...what am
> | I missing?
> |
> | --
> | Josh Trefethen
> |
> | :[ Exciteworks, Inc ]::[
> http://exciteworks.com ]:.
> | ::[ cf hosting on linux ]::[ consulting ]::[
> expertise ]::.
> |
> |
> | -Original Message-
> | From: Matt Robertson [mailto:[EMAIL PROTECTED]]
> | Sent: Saturday, November 16, 2002 10:02 PM
> | To: CF-Talk
> | Subject: Re: secure email...
> |
> |
> | >Excuse me! But CFMAIL certainly does support Login and
> Passwords when
> | >sending out email. I am using CF 5.0
> |
> | I don't get it.  Your code sample shows no username or
> password parms
> | anywhere.  I've checked the CF docs and there is no such
> support for
> | what you describe in MX.  I don't have 5.0 docs handy.
> |
> | What am I missing?
> |
> | fyi cfparaming in a message-id is another good idea
> alongside reply-to.
> | Both help keep some anti-spam systems (like Declude) from
> flagging the
> | message fo poor formatting.
> |
> |  | value="<#CreateUUID()#@#attributes.EmailServer#>">
> |
> | ---
> | Matt Robertson, MSB Designs, Inc.
> | http://mysecretbase.com - Retail
> | http://foohbar.org - ColdFusion Tools
> | ---
> |
> |
> | -- Original
> Message --
> | from: "samcfug" <[EMAIL PROTECTED]>
> | Reply-To: [EMAIL PROTECTED]
> | date: Sat, 16 Nov 2002 21:09:30 -0600
> |
> | >I imagine you can pass just about any variable you want
> to, however, it
> |
> | >might be smart to try in some way to validate that the
> reply to is a
> | >valid email address or to discard the email completely.
> | >
> | >One of the advantages I discovered using the REPLYTO is
> that when the
> | >addressee had a vacation reply or auto-responder set up,
> it will not go
> |
> | >into a mail loop.  Those make sys admins very mad at you.
> | >
> | >I am trying to write a custom tag that will do a SMTP
> | >verify, to try to catch bad email addresses, but it is
> not
> | >yet ready for prime time :-)
> | >
> | >For those that were talking about using Linux,  I have
> been
> | >successfully using Sendmail and with Mailman to support
> the mailing
> | >lists. (Imail on Windows has all this built-in)  but am
> in the
> | >process of switching the Linux mail server to Postfix,
> which
> | >is an all-in-one package that will handle email, list
> | >server, and web mail, and WebMin for remote
> administration.
> | >
> | >Both my Imail and my sendmail servers are high volume, as
> I support
> | >free hosting for User groups, and their mail lists.
> Rarely is email
> | >taking longer than one to two minutes to deliver, and in
> those cases,
> | >it is usually a reluctant receiving mail server that
> causes the delay.
> | >Hotmail is the worst offender, but right in there is
> | >Verizon.net, and earthlink.
> | >
> | >
> | >=
> | >Douglas White
> | >group Manager
> | >mailto:[EMAIL PROTECTED]
> | >http://www.samcfug.org
> | >=
> | >- Original Message -
> | >From: "Paris Lundis" <[EMAIL PROTECTED]>
> | >To: "CF-Talk" <[EMAIL PROTECTED]>
> | >Sent: Sat

RE: ColdFusion practical limits

2002-11-19 Thread Samuel Neff
That's for simultaneous worker threads.  I think the number is up a bit
with CFMX, and the optimal number actually varies quite a bit from app
to app.

However, simultaneous threads is also a lot different than simultaneous
connections.  Unprocessed threads just go into the queue.  If an app
typically processes a page in 200ms, then a single thread can handle 5
"simultaneous" connections and respond to all within one second.  Drop
the typical page time to 50ms (easier said than done), and you've got a
lot more "simultaneous" connections.  

Sam

> -Original Message-
> From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]] 
> Sent: Tuesday, November 19, 2002 2:17 PM
> To: CF-Talk
> Subject: RE: ColdFusion practical limits
> 
> 
> > 2000 simultaneous transactions
> 
> Maybe I'm missing something, but it used to be that Allaire 
> recommended (as a general rule) limiting the simultaneous 
> transactions to 4 x the number of CPUs. Of course, that goes 
> back to ColdFusion 4 and early Pentium IIs, and there were 
> lots of other variables to take into consideration. 
> Nevertheless, even if that number has grown to, say, 20 for 
> your average Web server, and you have dual processor boxes 
> (still the best bang for the buck?), that would be 50 servers.
> 
> Benjamin S. Rogers
> http://www.c4.net/
> v.508.240.0051
> f.508.240.0057
> 


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



RE: Stored Proc list input

2002-11-19 Thread Lomvardias Christopher
Another option is to write a UDF as shown in this example.

http://www.sqlteam.com/item.asp?ItemID=11499

Chris

-Original Message-
From: Lomvardias Christopher 
Sent: Tuesday, November 19, 2002 2:20 PM
To: '[EMAIL PROTECTED]'
Cc: '[EMAIL PROTECTED]'
Subject: RE: Stored Proc list input


Neil,

There are a few ways to deal with this. Here's one option.

http://accesshelp.net/content/Report.asp?REPORT=4&PARAM_ID=46

Chris

-Original Message-
From: Neil H. [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 2:07 PM
To: CF-Talk
Subject: Re: Stored Proc list input


Impossible that there is no way to do this, at least you would think so?!

Neil

- Original Message -
From: "S. Isaac Dealey" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, November 19, 2002 1:52 PM
Subject: Re: Stored Proc list input


> Likely you're going to run into a larger issue with your database not
being
> able to interpret the @PassVariable value as an integer... at least with
MS
> SQL Server I have yet to find a way to pass a list to a stored procedure
> without passing it as a varchar and then using exec (@mysqlstatement) or
> exec sp_executesql @mysqlstatement which somewhat defeats the purpose of
the
> storedprocedure being pre-processed.
>
> > I need to pass a string such as 1,2 in to a stored procedure.  The
> > variable
> > is then used like this:
>
> > Where MYVariable IN (@PassVariable)
>
> > Now the problem is that MYVariable is an INT and I am passing in the
> > @PassVariable as a string.
>
> > I get this error:
>
> > Syntax error converting the varchar value '1,2' to a column of data type
> > int.
>
> > I need to figure some way around this.  Any ideas?
>
> > Thanks,
>
> > Neil
>
> S. Isaac Dealey
> Certified Advanced ColdFusion 5 Developer
>
> www.turnkey.to
> 954-776-0046
> 

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



RE: RegExpression Question

2002-11-19 Thread Andy Ousterhout
Ben,

Thanks.  Since I have no clue what your string actually does, I'd like to
spend some time understanding it.

Andy

-Original Message-
From: Ben Doom [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 11:25 AM
To: CF-Talk
Subject: RE: RegExpression Question


refind("([""'(])Andy\1", string)
will find the tree examples you gave.

If you want an explanation or more help, I suggest you turn to:
http://www.houseoffusion.com/cf_lists/index.cfm?method=threads&forumid=21
Read, Post to, or Join the list here for all your RegEx needs.  :-)



  --Ben Doom
Programmer & General Lackey
Moonbow Software

: -Original Message-
: From: Andy Ousterhout [mailto:[EMAIL PROTECTED]]
: Sent: Tuesday, November 19, 2002 11:55 AM
: To: CF-Talk
: Subject: RegExpression Question
:
:
: I want to find any of the following:
: "Andy"
: (Andy)
: 'Andy'
:  in a string, but not find
: "andy was here (not)
:
: I know the following will find each of the three options if I do
: it 3 times.
: Can I find all 1 one statement without finding ["andy was here (not] ?
:
: REFind("[]'*'[]", "Find this 'here'")
: REFind("[](*)[]", "Find this (here)")
: REFind("[]""*""[]", "Find this ""here""")
:
:
:
:
:

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



RE: RegExpression Question

2002-11-19 Thread Andy Ousterhout
Isaac,

Thanks for the link.  This is my first attempted usage of RegEx

Andy

-Original Message-
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 11:31 AM
To: CF-Talk
Subject: Re: RegExpression Question


> I want to find any of the following:
> "Andy"
> (Andy)
> 'Andy'
>  in a string, but not find
> "andy was here (not)

> I know the following will find each of the three options if I do it 3
> times.
> Can I find all 1 one statement without finding ["andy was here (not] ?

> REFind("[]'*'[]", "Find this 'here'")
> REFind("[](*)[]", "Find this (here)")
> REFind("[]""*""[]", "Find this ""here""")

You might want to try [EMAIL PROTECTED]

although -- the expressions in this example look all wrong... you're not
actually using * like that in your expression are you? That's a special
character in regex meaning "zero or more instances" of the previous
character or subexpression. And [] means "match any of the 0 characters in
these brackets" or in other words "do nothing". and the () are special
characters indicateing a sub-expression if they haven't been escaped with \
. So -- if anything, I would expect these expressions would match items
like or one or more single or double quotes with nothing in them. The middle
expression "[](*)[]" shouldn't match anything at all if it doesn't error
out, because it says "Find nothing, followed by a subexpression including
zero or more of nothing, followed by nothing".


S. Isaac Dealey
Certified Advanced ColdFusion 5 Developer

www.turnkey.to
954-776-0046

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



Re: You People Are AWESOME

2002-11-19 Thread Paris Lundis
sounds like you have server caching on ... 

its in the CF web admin screens  a simple checkbox.

Paris Lundis
Founder
Areaindex, L.L.C.
http://www.areaindex.com
http://www.pubcrawler.com
412-292-3135
[finding the future in the past, passing the future in the present]
[connecting people, places and things]


-Original Message-
From: "Hawkes, Keith A  CIV" <[EMAIL PROTECTED]>
Date: Tue, 19 Nov 2002 15:23:30 -0500
Subject: You People Are AWESOME

> And, after a little sucking up for successfully helping me with my
> last
> question, here's another point of confusion for me.
> 
> Where are Cold Fusion sites retained in memory?  I have a page that
> no
> longer exists that, if I type in the url, will appear and work just
> the way
> I don't want it to.  Another page that I know exists results in the
> Cold
> Fusion error message that the page doesn't exist, yet if I rename the
> folder
> containing the file, the file works just fine.  I looked at the CF
> Administrator settings but can't find anything that looks like my
> fix.  How
> do I clear out these ghosts?
> 
> Thanks again,
> Keith


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



RE: ColdFusion practical limits

2002-11-19 Thread Andy Ousterhout
Howie,
I had to deal with a similar issue when I was helping the client through a
Software buy and modification.  As others have commented, it is so dependent
on how the code is write, the SQL server, the hardware configuration, how
much redundancy is built in, what recovery procedures to you have, etc.  It
was relatively easy with the package.  We visited Sun, created a simulated
environment, then stressed the heck out of it an monitor all of the break
points.  Tuned, then repeated.

Then the development.  Really can't know until the app is constructed.  How
we ended up framing the responses to the client from the software packages
was:

1. Scalability:  How we would decide when to add additional servers and the
cost of adding those servers, both in hardware and software and support
personal.

2.  Backup:  What where the requirements for restart and recovery?  How fast
versus cost - we got the client to loosing up here after explaining the cost
of failure

3.  Functionality/Scope:  We had significant scope creep that impacted the
hardware sizing efforts.  While we were able to explain our way out, we
should have been so much more specific to start with

Whatever you estimate for hardware, double it! ;-).  The clients will do so
on their scope and beat you up on the additional hardware cost (but I
thought you said is was scalable!).  Also, if this a ground up development,
the hardware/system software will be a relatively small piece of the pie.
But at the end of the day, if you don't have the responsiveness you need,
cause you significant headaches.

In summary, unless this is an existing package, I don't know how you can
state specifics before functionality is fully designed and the code written.
Overall, this becomes a requirement that is stress tested against during
system testing.

Good luck.

Andy

-Original Message-
From: Howie Hamlin [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 12:12 PM
To: CF-Talk
Subject: ColdFusion practical limits


I need to provide a big client with the practical limits of ColdFusion 5
running on a Windows 2000 server.  The clients
wants to know that the server and the associated MS SQL Server can handle
2000 simultaneous transactions.  Are there any
published stats that would help?  Would I need to lod balance several
servers to support this?

Thanks in advance...

Regards,

Howie


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



RE: secure email...

2002-11-19 Thread Ken Wilson
Hmmm, odd. Printed docs? Can you give me page #? My curiousity is really
growing now. Somehow I think we're talking about two entirely different
things here.  :)

Ken



-Original Message-
From: samcfug [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, November 19, 2002 2:11 PM
To: CF-Talk
Subject: Re: secure email...


I find it in the Docs for CF SERVER 5.0   not in studio
docs.

=
Douglas White
group Manager
mailto:[EMAIL PROTECTED]
http://www.samcfug.org
=
- Original Message -
From: "Ken Wilson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, November 19, 2002 12:53 PM
Subject: RE: secure email...


| Checked both CF Studio docs and printed docs for CF5
earlier today and
| saw no mention of it at all.
|
| Ken
|
|
|
| -Original Message-
| From: Matt Robertson [mailto:[EMAIL PROTECTED]]
| Sent: Tuesday, November 19, 2002 12:47 PM
| To: CF-Talk
| Subject: secure email...
|
|
| I'd definitely like to see that.  I can't understand why
the feature
| would be absent in CF 4.5, present in CF 5 and absent
again in CFMX.
| Does anyone have a set of online docs for CF 5 that are
web-accessible
| (and rendered safe, of course?)  Something at MM, maybe?
|
|


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



RE: RegExpression Question

2002-11-19 Thread Samuel Neff
I don't understand how the backreferences can work in this case:

(Andy)

If it matches the first (, then it will search for a matching (, not the
matching ).

> -Original Message-
> From: Ben Doom [mailto:[EMAIL PROTECTED]] 
> Sent: Tuesday, November 19, 2002 12:25 PM
> To: CF-Talk
> Subject: RE: RegExpression Question
> 
> 
> refind("([""'(])Andy\1", string)
> will find the tree examples you gave.
> 
> If you want an explanation or more help, I suggest you turn 
> to: 
> http://www.houseoffusion.com/cf_lists/index.cfm?method=threads
&forumid=21
Read, Post to, or Join the list here for all your RegEx needs.  :-)


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



Re: secure email...

2002-11-19 Thread Matt Robertson
Are we talking about different things here?  Thats the only thing that makes any 
sense, as you're the only one who has looked at these docs and seen the feature, or 
has heard of it.  This has got to be some sort of misunderstanding.

What I heard from your original post was that cfmail supports the use of username and 
password for smtp auth.  so:



If thats what you mean, it ain't there anywhere on any version.

---
Matt Robertson, MSB Designs, Inc.
http://mysecretbase.com - Retail
http://foohbar.org - ColdFusion Tools
---


-- Original Message --
from: "samcfug" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
date: Tue, 19 Nov 2002 13:11:08 -0600

>I find it in the Docs for CF SERVER 5.0   not in studio
>docs.
>
>=
>Douglas White
>group Manager
>mailto:[EMAIL PROTECTED]
>http://www.samcfug.org
>=
>- Original Message -
>From: "Ken Wilson" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Tuesday, November 19, 2002 12:53 PM
>Subject: RE: secure email...
>
>
>| Checked both CF Studio docs and printed docs for CF5
>earlier today and
>| saw no mention of it at all.
>|
>| Ken
>|
>|
>|
>| -Original Message-
>| From: Matt Robertson [mailto:[EMAIL PROTECTED]]
>| Sent: Tuesday, November 19, 2002 12:47 PM
>| To: CF-Talk
>| Subject: secure email...
>|
>|
>| I'd definitely like to see that.  I can't understand why
>the feature
>| would be absent in CF 4.5, present in CF 5 and absent
>again in CFMX.
>| Does anyone have a set of online docs for CF 5 that are
>web-accessible
>| (and rendered safe, of course?)  Something at MM, maybe?
>|
>|
>
>
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



RE: ColdFusion practical limits

2002-11-19 Thread S . Isaac Dealey
I would hope its death would be quick and painless -- the likely alternative
would have been a long and torturous death.

> I had a client that wanted to support 1 million+ existing subscribers
> using a single CF server, attached to an Access db and a Btrieve Db,
> served through a 56K line.

> Now that was a scary project which died an early death.

> Jerry Johnson


S. Isaac Dealey
Certified Advanced ColdFusion 5 Developer

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



RE: Stored Proc list input

2002-11-19 Thread Lomvardias Christopher
Neil,

There are a few ways to deal with this. Here's one option.

http://accesshelp.net/content/Report.asp?REPORT=4&PARAM_ID=46

Chris

-Original Message-
From: Neil H. [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 19, 2002 2:07 PM
To: CF-Talk
Subject: Re: Stored Proc list input


Impossible that there is no way to do this, at least you would think so?!

Neil

- Original Message -
From: "S. Isaac Dealey" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, November 19, 2002 1:52 PM
Subject: Re: Stored Proc list input


> Likely you're going to run into a larger issue with your database not
being
> able to interpret the @PassVariable value as an integer... at least with
MS
> SQL Server I have yet to find a way to pass a list to a stored procedure
> without passing it as a varchar and then using exec (@mysqlstatement) or
> exec sp_executesql @mysqlstatement which somewhat defeats the purpose of
the
> storedprocedure being pre-processed.
>
> > I need to pass a string such as 1,2 in to a stored procedure.  The
> > variable
> > is then used like this:
>
> > Where MYVariable IN (@PassVariable)
>
> > Now the problem is that MYVariable is an INT and I am passing in the
> > @PassVariable as a string.
>
> > I get this error:
>
> > Syntax error converting the varchar value '1,2' to a column of data type
> > int.
>
> > I need to figure some way around this.  Any ideas?
>
> > Thanks,
>
> > Neil
>
> S. Isaac Dealey
> Certified Advanced ColdFusion 5 Developer
>
> www.turnkey.to
> 954-776-0046
> 

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



  1   2   3   >