RE: Parsing HTML in ColdFusion

2001-02-06 Thread Jeff Howden

[reposting cause the first one had the reply cut off]

Randy,

>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Parsing HTML in ColdFusion

2001-02-06 Thread Jeff Howden

Randy,

:
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Parsing HTML in ColdFusion

2001-02-06 Thread Randy Pringle

We need to parse an HTML page, and remove all HTML tags. Could someone 
please explain how to do this in ColdFusion? There is a component in ASP 
that allows this sort of thing, but we prefer to do it ColdFusion.

Any help would be greatly appreciated.

Randy Pringle & Khalifa Al-Kuwari

RasGas
Doha
Qatar
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Syntax error....

2001-02-06 Thread Nilesh Thesia

Remove single quotes from around the values of Numeric, currency and Time datatype 
fields...
All the best.
-Nilesh Thesia


-Original Message-
From: Jay Patton [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 5:05 PM
To: CF-Talk
Subject: Syntax error


Can anyone tell me what is wrong with this insert statement?
Ive been looking at this for about an hour now and cant figure it out

I get the following error:
Error Diagnostic Information
ODBC Error Code = 37000 (Syntax error or access violation) 


[Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO
statement. 


SQL = "INSERT INTO ResultsManager (RodeoID, EventID, ContestantID, Place,
Time, Points, AdjPoints, Money) VALUES ( '1', '2', '7', '1', '0', '50',
'125', '5000')" 

Data Source = "??"




Thanks,

Jay Patton
Web Pro USA
406.549.3337 ext. 203
1.888.5WEBPRO
www.webpro-usa.com
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF,Linux,MYSQL Bug/Looking for help

2001-02-06 Thread Sicular, Alexander

what exactly is this 'apparent' problem?

Alexander Sicular
Technical Director, Information Technology
The Neurological Institute of New York
Columbia Presbyterian Medical Center
212.305.1318
[EMAIL PROTECTED]


-Original Message-
From: Donovan Rittenbach [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 07, 2001 12:22 AM
To: CF-Talk
Subject: CF,Linux,MYSQL Bug/Looking for help


So we have been having a hard time getting this new box going because 
of an apparent bug in CF 4.5.  Anyhow, we've had two sets of patches 
sent to us from Allaire and we still aren't up and running.  Does 
anybody have any experience with something like this?  If you do, 
please drop me a line.

Thanks,
donovan
--
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Getting Rid of a Query

2001-02-06 Thread Jim McAtee

Rick,

Thanks.  I'm pretty sure as well that the query doesn't persist between
requests, but maybe I didn't state this clearly enough.

If I've got a template that does a huge amount of processing, with many
queries and other memory-intensive operations, I'd just as soon release
memory ASAP _during_ the processing of the template.  Once again, I'm not
sure how to do this, or even if CF's memory management and deallocation
mechanisms go into play before a template is fully processed.  It would be
good to know, however.

Jim


- Original Message -
From: "Rick Lamb" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, February 06, 2001 6:09 PM
Subject: RE: Getting Rid of a Query


> I'm pretty sure that the only time the query is resident in memory is
during
> the initial request, unless you specify it to be cached or set to a
session
> variable. So I don't think that is going to get you anywhere. Although, it
> might be a good idea to look into a way to make sure the odbc connection
> doesn't persist beyond the initial database call. I'm not sure the best
way
> to do this. I know you can specify in CF admin not to maintain database
> connections. You may also look into using
> CFUSION_DISABLE_CONNECTIONS([DSN],1) to kill the connection.
>
> Rick
>
> -Original Message-
> From: Jim McAtee [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, February 06, 2001 6:20 PM
> To: CF-Talk
> Subject: Getting Rid of a Query
>
>
> I need to run a query to create a list via ValueList().  Afterwards I no
> longer need the qeury itself.  How can I get rid of it (deallocate the
> memory used) and does this actuall free the memory immediately?  If it
> doesn't, I suppose there's no real point.
>
> Jim


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: http_user_agent

2001-02-06 Thread Howie Hamlin

IP Address is cgi.remote_addr
Referer is cgi.http_referer

HTH,

Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc.
www.CoolFusion.com
631-737-4668 x101
inFusion Mail Server (iMS) - the World's most configurable mail server
Get your free copy of iMS POST-SE Server from CoolFusion!

- Original Message -
From: "Michael Gribbin" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, February 07, 2001 1:04 AM
Subject: http_user_agent


> Since I have not read about it in any CF books nor seen anything about it
on
> Allaire, it is interesting to see the "http_user_agent" feature. I've been
> using JavaScript to determine the browser type. The talk list's
suggestion
> to use  is a good one and works
really
> well. Thanks gang.
>
>  Now my question is: are there any other of these goodies to help me find
> the IP Address or Referring  Page using CF?
>
> Thanks all,
>
> Michael Gribbin
> Digital Marketing Alliance, Inc.
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: cfmail timeout

2001-02-06 Thread Howie Hamlin

Where did you get the timeout?  If you got it when calling the page then add
a requesttimeout like:

www.somedomain.com/sendmail.cfm?requesttimeout=10

The number is the number of milliseconds.

Regards,

Howie Hamlin - inFusion Project Manager
On-Line Data Solutions, Inc.
www.CoolFusion.com
631-737-4668 x101
inFusion Mail Server (iMS) - the World's most configurable mail server
Get your free copy of iMS POST-SE Server from CoolFusion!

- Original Message -
From: "chad jackson" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Wednesday, February 07, 2001 12:48 AM
Subject: cfmail timeout


> Hi
> I just sent out only 1000 emails using cfmail..
> and I got a timeout error.
>
> Should i put a timout on the query, or on the cfmail tag?
> If so, what is a satisfactory amount?
> I am expecting to database to grow to several thousand.
>
>
>
> The code is
>
> 
> SELECT email, name, country
> FROM subscribe
> WHERE LEN(email) > 0
> 
>
> 
>  subject="#form.subject#">
> Hi #name#,
>
> #form.message#
>
> 
> 
>
> thanks for your help
>
> regards
> chad
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



http_user_agent

2001-02-06 Thread Michael Gribbin

Since I have not read about it in any CF books nor seen anything about it on
Allaire, it is interesting to see the "http_user_agent" feature. I've been
using JavaScript to determine the browser type. The talk list's  suggestion
to use  is a good one and works really
well. Thanks gang.

 Now my question is: are there any other of these goodies to help me find
the IP Address or Referring  Page using CF?

Thanks all,

Michael Gribbin
Digital Marketing Alliance, Inc.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



re: BETA 5

2001-02-06 Thread Zac

Mike Kear <[EMAIL PROTECTED]> wrote:

> I guess Allaire's security system falls under the heading .. "don't tell
> them where it is and no one will find it"

Well based on the email I got from Allaire it appears this is a public release
and they posted it to the servers before (well before) they sent out the
messages.

So people who had the address got the beta before the public announcement went
out.

Still...


  
-- 

   Zac Belado

   email: [EMAIL PROTECTED]
   WWW: http://www.pixelgeek.com/

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



cfmail timeout

2001-02-06 Thread chad jackson

Hi
I just sent out only 1000 emails using cfmail..
and I got a timeout error.

Should i put a timout on the query, or on the cfmail tag?
If so, what is a satisfactory amount?
I am expecting to database to grow to several thousand.



The code is


SELECT email, name, country
FROM subscribe
WHERE LEN(email) > 0




Hi #name#,

#form.message#




thanks for your help

regards
chad


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Fw: CF_TwoSelectsRelated custom tag error

2001-02-06 Thread Vikram Ponuganti

Hi ...

I downloaded this tag from the Devolopers Exchange ... But iam unable to run
it as its giving an Javascript error... and
also its taking a lot of download time.,...
Could someone provide a solution Pleas or does anyone one else has a
code snippette

Thanks
Vikram


select brands.brandid bid,brands.brandname bname,products.productid
pid,products.productname pname from brands,products order by bid







  




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



re: BETA 5

2001-02-06 Thread Mike Kear

I guess Allaire's security system falls under the heading .. "don't tell
them where it is and no one will find it"

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, February 07, 2001 11:05 AM
To: CF-Talk
Subject: Re: BETA 5

Lets be really blunt here. Do you have any idea what beta means? How about
NDA?  How about invitation only? Posting the beta location, which is a
hidden directory supplied to beta participants only, is wrong. I'm trying to
keep the list open here, but this is not right. Next I expect people to
start 'sharing' serial numbers and passcodes.
For those who think I'm getting a bit to defensive, your right. There are
proper ways of getting the beta and proper places to talk about it.


> ***Address removed 
>
> Go get it :)
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF,Linux,MYSQL Bug/Looking for help

2001-02-06 Thread Donovan Rittenbach

So we have been having a hard time getting this new box going because 
of an apparent bug in CF 4.5.  Anyhow, we've had two sets of patches 
sent to us from Allaire and we still aren't up and running.  Does 
anybody have any experience with something like this?  If you do, 
please drop me a line.

Thanks,
donovan
-- 

Donovan Rittenbach, M.A.
ph: 415-331-9110 ext. 402
fx: 415-893-1128
icq: 36547420
Neko Media is a premiere provider of web based applications
designed to make your website an integral part of the way
your company does business.
___

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Allaire are out of office

2001-02-06 Thread Dave Watts

> Whoever is forwarding my posts to allaire, STOP IT...they are 
> out of office till 12 feb, do it then.

I think you're getting the autoreply messages that you often get when
posting to a mailing list; I got some myself tonight from Allaire people
after posting.

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: How to kill session variables ???

2001-02-06 Thread Jon Hall

This way is better..
 
  
 

jon

- Original Message -
From: "Maia, Eric" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, February 06, 2001 7:52 PM
Subject: RE: How to kill session variables ???


> 
>
> -Original Message-
> From: Vani Kolli [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, February 06, 2001 2:43 PM
> To: CF-Talk
> Subject: How to kill session variables ???
>
>
>
> Can anyone help me how do i kill session varibales explicitly ??
>
> Thanks
>
> Vani
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: cfstoredproc vs. exec storeproc

2001-02-06 Thread Edward Smith

This reminds me of a problem that I need to deal with.

Is there a size limit on a cfprocparam field?  We're getting an error
when trying to insert a 36kb string through a stored procedure into a
LONG field on Oracle 8.1

The error is:

Oracle Error Code = 1460 
ORA-01460: unimplemented or unreasonable conversion requested 

This is specific to this field - if I shorten it, it works.

I saw a vague mention in a forums posting about a 32k limit on
cfprocparam.

The datatype in the procparam is CF_SQL_LONGVARCHAR, and the field in
Oracle is LONG.

Any ideas?

Dave Watts wrote:
> 
> > Do any of you guys know what the advantages are when using the
> > cf tag  instead of just executing the stored procedure
> > through a sql statement? It seems easier and cleaner to me to do
> > it through a sql statement, but they must have developed the tag
> > for a reason. What am I missing?
> 
> CFSTOREDPROC allows you to do some things that you couldn't do with simple
> call/exec syntax. You can return multiple recordsets and have them available
> as separate CF variables, you can work with out and inout parameters, you
> can retrieve VARRAY data, you can call stored procedures in Oracle.
> 
> If you're not interested in that stuff, and you just want to call stored
> procedures and have them return their recordsets, there's nothing wrong with
> using CFQUERY for that. You can then get the best of both worlds by using
> CACHEDWITHIN/CACHEDAFTER in your CFQUERY tags.
> 
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
> voice: (202) 797-5496
> fax: (202) 797-5444
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Allaire are out of office

2001-02-06 Thread Charlie McCormack

Whoever is forwarding my posts to allaire, STOP IT...they are out of office
till 12 feb, do it then.

And guess what...I didn't go through the beta site, so therefore I didn't
SIGN or AGREE TO a license agreement until I open the file and install, at
which point it will ask me to agree to the license in the APP, and the ftp
site has no conditions of entry.

-- TOPIC FINISHED --


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: BETA 5

2001-02-06 Thread Dave Watts

> When I go in thru the normal Beta.allaire.com site and click 
> on "ColdFusion 5.0 Giveway" (for Windows), Norton Antivirus 
> has a fit about "CFJava[1].cab...  It doesn't give any details 
> about what it found i.e. the virus name is "" so I don't know 
> if there's something about the CAB file or what...

This is a known problem with Norton Antivirus. There's no virus in the CAB
file. You shouldn't have any problem with the latest version of NAV.

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Scheduled Event (was: multiple queries tie up web server)

2001-02-06 Thread Peter Theobald

Wouldn't it be easier to use CFCACHE to mark the page as cached? CF will process the 
page once and write the HTML to a cache file, from then on it will use the cached HTML 
file and not reprocess the file until the cache expires.

At 01:34 PM 2/6/01 -0600, Ricq Pattay wrote:
>To avoid running those pesky 7500 queries, I'm investigating creating a
>static page that refreshes once a day. My user seems sorta ok with this
>approach. This is my first attempt with scheduling a CF event.
>
>So why when I set up a scheduled event in the CF Adminstrator do I always
>get a "connection failure" notice? The URL is correct, no username or
>password is required, request timeout is set well above what the page
>usually takes, no proxy, publish is checked, publish path & filename are
>valid, resolve URL checked. Actually I get a connection failure even when
>trying to run a simple page with ONE query and passing no parameters to it,
>so this sounds like a configuration issue...(?).
>
>The scheduler log looks ok:
>
>"Information","TID=3402","02/06/01","13:05:52","Scheduled action
>vcross_test, template
>http://bozo.umn.edu/schedule.cfm?year=2001-2002&rotation=2&type=rotation
>submission initiated."
>"Information","TID=3402","02/06/01","13:08:05","Scheduled action
>vcross_test, template
>http://bozo.umn.edu/schedule.cfm?year=2001-2002&rotation=2&type=rotation
>submitted successfully."
>
>but the resulting .htm file consists of the one line "Connection failure."
>
>If I select "Run" from the CF Admin scheduling page, the scheduled page
>always times out, even the simple test page with a single query that
>normally takes 1 second to run if loaded directly.
>
>
>
>
>Ricq Pattay ~ [EMAIL PROTECTED]
>College of Veterinary Medicine
>University of Minnesota - Twin Cities
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is there a way to run a server side executable through CF?

2001-02-06 Thread Peter Theobald

CFEXECUTE

At 02:35 PM 2/6/01 -0600, Paul Begovich wrote:
>We have created several scripts written for NT Server that perform various
>server side tasks.  What we want to do is execute these scripts using the CF
>scheduler.  Is there a way to run a server side executable through CF?
>
>- Paul
>
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: BETA 5

2001-02-06 Thread Sicular, Alexander

would someone from allaire fess up and let us know if the ftp site was
supposed to be password protected? if yes then the NDA guys have it - if not
the beta is public so stfu and stop bitching.

Alexander Sicular
Technical Director, Information Technology
The Neurological Institute of New York
Columbia University
212.305.1318
[EMAIL PROTECTED]




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: DSNLess Connections

2001-02-06 Thread Dave Watts

> Is there a way to do a DSNLess database connection in Cold 
> Fusion, like the ASP DSNLess connection? Thanks in advance.

Currently, no.

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cfstoredproc vs. exec storeproc

2001-02-06 Thread Dave Watts

> Do any of you guys know what the advantages are when using the 
> cf tag  instead of just executing the stored procedure 
> through a sql statement? It seems easier and cleaner to me to do 
> it through a sql statement, but they must have developed the tag 
> for a reason. What am I missing?

CFSTOREDPROC allows you to do some things that you couldn't do with simple
call/exec syntax. You can return multiple recordsets and have them available
as separate CF variables, you can work with out and inout parameters, you
can retrieve VARRAY data, you can call stored procedures in Oracle.

If you're not interested in that stuff, and you just want to call stored
procedures and have them return their recordsets, there's nothing wrong with
using CFQUERY for that. You can then get the best of both worlds by using
CACHEDWITHIN/CACHEDAFTER in your CFQUERY tags.

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

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: hal's wireframe

2001-02-06 Thread Hal Helms

You've got it exactly right, Troy. One of the nice things about the
prototype EXACTLY matching the finished app is that the prototype forms the
basis for acceptance testing. We KNOW we're done when the prototype runs.
(There are obviously some things, like integration with backend systems,
that can't be prototyped, but these can be specified and separate acceptance
tests created.)

Hal Helms
== See ColdFusionTraining.com for info on "Best Practices with ColdFusion &
Fusebox" training ==


-Original Message-
From: Troy Sorzano [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 6:26 PM
To: CF-Talk
Subject: Re: hal's wireframe


I saw Hal's presentation at CF_South this weekend.  From my understanding
the wireframes is used to create a
"wireframe" of the website/application you are creating from the notes you
take during the client meetings.  Then
once you have the "wireframe" done and the client understands the flow of
the site/app you can begin proto typing
the app in HTML with all the controls.  Then using his DevNotes stuff have
the user give feedback on the
prototype.  Once the client is sick of looking at the prototype you can
freeze it and being coding CF.  Then
deliver the CF app.  It should match the prototype exactly but now it will
have full functionality.  And the
client knew all a long what they were getting.  So they cant bitch they
don't like it or want changes without
paying for them.

Later,

Troy Sorzano


In article <[EMAIL PROTECTED]>, Jason Egan
wrote:
> Date: Tue, 06 Feb 2001 13:59:42 -0700
> From: "Jason Egan" <[EMAIL PROTECTED]>
> Subject: hal's wireframe
> Reply-To: [EMAIL PROTECTED]
> To: CF-Talk <[EMAIL PROTECTED]>
>
> I've just been looking at Hal's wireframe - this is for development
correct?
> This isn't intended for use in the actual application right?
>
> je
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Database Connection Pooling

2001-02-06 Thread Haryono ...

Hi everyone.
I don't understand about Database Connection Pooling.
What is the meaning of Database Connection Pooling?
What is the meaning of page compilation and caching?

Thank you.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: BETA 5

2001-02-06 Thread Zac

William J Wheatley <[EMAIL PROTECTED]> wrote:

> Well I would have to say that I have known about there ftp site for awhile.
> And have always thought they shoudl password it.

Well if people followed the NDAs they signed there wouldn't be a need to.

Posting URLs like that is shockingly unprofessional.

  
-- 

   Zac Belado

   email: [EMAIL PROTECTED]
   WWW: http://www.pixelgeek.com/

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: BETA 5

2001-02-06 Thread Nick McClure

If somebody takes that computer it is still stealing, Allaire will give you 
the beta, you just have to sign up for it. It is not like it is a big deal, 
you send them an email and say

"I would like to join the CF5 beta program"

They send you a username and password and your in.

At 07:28 PM 2/6/2001 -0500, you wrote:
>Well I would have to say that I have known about there ftp site for awhile.
>And have always thought they shoudl password it. But if its a file that you
>have to logon to download
>they should not make it accessable via ANON ftp.
>
>Just bad practice on Allaires part. Coming out of a store to find your new
>computer is gone out of the back
>when you left the doors unlocked =)
>
>good evening all
>
>
>Bill Wheatley
>Director of Development
>AEPS INC
>Allaire ColdFusion Consulting Partner
>Allaire Certified ColdFusion Developer
>http://www.aeps.com
>ICQ: 417645
>http://www.aeps2000.com
>954-472-6684 X303
>
>IMPORTANT NOTICE:
>This e-mail and any attachment to it is intended only to be read or used by
>the named addressee.  It is confidential and may contain legally privileged
>information.  No confidentiality or privilege is waived or lost by any
>mistaken transmission to you.  If you receive this e-mail in error, please
>immediately delete it from your system and notify the sender.  You must not
>disclose, copy or use any part of this e-mail if you are not the intended
>recipient.  The RTA is not responsible for any unauthorized alterations to
>this e-mail or attachment to it
>- Original Message -
>From: "Robin Elliman" <[EMAIL PROTECTED]>
>To: "CF-Talk" <[EMAIL PROTECTED]>
>Sent: Tuesday, February 06, 2001 5:33 PM
>Subject: RE: BETA 5
>
>
> > Please be careful when posting links to public lists.
> >
> > I'm sure that posting a link directly to a download which you're supposed
>to
> > logon to access it very much against Allaires NDA.
> >
> > Robin Elliman.
> >
> > > -Original Message-
> > > From: Charlie McCormack [mailto:[EMAIL PROTECTED]]
> > > Sent: 06 February 2001 20:48
> > > To: CF-Talk
> > > Subject: BETA 5
> > >
> > >
> > > ftp://ftp2.allaire.com/pub/beta/cfserver50b1.exe
> > >
> > > Go get it :)
> > >
> > >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: BETA 5

2001-02-06 Thread Charlie McCormack

OK

The PUBLIC ftp site as to which it is located on DOES NOT require an
assigned login and IS NOT a hidden directory.

If you ftp to the site, you will see a whole lot more applications.

This ftp site is listed on many sites throughout the Internet, especially
lycos, and IS NOT a beta location.

Now this is how I was able to find the allaire ftp site and their software.

I have always downloaded from this site and will continue to do so, and so
will the many people who also know about this.

BAH

> -Original Message-
> From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, February 07, 2001 11:05 AM
> To: CF-Talk
> Subject: Re: BETA 5
>
>
> Lets be really blunt here. Do you have any idea what beta means? How about
> NDA? How about invitation only? Posting the beta location, which is a
> hidden directory supplied to beta participants only, is wrong.
> I'm trying to
> keep the list open here, but this is not right. Next I expect people to
> start 'sharing' serial numbers and passcodes.
> For those who think I'm getting a bit to defensive, your right. There are
> proper ways of getting the beta and proper places to talk about it.
>
>
> > ***Address removed 
> >
> > Go get it :)
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: BETA 5

2001-02-06 Thread Dick Applebaum

Hear, Hear!

How would any of us feel if someone published a program we had spent 
years & $ developing and were now, trying to sell for a profit?

This ain't warez!

Dick


At 7:05 PM -0500 2/6/01, Michael Dinowitz wrote:
>Lets be really blunt here. Do you have any idea what beta means? How about
>NDA?  How about invitation only? Posting the beta location, which is a
>hidden directory supplied to beta participants only, is wrong. I'm trying to
>keep the list open here, but this is not right. Next I expect people to
>start 'sharing' serial numbers and passcodes.
>For those who think I'm getting a bit to defensive, your right. There are
>proper ways of getting the beta and proper places to talk about it.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Getting Rid of a Query

2001-02-06 Thread Rick Lamb

I'm pretty sure that the only time the query is resident in memory is during
the initial request, unless you specify it to be cached or set to a session
variable. So I don't think that is going to get you anywhere. Although, it
might be a good idea to look into a way to make sure the odbc connection
doesn't persist beyond the initial database call. I'm not sure the best way
to do this. I know you can specify in CF admin not to maintain database
connections. You may also look into using
CFUSION_DISABLE_CONNECTIONS([DSN],1) to kill the connection.

Rick

-Original Message-
From: Jim McAtee [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 6:20 PM
To: CF-Talk
Subject: Getting Rid of a Query


I need to run a query to create a list via ValueList().  Afterwards I no
longer need the qeury itself.  How can I get rid of it (deallocate the
memory used) and does this actuall free the memory immediately?  If it
doesn't, I suppose there's no real point.

Jim
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: [Coldfusion/SQL IC/Freelancer Hourly Rates]

2001-02-06 Thread Alex

urls?? applicaions?? lets see your stuff. 
either way most contract work no matter if its CF or any other language isn't
as glamorous as described or as you might think, but the money is good. 

<[EMAIL PROTECTED]> wrote:
Just wondering if people would share with me what they know
of hourly rates for experienced Coldfusion developers...

I'd say I am qualified as expert or nearly expert with CF.

I am located in Minneapolis, Minnesota.

TIA,
Mike
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: [Wanted: Sr. Developer]

2001-02-06 Thread Alex

I can do telecommute contract. I live in Chicago. If you are intereseted I
will forward you my resume.



"Matthew Graham" <[EMAIL PROTECTED]> wrote:
We are a mid-sized direct mail company in the north-east suburbs of
Philadelphia, PA (Bucks County) looking for a senior Cold Fusion Developer. We
are building a suite of applications to support our production environment and
customer interaction. Intranet & General web site development also part of
minor duties.
Requirements:
2+ years of Cold Fusion development
Javascript
Strong SQL (MS SQL Server or Oracle)
Good presentation with customers

Email resumes to:

Matt Graham
Director of Network Systems
Communication Concepts, Inc.
1044 Pulinski Road
Ivyland, PA 18974

[EMAIL PROTECTED] 

www.ccgroupnet.com
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



cfstoredproc vs. exec storeproc

2001-02-06 Thread Rick Lamb

Do any of you guys know what the advantages are when using the cf tag
 instead of just executing the stored procedure through a sql
statement? It seems easier and cleaner to me to do it through a sql
statement, but they must have developed the tag for a reason. What am I
missing?

Thanks,

Rick


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How to kill session variables ???

2001-02-06 Thread Rick Lamb

With 4.5 session variables are stored as a structure. So you can use
structDelete function to delete.

Rick

-Original Message-
From: Vani Kolli [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 4:43 PM
To: CF-Talk
Subject: How to kill session variables ???



Can anyone help me how do i kill session varibales explicitly ??

Thanks

Vani
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: UML information recommendations?

2001-02-06 Thread Hal Helms

UML really isn't a methodology; it's a way of describing information about
the application. Fusebox is a methodology that gives guidance on
architecture of code structure.

Hal Helms
== See ColdFusionTraining.com for info on "Best Practices with ColdFusion &
Fusebox" training ==


-Original Message-
From: David Adams [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 5:04 PM
To: CF-Talk
Subject: Re: UML information recommendations?


Apparently the Oreilly book is very good as well.

This makes me wonder.  Does FuseBox methodology and UML compliment each
other or compete?

Dave Adams
CFUG Ottawa
- Original Message -
From: Simon Horwith <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Tuesday, February 06, 2001 3:15 PM
Subject: RE: UML information recommendations?


> I think the WROX Press UML Book is excellent.
>
> ~Simon
>
> > Simon Horwith
> > Allaire Certified ColdFusion Instructor
> > Certified ColdFusion Developer
> > Fig Leaf Software
> > 1400 16th St NW, # 220
> > Washington DC 20036
> > 202.797.6570 (direct line)
> > www.figleaf.com
> >
>
>
> -Original Message-
> From: Peter Theobald [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, February 06, 2001 2:35 PM
> To: CF-Talk
> Subject: UML information recommendations?
>
>
> Can anyone recommend a good source of information for advanced programmers
> who are new to UML?
> Especially if it relates to web development.
>
> --
-
> Peter Theobald, Chief Technology Officer
> LiquidStreaming http://www.liquidstreaming.com
> [EMAIL PROTECTED]
> Phone 1.212.545.1232 x204 Fax 1.212.545.0938
>
> To put this contact information into your Palm device, click here:
> http://www.coola.com/cgi-bin/addinfo.cgi?pid=15803&rid=972879910&type=A
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: hal's wireframe

2001-02-06 Thread Hal Helms

That's right. The wireframe's purpose is just to get us to the point where
we can do a prototype. Once we're into the prototype phase, the wireframe
isn't used anymore. BTW, if anyone wants the wireframe code, you can get it
at www.halhelms.com.

Hal Helms
== See ColdFusionTraining.com for info on "Best Practices with ColdFusion &
Fusebox" training ==


-Original Message-
From: Jason Egan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 4:00 PM
To: CF-Talk
Subject: hal's wireframe


I've just been looking at Hal's wireframe - this is for development correct?
This isn't intended for use in the actual application right?

je
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How to kill session variables ???

2001-02-06 Thread Maia, Eric



-Original Message-
From: Vani Kolli [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 2:43 PM
To: CF-Talk
Subject: How to kill session variables ???



Can anyone help me how do i kill session varibales explicitly ??

Thanks

Vani
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Syntax error....

2001-02-06 Thread Evan Lavidor

If any of those columns are set up as INT, then the quotes around the values
aren't necessary and will cause the query to fail.

Evan

> -Original Message-
> From: Jay Patton [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, February 06, 2001 5:05 PM
> To: CF-Talk
> Subject: Syntax error
>
>
> Can anyone tell me what is wrong with this insert statement?
> Ive been looking at this for about an hour now and cant figure it out
>
> I get the following error:
> Error Diagnostic Information
> ODBC Error Code = 37000 (Syntax error or access violation)
>
>
> [Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT
> INTO statement.
>
>
> SQL = "INSERT INTO ResultsManager (RodeoID, EventID,
> ContestantID, Place, Time, Points, AdjPoints, Money) VALUES

> '1', '2', '7', '1', '0', '50', '125', '5000')"
>
> Data Source = "??"
>
>
> 
>
> Thanks,
>
> Jay Patton
> Web Pro USA
> 406.549.3337 ext. 203
> 1.888.5WEBPRO
> www.webpro-usa.com
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: BETA 5

2001-02-06 Thread Jim McAtee

While it's impossible to argue against what you've said, why wouldn't
Allaire protect it if they cared in the least?

Jim


- Original Message -
From: "Robin Elliman" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, February 06, 2001 3:33 PM
Subject: RE: BETA 5


> Please be careful when posting links to public lists.
>
> I'm sure that posting a link directly to a download which you're supposed
to
> logon to access it very much against Allaires NDA.
>
> Robin Elliman.
>
> > -Original Message-
> > From: Charlie McCormack [mailto:[EMAIL PROTECTED]]
> > Sent: 06 February 2001 20:48
> > To: CF-Talk
> > Subject: BETA 5
> >
> >
> > ftp://ftp2.allaire.com/pub/beta/cfserver50b1.exe
> >
> > Go get it :)



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Syntax error....

2001-02-06 Thread Christopher Olive, CIO

you have your ids as text fields when inserting the values.  my first
thought would be to remove them.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: Jay Patton [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 5:05 PM
To: CF-Talk
Subject: Syntax error


Can anyone tell me what is wrong with this insert statement?
Ive been looking at this for about an hour now and cant figure it out

I get the following error:
Error Diagnostic Information
ODBC Error Code = 37000 (Syntax error or access violation)


[Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO
statement.


SQL = "INSERT INTO ResultsManager (RodeoID, EventID, ContestantID, Place,
Time, Points, AdjPoints, Money) VALUES ( '1', '2', '7', '1', '0', '50',
'125', '5000')"

Data Source = "??"




Thanks,

Jay Patton
Web Pro USA
406.549.3337 ext. 203
1.888.5WEBPRO
www.webpro-usa.com
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: BETA 5

2001-02-06 Thread William J Wheatley

Well I would have to say that I have known about there ftp site for awhile.
And have always thought they shoudl password it. But if its a file that you
have to logon to download
they should not make it accessable via ANON ftp.

Just bad practice on Allaires part. Coming out of a store to find your new
computer is gone out of the back
when you left the doors unlocked =)

good evening all


Bill Wheatley
Director of Development
AEPS INC
Allaire ColdFusion Consulting Partner
Allaire Certified ColdFusion Developer
http://www.aeps.com
ICQ: 417645
http://www.aeps2000.com
954-472-6684 X303

IMPORTANT NOTICE:
This e-mail and any attachment to it is intended only to be read or used by
the named addressee.  It is confidential and may contain legally privileged
information.  No confidentiality or privilege is waived or lost by any
mistaken transmission to you.  If you receive this e-mail in error, please
immediately delete it from your system and notify the sender.  You must not
disclose, copy or use any part of this e-mail if you are not the intended
recipient.  The RTA is not responsible for any unauthorized alterations to
this e-mail or attachment to it
- Original Message -
From: "Robin Elliman" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, February 06, 2001 5:33 PM
Subject: RE: BETA 5


> Please be careful when posting links to public lists.
>
> I'm sure that posting a link directly to a download which you're supposed
to
> logon to access it very much against Allaires NDA.
>
> Robin Elliman.
>
> > -Original Message-
> > From: Charlie McCormack [mailto:[EMAIL PROTECTED]]
> > Sent: 06 February 2001 20:48
> > To: CF-Talk
> > Subject: BETA 5
> >
> >
> > ftp://ftp2.allaire.com/pub/beta/cfserver50b1.exe
> >
> > Go get it :)
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



AW: Syntax error....

2001-02-06 Thread Christoph Schmitz

Hi,

if RodeoID, etc. are integer fields you need to remove the single quotes
around the corresponding values.

HTH,

Chris


> -Ursprüngliche Nachricht-
> Von: Jay Patton [mailto:[EMAIL PROTECTED]]
> Gesendet: Dienstag, 6. Februar 2001 23:05
> An: CF-Talk
> Betreff: Syntax error
>
>
> Can anyone tell me what is wrong with this insert statement?
> Ive been looking at this for about an hour now and cant figure it out
>
> I get the following error:
> Error Diagnostic Information
> ODBC Error Code = 37000 (Syntax error or access violation)
>
>
> [Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT
> INTO statement.
>
>
> SQL = "INSERT INTO ResultsManager (RodeoID, EventID,
> ContestantID, Place, Time, Points, AdjPoints, Money) VALUES

> '1', '2', '7', '1', '0', '50', '125', '5000')"
>
> Data Source = "??"
>
>
> 
>
> Thanks,
>
> Jay Patton
> Web Pro USA
> 406.549.3337 ext. 203
> 1.888.5WEBPRO
> www.webpro-usa.com
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: UML information recommendations?

2001-02-06 Thread Toby Tremayne

If you have a look at the fusebox docs ther'es actually an entire section on
fuseML - the fusebox standards for using UML.  I'm reasonably new to fusebox
myself, but the UML schemas adhered to by it's proponents work very nicely -
the methodology itse;f perfeclty lends itself to modelling.

HTH
Toby


Toby Tremayne
Code Poet and Zen Master of the Heavy Sleep
Show Ads Interactive
359 Plummer St
Port Melbourne
VIC 3207
P +61 3 9245 1247
F +61 3 9646 9814
ICQ UIN  13107913

-Original Message-
From: David Adams [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 7 February 2001 9:04 AM
To: CF-Talk
Subject: Re: UML information recommendations?


Apparently the Oreilly book is very good as well.

This makes me wonder.  Does FuseBox methodology and UML compliment each
other or compete?

Dave Adams
CFUG Ottawa
- Original Message -
From: Simon Horwith <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Tuesday, February 06, 2001 3:15 PM
Subject: RE: UML information recommendations?


> I think the WROX Press UML Book is excellent.
>
> ~Simon
>
> > Simon Horwith
> > Allaire Certified ColdFusion Instructor
> > Certified ColdFusion Developer
> > Fig Leaf Software
> > 1400 16th St NW, # 220
> > Washington DC 20036
> > 202.797.6570 (direct line)
> > www.figleaf.com
> >
>
>
> -Original Message-
> From: Peter Theobald [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, February 06, 2001 2:35 PM
> To: CF-Talk
> Subject: UML information recommendations?
>
>
> Can anyone recommend a good source of information for advanced programmers
> who are new to UML?
> Especially if it relates to web development.
>
> --
-
> Peter Theobald, Chief Technology Officer
> LiquidStreaming http://www.liquidstreaming.com
> [EMAIL PROTECTED]
> Phone 1.212.545.1232 x204 Fax 1.212.545.0938
>
> To put this contact information into your Palm device, click here:
> http://www.coola.com/cgi-bin/addinfo.cgi?pid=15803&rid=972879910&type=A
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Getting Rid of a Query

2001-02-06 Thread Jim McAtee

I need to run a query to create a list via ValueList().  Afterwards I no
longer need the qeury itself.  How can I get rid of it (deallocate the
memory used) and does this actuall free the memory immediately?  If it
doesn't, I suppose there's no real point.

Jim


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Syntax error....

2001-02-06 Thread Fred T. Sanders

take your quotes off numeric fields, ODBC treats values surounded by single
quotes as text fields.
Also if you didn't take it out for security reasons, you need a valid
datasource name.

Fred


- Original Message -
From: "Jay Patton" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, February 06, 2001 5:04 PM
Subject: Syntax error


> Can anyone tell me what is wrong with this insert statement?
> Ive been looking at this for about an hour now and cant figure it out
>
> I get the following error:
> Error Diagnostic Information
> ODBC Error Code = 37000 (Syntax error or access violation)
>
>
> [Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO
statement.
>
>
> SQL = "INSERT INTO ResultsManager (RodeoID, EventID, ContestantID, Place,
Time, Points, AdjPoints, Money) VALUES ( '1', '2', '7', '1', '0', '50',
'125', '5000')"
>
> Data Source = "??"
>
>
> 
>
> Thanks,
>
> Jay Patton
> Web Pro USA
> 406.549.3337 ext. 203
> 1.888.5WEBPRO
> www.webpro-usa.com
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: BETA 5

2001-02-06 Thread Michael Dinowitz

Lets be really blunt here. Do you have any idea what beta means? How about
NDA?  How about invitation only? Posting the beta location, which is a
hidden directory supplied to beta participants only, is wrong. I'm trying to
keep the list open here, but this is not right. Next I expect people to
start 'sharing' serial numbers and passcodes.
For those who think I'm getting a bit to defensive, your right. There are
proper ways of getting the beta and proper places to talk about it.


> ***Address removed 
>
> Go get it :)
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Syntax error....

2001-02-06 Thread Sicular, Alexander

 think 'time' or 'money' might be reserved words in access. if you look in
the design view of the table those column names might be in [braces]. rename
your columns.

Alexander Sicular
Technical Director, Information Technology
The Neurological Institute of New York
Columbia University
212.305.1318
[EMAIL PROTECTED]


-Original Message-
From: Jay Patton [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 5:05 PM
To: CF-Talk
Subject: Syntax error


Can anyone tell me what is wrong with this insert statement?
Ive been looking at this for about an hour now and cant figure it out

I get the following error:
Error Diagnostic Information
ODBC Error Code = 37000 (Syntax error or access violation) 


[Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO
statement. 


SQL = "INSERT INTO ResultsManager (RodeoID, EventID, ContestantID, Place,
Time, Points, AdjPoints, Money) VALUES ( '1', '2', '7', '1', '0', '50',
'125', '5000')" 

Data Source = "??"




Thanks,

Jay Patton
Web Pro USA
406.549.3337 ext. 203
1.888.5WEBPRO
www.webpro-usa.com
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Question on Hosting

2001-02-06 Thread Fred T. Sanders

they aren't much on keeping their security holes patched up. Nice price
though.
Just my .02

- Original Message -
From: "Robert Long" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, February 06, 2001 3:51 PM
Subject: RE: Question on Hosting


> You might also consider http://www.copious-infosys.com .
> Small operation, but I have had good luck with them.
> Unlimited bandwidth, email messages and storage for $25/month.
> http://www.copious-infosys.com/webhostingplan.cfm
> Just my .02
>
> -Original Message-
> From: Alan H Koenig [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, February 06, 2001 11:14 AM
> To: CF-Talk
> Subject: RE: Question on Hosting
>
>
> I have a site on virtualscape.com.  I am looking to move to another
location
> very quickly with this site.  Customer service passable, server uptime ok,
> mail server uptime reprehensible.  Save yourself the trouble.
> Just my experience.
> Alan
>
> -Original Message-
> From: Adkins, Randy [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, February 06, 2001 3:58 AM
> To: CF-Talk
> Subject: Question on Hosting
>
>
> As most every had a website on Shanje.com
> however they are unreliable lately.
>
> I am switching to a new hosting company.
>
> Can anyone give me positive/negative
> feedback on
>
> AST WebNet:  http://www.atswebnet.com/
>
> VirtualScape:  http://www.virtualscape.com
>
> Thanks!
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is there a way to run a server side executable through CF?

2001-02-06 Thread Fred T. Sanders

only 4.5 or 4.5.1.

there is a cfx tag 4.0 if you can run them


- Original Message -
From: "Paul Begovich" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, February 06, 2001 5:06 PM
Subject: Re: Is there a way to run a server side executable through CF?


> Is CFEXECUTE supported under CF 4.0 or only CF 4.5?
>
> - Paul
>
> > CFEXECUTE will do this, though you may want to use the NT AT Scheduler
or
> > SQL Server's task scheduler to do this instead.
> >
> > ~Simon
>
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: hal's wireframe

2001-02-06 Thread Fred T. Sanders

correct.

- Original Message -
From: "Jason Egan" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, February 06, 2001 3:59 PM
Subject: hal's wireframe


> I've just been looking at Hal's wireframe - this is for development
correct?
> This isn't intended for use in the actual application right?
>
> je
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: hal's wireframe

2001-02-06 Thread Troy Sorzano

I saw Hal's presentation at CF_South this weekend.  From my understanding the 
wireframes is used to create a 
"wireframe" of the website/application you are creating from the notes you take during 
the client meetings.  Then 
once you have the "wireframe" done and the client understands the flow of the site/app 
you can begin proto typing 
the app in HTML with all the controls.  Then using his DevNotes stuff have the user 
give feedback on the 
prototype.  Once the client is sick of looking at the prototype you can freeze it and 
being coding CF.  Then 
deliver the CF app.  It should match the prototype exactly but now it will have full 
functionality.  And the 
client knew all a long what they were getting.  So they cant bitch they don't like it 
or want changes without 
paying for them.

Later,

Troy Sorzano


In article <[EMAIL PROTECTED]>, Jason Egan wrote:
> Date: Tue, 06 Feb 2001 13:59:42 -0700
> From: "Jason Egan" <[EMAIL PROTECTED]>
> Subject: hal's wireframe
> Reply-To: [EMAIL PROTECTED]
> To: CF-Talk <[EMAIL PROTECTED]>
> 
> I've just been looking at Hal's wireframe - this is for development correct?
> This isn't intended for use in the actual application right?
> 
> je
> 
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



DSNLess Connections

2001-02-06 Thread Rob Beardow

Is there a way to do a DSNLess database connection in Cold Fusion, like the
ASP DSNLess connection? Thanks in advance.

-Rob


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: IsCachedQuery?

2001-02-06 Thread Bud

On 2/6/01, Willy Ray penned:
>Is there any way to check to see if a Query is cached or not, before 
>I call it?  I have some big'uns, and I'd like to be able to handle 
>the caching like this:
>
>The data you have requested is currently being reloaded from the 
>main database.  Please check back in 5 minutes.
>
>How would I do this?

You could load it as an application variable and set it to timeout 
when you wish. Just set the time it was set also.

 (I'll use minutes as an example)










Of course, I presume you'd want to set a time near the end of the 
timeout where they can't access the query. Otherwise, no one will be 
able to access it after the first person runs it until it times out 
again. We'd do that in here by testing the time now() against 
application.querytimeout.



-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: BETA 5

2001-02-06 Thread Sam Coe

Before you "Go Get It", I'd strongly encourage you to go through the Allaire
Beta program to register for it and AT LEAST read the release notes at
http://beta.allaire.com/betadocs/coldfusion50b1/releasenotes.htm.  At this
stage of the Beta, a few things are critical to note (from the release
notes):

* Before installing this release, it's very important that any previous
versions of ColdFusion or Allaire ClusterCATS (clustering and load
balancing) have been removed. 
* ColdFusion Server 5.0 Beta 1 on Linux may crash on Linux servers with two
or more processors. This limitation will be addressed in the next beta
release. 
* To access the new ColdFusion 5.0 logging functionality, you need to delete
or rename your existing log files. On Windows NT, by default log files are
stored in cfusion\log. For all other environments, ColdFusion log files are
stored by default in /opt/coldfusion/log. 
* Advanced Security is NOT supported in Beta 1. As a result, do not install
this release of ColdFusion on a system running Allaire Spectra. 
* Currently, the High Availability Controls are only supported on Microsoft
IIS and Netscape Enterprise Server. This restriction will be removed for
Beta 2. 
* Informix ODBC and Native does not work on Solaris and Linux 

Go to Beta.allaire.com to get the full picture.
-Sam

Samuel Coe
Sr. Manager, Developer Programs
Allaire Corporation
617-219-2133
[EMAIL PROTECTED]
-Original Message-
From: Charlie McCormack [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 3:48 PM
To: CF-Talk
Subject: BETA 5


ftp://ftp2.allaire.com/pub/beta/cfserver50b1.exe

Go get it :)
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: hal's wireframe

2001-02-06 Thread Richard Kern

correct.  It is meant to define what the client wants in terms of
functionality and movement.
done in conjuction with HTML and DevNotes you have a package you can freeze
as a prototype deliverable.
Richard

-Original Message-
From: Jason Egan [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 2:00 PM
To: CF-Talk
Subject: hal's wireframe


I've just been looking at Hal's wireframe - this is for development correct?
This isn't intended for use in the actual application right?

je
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



How to kill session variables ???

2001-02-06 Thread Vani Kolli


Can anyone help me how do i kill session varibales explicitly ??

Thanks

Vani

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Wanted: Sr. Developer

2001-02-06 Thread Matthew Graham

We are a mid-sized direct mail company in the north-east suburbs of Philadelphia, PA 
(Bucks County) looking for a senior Cold Fusion Developer. We are building a suite of 
applications to support our production environment and customer interaction. Intranet 
& General web site development also part of minor duties.
Requirements:
2+ years of Cold Fusion development
Javascript
Strong SQL (MS SQL Server or Oracle)
Good presentation with customers

Email resumes to:

Matt Graham
Director of Network Systems
Communication Concepts, Inc.
1044 Pulinski Road
Ivyland, PA 18974

[EMAIL PROTECTED] 

www.ccgroupnet.com 




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Coldfusion/SQL IC/Freelancer Hourly Rates

2001-02-06 Thread cftalk

Just wondering if people would share with me what they know
of hourly rates for experienced Coldfusion developers...

I'd say I am qualified as expert or nearly expert with CF.

I am located in Minneapolis, Minnesota.

TIA,
Mike


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFFILE :: Multiple image uploads?

2001-02-06 Thread Chad Gray

I am currently using AppletFile to upload multiple files. 
http://www.infomentum.com/activefile/

If is pretty powerful, but be prepared to deal with browser issues.  For 
one MSIE for Mac does not support JAVA so you have redirect those users to 
a page with a simple 

Another is Netscape 4.6 for PC has some sort of bug so you have to 
re-direct those users also.

BUT other then that the program is great!




At 03:33 PM 2/6/01 -0500, you wrote:
>  lol.
>thats exactly what we talked about on the cf-extensions list for Ultra Dev.
>using Ben's CFX_zip tag.
>
>it's a small world af
>
>any other ideas?
>
>thanks
>
>
>
>-paul
>
>Web Developer, NBBJ
>Work:   [EMAIL PROTECTED]
> 614 241-3534
>fax:614 485-5534
>
>Home:   [EMAIL PROTECTED]
> 614 449-1681
>
>icq:47658358
>
> > -Original Message-
> > From: Aaron Johnson [SMTP:[EMAIL PROTECTED]]
> > Sent: Tuesday, February 06, 2001 2:59 PM
> > To:   [EMAIL PROTECTED]
> > Cc:   [EMAIL PROTECTED]
> > Subject:  RE: CFFILE :: Multiple image uploads?
> >
> > -BEGIN PGP SIGNED MESSAGE-
> > Hash: SHA1
> >
> > Hi Paul,
> >
> > As far as I know, it's only possible to upload one file per
> > browse/File field... however, you could have the user zip up x number
> > of files, upload the zip file and then unzip the .zip serverside,
> > creating x number of pictures... ?
> >
> > Aaron Johnson, MCSE, MCP+I
> > Allaire Certified ColdFusion Developer
> > MINDSEYE, Inc.
> > 617.350.0339
> > 617.350.8884
> > 66172567
> > [EMAIL PROTECTED]
> >
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: BETA 5

2001-02-06 Thread Robin Elliman

Please be careful when posting links to public lists.

I'm sure that posting a link directly to a download which you're supposed to
logon to access it very much against Allaires NDA.

Robin Elliman.

> -Original Message-
> From: Charlie McCormack [mailto:[EMAIL PROTECTED]]
> Sent: 06 February 2001 20:48
> To: CF-Talk
> Subject: BETA 5
>
>
> ftp://ftp2.allaire.com/pub/beta/cfserver50b1.exe
>
> Go get it :)
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Distinguishing what type of database

2001-02-06 Thread Bud

On 2/6/01, Robert Long penned:
>Is it possible for a template to tell what type of database is
>is hitting. ie, I want to write a template that will be able to
>tell if it is hitting an Oracle or SQL database and know what
>query to use.

I'm sure someone has a better way. But you could always run a bad 
query in a cftry and cfcatch the detail and look for the string:

ODBC SQL Server Driver
ODBC Microsoft Access Driver

Don't know what Oracle's is.
-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Syntax error....

2001-02-06 Thread Jay Patton

Can anyone tell me what is wrong with this insert statement?
Ive been looking at this for about an hour now and cant figure it out

I get the following error:
Error Diagnostic Information
ODBC Error Code = 37000 (Syntax error or access violation) 


[Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement. 


SQL = "INSERT INTO ResultsManager (RodeoID, EventID, ContestantID, Place, Time, 
Points, AdjPoints, Money) VALUES ( '1', '2', '7', '1', '0', '50', '125', '5000')" 

Data Source = "??"




Thanks,

Jay Patton
Web Pro USA
406.549.3337 ext. 203
1.888.5WEBPRO
www.webpro-usa.com


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: UML information recommendations?

2001-02-06 Thread David Adams

Apparently the Oreilly book is very good as well.

This makes me wonder.  Does FuseBox methodology and UML compliment each
other or compete?

Dave Adams
CFUG Ottawa
- Original Message -
From: Simon Horwith <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Tuesday, February 06, 2001 3:15 PM
Subject: RE: UML information recommendations?


> I think the WROX Press UML Book is excellent.
>
> ~Simon
>
> > Simon Horwith
> > Allaire Certified ColdFusion Instructor
> > Certified ColdFusion Developer
> > Fig Leaf Software
> > 1400 16th St NW, # 220
> > Washington DC 20036
> > 202.797.6570 (direct line)
> > www.figleaf.com
> >
>
>
> -Original Message-
> From: Peter Theobald [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, February 06, 2001 2:35 PM
> To: CF-Talk
> Subject: UML information recommendations?
>
>
> Can anyone recommend a good source of information for advanced programmers
> who are new to UML?
> Especially if it relates to web development.
>
> --
-
> Peter Theobald, Chief Technology Officer
> LiquidStreaming http://www.liquidstreaming.com
> [EMAIL PROTECTED]
> Phone 1.212.545.1232 x204 Fax 1.212.545.0938
>
> To put this contact information into your Palm device, click here:
> http://www.coola.com/cgi-bin/addinfo.cgi?pid=15803&rid=972879910&type=A
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



AOL caching

2001-02-06 Thread Caulfield, Michael

We are running some tests over here, trying to get AOL to cache *anything*
of ours. We can't do it. Once the client-side caching in the browser is
disabled, every request made through AOL comes to our servers. Whether it's
cfm pages with no-cache headers,  .cfm pages w/o no-cache headers, images,
htm pages with query strings, htm pages without query strings, they all come
up the most recent versions (and we've put together some pretty agressive
tests for that)

We are doing this testing because we have been warned before on this list
that we can't trust AOL's statement that it never caches pages containing a
question mark or pages with no-cache headers. We wanted to test to make sure
our headers worked, but since we can't even get the control group of pages
to cache, it's a little hard to test.

So the weird question of the day: Does anybody know how we can get AOL *to*
cache pages of ours . . .

Michael Caulfield
Design Architect
Cognitive Arts
(847) 425-8529




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: BETA 5

2001-02-06 Thread Ken Monroe

When I go in thru the normal Beta.allaire.com site and click on "ColdFusion
5.0 Giveway" (for Windows), Norton Antivirus has a fit about
"CFJava[1].cab...  It doesn't give any details about what it found i.e. the
virus name is "" so I don't know if there's something about the CAB file or
what...
- Original Message -
From: "Charlie McCormack" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, February 06, 2001 3:47 PM
Subject: BETA 5


> ftp://ftp2.allaire.com/pub/beta/cfserver50b1.exe
>
> Go get it :)
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: Using CF ad server for external ads

2001-02-06 Thread Paul Sinclair

I'm using FuseAds for a locally hosted site. Now an external site has asked
me if they could run ads on their site (basically a perl based bulletin
board site) that are drawn from our advertising database.

I know that ads.doubleclick.net and such just stick in a piece of javascript
in the page code and that points at their external ad database which serves
up an ad. Anybody got any thoughts on how this would be implemented on a CF
based adserver such as FuseAds?

Thanks for any ideas.

Paul Sinclair



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: Fax management system

2001-02-06 Thread moonerent

Hi,

Anyone aware either a website or application (CF hopefully) that helps
managers send/receive and track numerous faxes.

Thanks,

Rick
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: Any T-SQL gurus?

2001-02-06 Thread Robyn Follen

Does anyone know if it's possible to nest stored procedures inside a
transaction and have that transaction affect all of the nested stored
procedures?  For example, I have this stored procedure ...

CREATE PROCEDURE sp_InsertCD

@strCDTitle varchar(50),
@strBand varchar(50),
@strSong1 varchar(50),
AS

DECLARE

@strReturnValue  varchar(50)

BEGIN


BEGIN TRANSACTION

INSERT INTO CDs
(
CDTitle,
Band
)
Values
(
@strCDTitle,
@strBand
)

IF @@ROWCOUNT <> 1  
BEGIN
Select @strReturnValue = "Error"
END 

ELSE
BEGIN
EXECUTE @strReturnValue = sp_InsertSongs
@@IDENTITY, @strSong1,  ""
END

IF @strReturnValue = "Error"
BEGIN
ROLLBACK TRANSACTION
END
ELSE
BEGIN
COMMIT TRANSACTION
END
END


If the call to sp_InsertSongs returns an error code can I get the rollback
transaction statement to rollback the sp_InsertSongs stored procedure?  It
isn't working as displayed above.

Thanks!






Robyn Follen
Web Applications Developer
PreVision Marketing Inc. 
55 Old Bedford Road 
Lincoln, MA 01773


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: OT: dynamically resizing the browser window

2001-02-06 Thread Emmet McGovern

If you havent figured out how to do it yet, send me an email and i'll send
you some code.

Emmet McGovern
sytems blah bla..senio...blah
Bytesize Inc.

-Original Message-
From: Dick Applebaum [mailto:[EMAIL PROTECTED]]
Sent: Monday, February 05, 2001 10:10 PM
To: CF-Talk
Subject: Re: OT: dynamically resizing the browser window


not sure exactly what you want, but...

   If you serve a page full of thumbnails/links

   if you know the size of the blowups when you serve the page (create the
   thumbnails/links}

   yoy can serve thumbnail/links that pass the sixe required for the blowup

it is a simple matter to create a client-side JavaScript routine that 
creates a popup window of the correct size to contain the blowup

   Each thumbnail/link passes the required size of its blowup to the popup
   routine

   the popop routine opens the appropriate size window and retrieves the
blowup
   image.

HTH

Dick



At 11:16 PM + 2/5/01, Tristram Charnley wrote:
>I'm sure I've seen a way in Javascript to open an image
>in a browser window that sizes dynamically
>to the resolution of that image. I've got lots
>of thumbnails and I don't want to have to hard code
>the image size of the target file in a separate  each
>time.
>
>A JS solution would be preferable to CF in this case
>for portability. Can anyone help?
>
>Tristram Charnley
>-
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: UML information recommendations?

2001-02-06 Thread Ken Monroe

Try
http://www.fusebox.org/fuseml/

and/or get a book by Jim Conallen called "Building Web Applications with
UML."

Ken
- Original Message -
From: "Peter Theobald" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, February 06, 2001 2:35 PM
Subject: UML information recommendations?


> Can anyone recommend a good source of information for advanced programmers
who are new to UML?
> Especially if it relates to web development.
>
> --
-
> Peter Theobald, Chief Technology Officer
> LiquidStreaming http://www.liquidstreaming.com
> [EMAIL PROTECTED]
> Phone 1.212.545.1232 x204 Fax 1.212.545.0938
>
> To put this contact information into your Palm device, click here:
> http://www.coola.com/cgi-bin/addinfo.cgi?pid=15803&rid=972879910&type=A
>
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is there a way to run a server side executable through CF?

2001-02-06 Thread Paul Begovich

Is CFEXECUTE supported under CF 4.0 or only CF 4.5?

- Paul

> CFEXECUTE will do this, though you may want to use the NT AT Scheduler or
> SQL Server's task scheduler to do this instead.
> 
> ~Simon



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFFILE :: Multiple image uploads?

2001-02-06 Thread Russel Madere

Paul,

This very thing has ham-strung my development more than any other limitation
of HTML.  The simplest way to do this is to have the user zip the files like
Aaron suggests.

Another solution is to offer several upload boxes to the user.  On our site,
we will offer 5 by default.  This is controlled by a variable, so if the
users start asking for more, we can increase the number of files uploaded by
a single form submission.  We may also find a Java or JavaScript based
replacement to upload the files.

But the simplest answer is No, you can only upload a single file in each
box.  Even the "free" web site people like Geocities, etc. haven't found a
better solution.

Russel


  Russel Madere, Jr. Senior Web Developer
  ICQ: 5446158   http://www.TurboSquid.com

Some days you eat the bear; some days the bear eats you.



> -Original Message-
> From: Paul Ihrig [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, February 06, 2001 13:31
> To: CF-Talk
> Subject: CFFILE :: Multiple image uploads?
>
>
> ok.
> i can do the standard cffile thing.
> create as many file fileds in your form then on to cffile.
>
> but what can i do if i want a cleaner interface.
> say 1 file or 30?
> how can i alow the user to upload as many files as they want with
> out having
> a ton's of Browse/ File Fields?
>
> a cleaner solution must be available?
> maybe not.
>
> -paul
>
> Web Developer, NBBJ
> Work: [EMAIL PROTECTED]
>   614 241-3534
> fax:  614 485-5534
>
> Home: [EMAIL PROTECTED]
>   614 449-1681
>
> > icq:47658358
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



hal's wireframe

2001-02-06 Thread Jason Egan

I've just been looking at Hal's wireframe - this is for development correct?
This isn't intended for use in the actual application right?

je


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Dynamic Image Resize

2001-02-06 Thread JayB

At 12:09 PM 2/6/2001 -0600, you wrote:
>Either it was a flash movie that they had just set to 100% or you have 
>found a miracle script out there some where that adds image data on the 
>fly (something that is virtually impossible)
>
>My money is on the flash movie
>
>
>
> >Actually, the script I've seen did not degrade the images at all.


You -could- do it if you sized your images for the largest possible screen 
and then used the script to down size using height and width tags...you 
wouldn't get any degradation making things smaller only bigger...but of 
course the down side is that you're forcing everyone to download a large 
graphic...


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Question on Hosting

2001-02-06 Thread Robert Long

You might also consider http://www.copious-infosys.com .
Small operation, but I have had good luck with them.
Unlimited bandwidth, email messages and storage for $25/month.
http://www.copious-infosys.com/webhostingplan.cfm
Just my .02

-Original Message-
From: Alan H Koenig [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 11:14 AM
To: CF-Talk
Subject: RE: Question on Hosting


I have a site on virtualscape.com.  I am looking to move to another location
very quickly with this site.  Customer service passable, server uptime ok,
mail server uptime reprehensible.  Save yourself the trouble.
Just my experience.
Alan

-Original Message-
From: Adkins, Randy [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 3:58 AM
To: CF-Talk
Subject: Question on Hosting


As most every had a website on Shanje.com
however they are unreliable lately.

I am switching to a new hosting company.

Can anyone give me positive/negative
feedback on

AST WebNet:  http://www.atswebnet.com/

VirtualScape:  http://www.virtualscape.com

Thanks!
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



BETA 5

2001-02-06 Thread Charlie McCormack

ftp://ftp2.allaire.com/pub/beta/cfserver50b1.exe

Go get it :)

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Quick CFHTTP Question

2001-02-06 Thread Philip Arnold - ASP

> Hello all!  Currently I'm using CFHTTP to call a header
> externally.  However if the page that I'm calling returns a 404
> (or some other error) how can I determine this?  Or is everyone
> going to tell me to use CFX_HTTP?  Granted that this is an
> external clients server, I'm hoping I don't have to tell them to
> install CFX_HTTP.  Thanks!

The problem with this is that some sites return a HTML 404 error, and some
just send the 404 message

You could run CFHTTP with CFTry around it, but you're relying on an awful
lot of variables

CFX_HTTP is a lot more powerful, and will do most of what you want
instinctively, but if it's not your server, then the hosts might not want to
install it...

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Quick CFHTTP Question

2001-02-06 Thread Edward Smith

I believe 4.51+ has more ability to read headers of CFHTTP.. Lets see...

Ah, not sure what version this showed up in, but the help for CFHTTP in
studio says:

CFHTTP.ResponseHeader(http_hd_key) - so this looks like a struct of the
headers
CFHTTP.Header - the raw header text
CFHTTP.StatusCode - the response code by itself.

Good luck!

Gregory Harris wrote:
> 
> Hello all!  Currently I'm using CFHTTP to call a header externally.  However if the 
>page that I'm calling returns a 404 (or some other error) how can I determine this?  
>Or is everyone going to tell me to use CFX_HTTP?  Granted that this is an external 
>clients server, I'm hoping I don't have to tell them to install CFX_HTTP.  Thanks!
> 
> Gregory Harris
> Web Developer
> 
> The Stirling Bridge Group, LLC
> *We Engineer Internet Business Solutions*
> TEL: (949) 707-1534  FAX: (949) 707-1535
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFFILE :: Multiple image uploads?

2001-02-06 Thread Paul Ihrig

 lol.
thats exactly what we talked about on the cf-extensions list for Ultra Dev.
using Ben's CFX_zip tag.

it's a small world af

any other ideas?

thanks



-paul

Web Developer, NBBJ
Work:   [EMAIL PROTECTED]
614 241-3534
fax:614 485-5534

Home:   [EMAIL PROTECTED]
614 449-1681

icq:47658358 

> -Original Message-
> From: Aaron Johnson [SMTP:[EMAIL PROTECTED]]
> Sent: Tuesday, February 06, 2001 2:59 PM
> To:   [EMAIL PROTECTED]
> Cc:   [EMAIL PROTECTED]
> Subject:  RE: CFFILE :: Multiple image uploads?
> 
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> Hi Paul,
> 
> As far as I know, it's only possible to upload one file per
> browse/File field... however, you could have the user zip up x number
> of files, upload the zip file and then unzip the .zip serverside,
> creating x number of pictures... ?  
> 
> Aaron Johnson, MCSE, MCP+I
> Allaire Certified ColdFusion Developer
> MINDSEYE, Inc.
> 617.350.0339
> 617.350.8884
> 66172567
> [EMAIL PROTECTED]
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Quick CFHTTP Question

2001-02-06 Thread Dick Applebaum

Gregory

Just parse CFHTTP.FileContent for 404...

HTH

Dick


At 11:45 AM -0800 2/6/01, Gregory Harris wrote:
>Hello all!  Currently I'm using CFHTTP to call a header externally. 
>However if the page that I'm calling returns a 404 (or some other 
>error) how can I determine this?  Or is everyone going to tell me to 
>use CFX_HTTP?  Granted that this is an external clients server, I'm 
>hoping I don't have to tell them to install CFX_HTTP.  Thanks!   
>
>Gregory Harris
>Web Developer

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is there a way to run a server side executable through CF?

2001-02-06 Thread Steve Bernard

Yes, CFEXECUTE.

Steve

-Original Message-
From: Paul Begovich [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 3:35 PM
To: CF-Talk
Subject: Is there a way to run a server side executable through CF?


We have created several scripts written for NT Server that perform various
server side tasks.  What we want to do is execute these scripts using the CF
scheduler.  Is there a way to run a server side executable through CF?

- Paul


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is there a way to run a server side executable through CF?

2001-02-06 Thread J.J. Merrick

Go download the CFX_ShellExec tag at the Allaire site. It allows you to execute 
serverside EXE's and to pass parameters to it. Just create a CFM file with that code 
in it and then schedule the CFM file through Scheduler.

J.J. Merrick
Sage Global Technologies
Nashville, TN

-- Original Message --
From: "Paul Begovich" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
Date: Tue, 06 Feb 2001 14:35:17 -0600

>We have created several scripts written for NT Server that perform various
>server side tasks.  What we want to do is execute these scripts using the CF
>scheduler.  Is there a way to run a server side executable through CF?
>
>- Paul
>
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Distinguishing what type of database

2001-02-06 Thread Robert Long

Is it possible for a template to tell what type of database is
is hitting. ie, I want to write a template that will be able to 
tell if it is hitting an Oracle or SQL database and know what
query to use.

Thanks in advance.

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF Backup

2001-02-06 Thread Raley, Scott M (MIL)

Is there a quick way I can export my IIS and CF settings so that I can
import them into another server?

TIA

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFFILE :: Multiple image uploads?

2001-02-06 Thread Philip Arnold - ASP

> i can do the standard cffile thing.
> create as many file fileds in your form then on to cffile.
>
> but what can i do if i want a cleaner interface.
> say 1 file or 30?
> how can i alow the user to upload as many files as they want with
> out having
> a ton's of Browse/ File Fields?
>
> a cleaner solution must be available?
> maybe not.

You're running into a HTML limitation here, unless you can do something with
Java (I'm sure I've seen something like this somewhere), you'll have to
either cycle the page (one image at a time) or have loads of upload options

Philip Arnold
Director
Certified ColdFusion Developer
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is there a way to run a server side executable through CF?

2001-02-06 Thread Edward Smith

CFEXECUTE for newer versions of CF, 
and I think there's a couple of CFX tags in the taggallery for earlier
platforms.

Paul Begovich wrote:
> 
> We have created several scripts written for NT Server that perform various
> server side tasks.  What we want to do is execute these scripts using the CF
> scheduler.  Is there a way to run a server side executable through CF?
> 
> - Paul
> 
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is there a way to run a server side executable through CF?

2001-02-06 Thread Lon Lentz


  Are these scripts command line executables? You could use the
cfx_consolecommand custom tag.

Lon Lentz
Applications Developer & CyberEntomologist - Alvion Technologies
DataWarehousing and List Sales - Market Your Lists on the Net!
[EMAIL PROTECTED]
941-574-8600 Ext. 210

-Original Message-
From: Paul Begovich [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 3:35 PM
To: CF-Talk
Subject: Is there a way to run a server side executable through CF?


We have created several scripts written for NT Server that perform various
server side tasks.  What we want to do is execute these scripts using the CF
scheduler.  Is there a way to run a server side executable through CF?

- Paul
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: UML information recommendations?

2001-02-06 Thread Simon Horwith

I think the WROX Press UML Book is excellent.

~Simon

> Simon Horwith
> Allaire Certified ColdFusion Instructor
> Certified ColdFusion Developer
> Fig Leaf Software
> 1400 16th St NW, # 220
> Washington DC 20036
> 202.797.6570 (direct line)
> www.figleaf.com
> 


-Original Message-
From: Peter Theobald [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 2:35 PM
To: CF-Talk
Subject: UML information recommendations?


Can anyone recommend a good source of information for advanced programmers
who are new to UML?
Especially if it relates to web development.

---
Peter Theobald, Chief Technology Officer
LiquidStreaming http://www.liquidstreaming.com
[EMAIL PROTECTED]
Phone 1.212.545.1232 x204 Fax 1.212.545.0938

To put this contact information into your Palm device, click here:
http://www.coola.com/cgi-bin/addinfo.cgi?pid=15803&rid=972879910&type=A
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Quick CFHTTP Question

2001-02-06 Thread Aaron Johnson

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Greg,

I'm not to sure what you're trying to do but I'll take a wack at it.
It sounds like you're getting an error when you do a CFHTTP and the
server in question returns a 404.  Can you just check the contents of
the cfhttp.filecontent variable to see if it contains 404 or some
message like that?  If you need access to the raw headers, I'd
recommend,  or .

HTH

Aaron Johnson, MCSE, MCP+I
Allaire Certified ColdFusion Developer
MINDSEYE, Inc.
617.350.0339
617.350.8884
66172567
[EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is there a way to run a server side executable through CF?

2001-02-06 Thread Evan Lavidor

Take a look at CFEXECUTE.  It does just this.

Evan

> -Original Message-
> From: Paul Begovich [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, February 06, 2001 3:35 PM
> To: CF-Talk
> Subject: Is there a way to run a server side executable through CF?
>
>
> We have created several scripts written for NT Server that perform various
> server side tasks.  What we want to do is execute these scripts
> using the CF
> scheduler.  Is there a way to run a server side executable through CF?
>
> - Paul
>
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Detecting a mac

2001-02-06 Thread TDesimone


this is as clever as I've needed:







"Lon Lentz" <[EMAIL PROTECTED]> on 02/06/2001 02:19:56 PM

Please respond to [EMAIL PROTECTED]

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

Subject:  RE: Detecting a mac



  I use:  

   I'm interested to see if someone has anything clever.


Lon Lentz
Applications Developer & CyberEntomologist - Alvion Technologies
DataWarehousing and List Sales - Market Your Lists on the Net!
[EMAIL PROTECTED]
941-574-8600 Ext. 210

-Original Message-
From: Chad Gray [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 1:13 PM
To: CF-Talk
Subject: OT: Detecting a mac


Anyone know of a way to detect a Mac with IE 5 when they hit your web page?

Thanks,
Chad
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is there a way to run a server side executable through CF?

2001-02-06 Thread Chris Alvarado

you could use  to execute a server-side executable.


-chris.alvarado
[developer] - VerticalNet


-Original Message-
From: Paul Begovich [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 2:35 PM
To: CF-Talk
Subject: Is there a way to run a server side executable through CF?


We have created several scripts written for NT Server that perform various
server side tasks.  What we want to do is execute these scripts using the CF
scheduler.  Is there a way to run a server side executable through CF?

- Paul
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Is there a way to run a server side executable through CF?

2001-02-06 Thread Simon Horwith

CFEXECUTE will do this, though you may want to use the NT AT Scheduler or
SQL Server's task scheduler to do this instead.

~Simon

> Simon Horwith
> Allaire Certified ColdFusion Instructor
> Certified ColdFusion Developer
> Fig Leaf Software
> 1400 16th St NW, # 220
> Washington DC 20036
> 202.797.6570 (direct line)
> www.figleaf.com
> 


-Original Message-
From: Paul Begovich [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, February 06, 2001 3:35 PM
To: CF-Talk
Subject: Is there a way to run a server side executable through CF?


We have created several scripts written for NT Server that perform various
server side tasks.  What we want to do is execute these scripts using the CF
scheduler.  Is there a way to run a server side executable through CF?

- Paul
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFFILE :: Multiple image uploads?

2001-02-06 Thread Aaron Johnson

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Paul,

As far as I know, it's only possible to upload one file per
browse/File field... however, you could have the user zip up x number
of files, upload the zip file and then unzip the .zip serverside,
creating x number of pictures... ?  

Aaron Johnson, MCSE, MCP+I
Allaire Certified ColdFusion Developer
MINDSEYE, Inc.
617.350.0339
617.350.8884
66172567
[EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



WebAgain

2001-02-06 Thread Hays, Duncan

Our seat management co. is about to install WebAgain on our production
servers. I found a couple messages in the archive from people using it. But
are there any potential problems with CF or Spectra that anyone has run in
to?

Duncan Hays
Peace Corps


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Quick CFHTTP Question

2001-02-06 Thread Gregory Harris

Hello all!  Currently I'm using CFHTTP to call a header externally.  However if the 
page that I'm calling returns a 404 (or some other error) how can I determine this?  
Or is everyone going to tell me to use CFX_HTTP?  Granted that this is an external 
clients server, I'm hoping I don't have to tell them to install CFX_HTTP.  Thanks!

Gregory Harris
Web Developer

The Stirling Bridge Group, LLC
*We Engineer Internet Business Solutions*
TEL: (949) 707-1534  FAX: (949) 707-1535




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



UML information recommendations?

2001-02-06 Thread Peter Theobald

Can anyone recommend a good source of information for advanced programmers who are new 
to UML?
Especially if it relates to web development.

---
Peter Theobald, Chief Technology Officer
LiquidStreaming http://www.liquidstreaming.com
[EMAIL PROTECTED]
Phone 1.212.545.1232 x204 Fax 1.212.545.0938

To put this contact information into your Palm device, click here:
http://www.coola.com/cgi-bin/addinfo.cgi?pid=15803&rid=972879910&type=A



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFFILE :: Multiple image uploads?

2001-02-06 Thread Paul Ihrig

ok.
i can do the standard cffile thing.
create as many file fileds in your form then on to cffile.

but what can i do if i want a cleaner interface.
say 1 file or 30?
how can i alow the user to upload as many files as they want with out having
a ton's of Browse/ File Fields?

a cleaner solution must be available?
maybe not.

-paul

Web Developer, NBBJ
Work:   [EMAIL PROTECTED]
614 241-3534
fax:614 485-5534

Home:   [EMAIL PROTECTED]
614 449-1681

> icq:  47658358

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Scheduled Event (was: multiple queries tie up web server)

2001-02-06 Thread Ricq Pattay

To avoid running those pesky 7500 queries, I'm investigating creating a
static page that refreshes once a day. My user seems sorta ok with this
approach. This is my first attempt with scheduling a CF event.

So why when I set up a scheduled event in the CF Adminstrator do I always
get a "connection failure" notice? The URL is correct, no username or
password is required, request timeout is set well above what the page
usually takes, no proxy, publish is checked, publish path & filename are
valid, resolve URL checked. Actually I get a connection failure even when
trying to run a simple page with ONE query and passing no parameters to it,
so this sounds like a configuration issue...(?).

The scheduler log looks ok:

"Information","TID=3402","02/06/01","13:05:52","Scheduled action
vcross_test, template
http://bozo.umn.edu/schedule.cfm?year=2001-2002&rotation=2&type=rotation
submission initiated."
"Information","TID=3402","02/06/01","13:08:05","Scheduled action
vcross_test, template
http://bozo.umn.edu/schedule.cfm?year=2001-2002&rotation=2&type=rotation
submitted successfully."

but the resulting .htm file consists of the one line "Connection failure."

If I select "Run" from the CF Admin scheduling page, the scheduled page
always times out, even the simple test page with a single query that
normally takes 1 second to run if loaded directly.




Ricq Pattay ~ [EMAIL PROTECTED]
College of Veterinary Medicine
University of Minnesota - Twin Cities


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



  1   2   3   >