404 page in application template

2002-07-30 Thread Hugo Ahlenius

Hi all,

We have several sites and applications on one server, and it would be nice
if each could have separate 404 pages. Is it possible to do this in the
application template -- or does it need to be done in Apache?




-
Hugo Ahlenius   E-Mail: [EMAIL PROTECTED]
Project Officer Phone:  +46 8 7410451
UNEP GRID-Arendal   Fax:   +46 733 403285
Stockholm OfficeMobile:+46 733 467111
WWW:  http://www.grida.no
- 

###

This message has been scanned by F-Secure Anti-Virus for Microsoft Exchange.
For more information, connect to http://www.F-Secure.com/
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Macromedia, Adobe settle patent squabble

2002-07-30 Thread Jochem van Dieten

quote
The terms of the settlement are confidential, the companies said in a 
joint statement released after the market closed yesterday. Customers 
with products from either Adobe or Macromedia will not be affected.
/quote http://www.theregister.co.uk/content/4/26438.html

Jochem

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Macromedia, Adobe settle patent squabble

2002-07-30 Thread Ken Wilson

Customers with products from either Adobe or Macromedia
will not be affected.


Somehow I think that means we're permanently stuck with a neutered
Homesite+.

Ken

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Professional does not have web accessible log files

2002-07-30 Thread Owen Leonard

 They dropped it in Pro because apparently it was never
 supposed to be there.

Whoa... Let me get this straight--They've removed the whole
Administrator  Tools  Log Files interface altogether?  And the
explanation is, 'It was never supposed to be there?'  That sounds like a
big 'Screw you' to me.

  -- Owen

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Macromedia, Adobe settle patent squabble

2002-07-30 Thread Craig Thomas

Somehow I think that means we're permanently stuck with a neutered
Homesite+.


I have heard that Homesite + is not as feature rich as CF Studio 5 was/is,
but I am curious as to what is missing from Homesite -, er, +?  (thinking
about buying DWMX).

-Craig

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX strange syntax required to output a query [crosspost]

2002-07-30 Thread Dick Applebaum

Just to close this thread -- the OpenBase people modified their jdbc 
driver to return just columnName (instead of tableName.columnName) in 
resopnse to a ResultSetMetaData.getColumnLabel() Java method invocation).

So, Now OpenBase is a viable db option for CFMX on Windows, Linux, 
Solaris, Windows 2000 and Mac OS X.

I was impressed with the quick response to the problem, 
professionalism  quick turnaround with a fix.

Dick


On Friday, July 26, 2002, at 09:28 AM, Dick Applebaum wrote:

I am replying to my own original post so I can add a few comments.

1.  The OpenBase people are looking into unusual results.

2.  CFMX docs for cfquery include the following, but a search on dot
notation did not yield anything enlightening.

 New in ColdFusion MX: ColdFusion supports dot notation within a
record set name.
 ColdFusion interprets such a name as a structure. For more
information, see Developing
 ColdFusion MX Applications with CFML.

3. In a way, returning the tableName.columnName format is a good
thing -- it solves one of the two major gripes
  I have always had with cfquery.

1. solved (at least for OpenBase dbs) queryName.ColumnList gives
the fully-qualified name of each column --
   eliminating the problem when columns in different tables
have the same name

2. still unsolved is the fact that the entries in
queryName.ColumnList are not returned in the same order as the columns
exist
  in the db -- a problem if you are writing a general-purpose
utility to browse a db, using SELECT * FROM tableName ---
 it would be natural to see the columns in the order they were
defined.

Note: you get both of these with cfobject, why not with cfquery?

Dick


On Wednesday, July 24, 2002, at 04:54 PM, Dick Applebaum wrote:

I am finally getting around to playing with CFMX and various DBs --
something I should have done during the beta.

The example problems furnished with CFMX  Linux and PointBase db all run
as expected, as did MySQL and PostgreSQL.

Actually it is running on the Mac OS X port of CFMX Linux

Today I installed OpenBase  tried to run a simple program.  It failed.

By experimentation, I found that the results were being returned as a
recordset structure rather than as a query.

This means that you require a different syntax to  refer to the query
fields in a

cfoutput query=queryName

tag

Instead of #ColumnName#  you must use #queryName.TableName.ColumnName#

So the simple query


cfquery name=getPhone datasource=Company
  SELECTCompany, mainPhone
  FROMCompany
  ORDER BY  Company
/cfquery

table border=1 cellspacing=0 cellpadding=3

requires the following output notation

cfoutput query=getPhone
  tr
td#getPhone.Company.company#/td
td#getPhone.Company.mainPhone#/td
  /tr
/cfoutput

/table

instead of the simpler (preferred)

cfoutput query=getPhone
  tr
td#company#/td
td#mainPhone#/td
  /tr
/cfoutput

/table

the getPhone.Company. qualification appears redundant, but the
template won't run without it

What's going on here and where is it documented?

TIA Dick



__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX compiled deployment?

2002-07-30 Thread Joe Eugene

Curious.. what/who is BlueDragon?

Joe

- Original Message -
From: Jeffry Houser [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, July 29, 2002 11:31 PM
Subject: Re: CFMX compiled deployment?


   No,

   Although BlueDragon will ( supposedly ) offer that feature.  You'll be
 able to deploy on any J2EE Server.
   I have not delved into this specific feature, though.  :)

 At 11:25 PM 7/29/2002 -0700, you wrote:
 Can you deploy CFML pages as compiled binaries without revealing your
CFML
 source code?
 
 
 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFX_CyberCash

2002-07-30 Thread Swanson, Dottie

You might look at http://www.cfxoncrcybercash.com/ we've used the tag on Solaris (the 
tag works on NT and Linux too).  

I haven't tried it on CFMX yet.

Dottie Swanson
gomembers inc.
11720 Sunrise Valley Drive
Reston, Virginia 20191-1413
http://www.gomembers.com
Phone: (703) 620-9600 x2097
Fax: (703) 620-4858


Date: Mon, 29 Jul 2002 12:17:55 -0600
From: Steve Johnson [EMAIL PROTECTED]
Subject: CFX_CyberCash
Message-ID: p05111aa4b96b32a68e86@[10.0.1.102]

has anyone successfully used CFX_CyberCash with CFMX Pro on Linux?  i 
just got off the phone with tech support at Verisign and their basic 
conclusion at this point is that it does not work and it may never 
work.  we were able to get it to the point where it will actually 
charge a credit card and log all the information into a debug file, 
but it never returns any results back to the calling .cfm page so you 
can let the user know if it was successful or not.  (and users tend 
to want to know that.  ;-) )

if nobody has this working, then are there any alternatives?  i'd 
prefer not to migrate to PayFlowPro or another service at this point, 
especially since they mentioned their Java PFP tag doesn't work on 
CFMX either.

steve

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX compiled deployment?

2002-07-30 Thread todd

http://www.newatlanta.com/products/bluedragon/index.jsp

On Tue, 30 Jul 2002, Joe Eugene wrote:

 Curious.. what/who is BlueDragon?
 
 Joe
 
 - Original Message -
 From: Jeffry Houser [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Monday, July 29, 2002 11:31 PM
 Subject: Re: CFMX compiled deployment?
 
 
No,
 
Although BlueDragon will ( supposedly ) offer that feature.  You'll be
  able to deploy on any J2EE Server.
I have not delved into this specific feature, though.  :)
 
  At 11:25 PM 7/29/2002 -0700, you wrote:
  Can you deploy CFML pages as compiled binaries without revealing your
 CFML
  source code?
  
  
  
 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Quick MCSE Certification options

2002-07-30 Thread jremus-lists

Sorry, slow response here.  Speaking as someone who has these cert's,
depends on whether you have much working experience with 2k server and
active directory.  If you do, get the Exam Crams from Coriolis and the
Transcenders and knock them down.  I would say if you really stretched you
could do those once a week or two.  But if you need it quicker than that,
boot camp is the only way to go.

Josh

-Original Message-
From: John Paul Ashenfelter [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 29, 2002 10:22 PM
To: CF-Talk
Subject: OT: Quick MCSE Certification options


 Folks,

 I'm the leading contractor candidate for a great (personal and
professional) overseas gig , but the
 foreign government requires a MCSE for technical workers in this position,
 even though that has nothing to do with the job at hand. So I need to
 certify. Fast.

 (Just goes to show -- don't put off those #$%*#$^% certifications. And
that
 despite this being a CF job and being CF Adv Certified, only the M$ cert
 matters.)

 So my basic question is, do I try to study on my own to pass the exams or
do
 I give in and pony up the money for a bootcamp-style training program?
 Recommendations on materials or specific bootcamps for MCSE?

 Right now, I'm leaning towards one of the bootcamps since timeframe is end
of
 August/early Sept but any advice is appreciated.
 --
 Regards,

 John Paul Ashenfelter
 CTO/TransitionPoint
 [EMAIL PROTECTED]


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



[OT] Problems with CFMX?

2002-07-30 Thread Jesse Noller

Hey All-

I just wanted to take a moment and discuss something which has been bothering 
me. There are a lot of good discussions on this list about CFMX; however, there are a 
lot of CFMX suck because of X threads.

I wanted to take a moment to mention something. Generally, there are a lot of 
internal people here at Macromedia on these lists, but we don't have the time or the 
resources to address every single issue with the attention you the user deserve.

This raises the point that we, as employees, may respond to given user issues, 
but really, in order to get things fixed (if in fact it *is* a bug) a bug must be 
entered into our bug tracking system, and then escalated.

Getting a bug into the system can basically go a few ways:

1: A subscriber to the list internally figures it's a very bad bug, and 
submits it his or herself. 

2: A user calls technical support and a bug is found, and submitted into the 
bug system, and then escalated.

3: A user goes to:

http://www.macromedia.com/support/email/wishform/?6213=3

If that URL does not work: 

http://www.macromedia.com/support/coldfusion/

(Go to the bottom, under feedback, and click submit feature request for 
coldfusion)


Those are the only three real ways of getting those issues you think are 
severe bugs addressed. To be honest, the best way of getting it addressed is to do 
number three. We need it to be entered into our system, with a fully reproducible test 
case.

This means we need your operating system specs and revision, service packs and 
patches. We need your web server version; we need the code, or at least access to the 
code you are running. 

This way, we can go through, and find serious bugs. I know, for each one of 
you who finds any bug generally, to you, that is one show stopper of a bug, but bugs 
like say, broken COM support cannot be adequately addressed unless submitted directly 
into out bug database.

The mailing lists generate a great deal of traffic, this is a good thing, but 
those of us who watch the lists internally miss things. Debbie, Sean and Vernon, as 
well as myself can only spend a finite amount of time each day reading the couple 
hundred emails that cross the lists, the few hundred forums postings, the newsgroups, 
etc.

The quickest, easiest and most direct approach is to submit the bug directly 
to the database. When you find what you think is a bug, please, please, please submit 
it.

This applies to things like The Apache module is stupid and other such 
items. Want the Apache module source to be shipped? Submit a request into that DB in 
either an enhancement request, or in a bug report and explain why.

This will save a lot of us a lot of trouble. Yes, fellow Macromedians 
monitor the list, but we can't catch every actual bug, and filtering the lists is 
painful at best. 

Ok, I'm done now. Back to work. 

Jesse Noller
[EMAIL PROTECTED]
Macromedia Server Development
Unix/Linux special guy 


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cf based blogs

2002-07-30 Thread jon roig

It's a weblog -- you know, they're all the rage these days!

Here's mine, for example: http://jonroig.com

Part diary... part links list... I use mine to track weird news around the
Delaware Valley.

I use PostNuke/PHP, but that's just me. CF, with it's super-easy pulling of
data in and out of databases, is actually a really good language for this.

For what it's worth, metafilter.com runs in cf -- it's a variation on the
blog theme, I guess, but it's popular.

-- jon



-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 29, 2002 8:59 PM
To: CF-Talk
Subject: RE: cf based blogs


Sorry for the ignorance, but what is a blog?

Andy

-Original Message-
From: Paul Hastings [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 29, 2002 7:43 PM
To: CF-Talk
Subject: Re: cf based blogs


 No. But I could write one in about ten minutes if there is demand.

i guess there isi have no idea whats involved in one. i guess  i should
look at one of the blogs.



__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



.NET

2002-07-30 Thread Allen Hall

Has anyone been testing CF with the MS .Net servers?  We've been testing the
RC1 server,
and can't get CF 5.0 to recognize IIS.  Also, CFMX will ony install to the
:8500 port. It
stops at the default web folder recognition when loaded as a stand alone,
although it does
find IIS.

We know .Net servers aren't going to be out for a while, but CF 5 and MX
both seem to have
problems with it, and we're hesitant to spend much time on it when W2K
Server runs so well.


Thanks,
Al


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cf based blogs

2002-07-30 Thread Rich Wild

 anybody know of any cf powered blogs?

self pimp
http://www.funjunkie.co.uk
/self pimp

entirely CF4.5 (old server that can't upgrade) publishes 3 flavours of XML
feeds, pings news aggregators using XML-RPC etc etc etc...

I've always wondered why the MM engineers don't have CF powered blogs and
use the likes of Radio Userland instead (apart from the fact that there
aren't any CF powered off-the-shelf blogging tools that can be setup in 5
mins flat)


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
 Sent: 29 July 2002 23:16
 To: CF-Talk
 Subject: cf based blogs
 
 
 anybody know of any cf powered blogs?
 
 
 ---
 Outgoing mail is certified Virus Free.
 Checked by AVG anti-virus system (http://www.grisoft.com).
 Version: 6.0.380 / Virus Database: 213 - Release Date: 24/7/2545
 
 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX Taking all CPU Resources?

2002-07-30 Thread Sean A Corfield

On Monday, July 29, 2002, at 09:11 , Sean A Corfield wrote:
 On Monday, July 29, 2002, at 07:31 , Joe Eugene wrote:
  MM's performance brief is probably based on optimized CFMX code
  and maybe optimized CF.50 code.
 Nope. As far as I know it's the exact same code run on both CF5 and CFMX.
 I will ask the QA lab to confirm this.

I have confirmed with the CF QA team that the tests were run on identical 
code. It was not optimized for a specific version of CF. Satisfied?

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

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: cf based blogs

2002-07-30 Thread Sean A Corfield

On Tuesday, July 30, 2002, at 06:06 , Rich Wild wrote:
 I've always wondered why the MM engineers don't have CF powered blogs and
 use the likes of Radio Userland instead (apart from the fact that there
 aren't any CF powered off-the-shelf blogging tools that can be setup in 5
 mins flat)

Of the various MM blogs, only two of them are specific to CF so you might 
equally get the argument that Oh, the Flash MX blog should have a Flash 
UI or Dreamweaver supports ASP and PHP - why is the blog hosted on CF?.
.

Also, they are hosted externally because - whilst they are indeed by 
Macromedians - they are not Official Macromedia Merchandise(tm) so we 
can pretty much say what we like in the blogs (rather than running through 
the internal editorial process to get stuff published on the Macromedia 
web site).

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

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

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cf based blogs

2002-07-30 Thread Rich Wild

 equally get the argument that Oh, the Flash MX blog should 
 have a Flash 
 UI

well, it should! ;) 

its not too hard these days (as you know): http://anarchitect.net/v2/

I was more interested though why most of you chose radio when being MM
engineers you could easily roll an extensible custom job in a few hours.

Was it just a case of 'lets get it up there nice and quick'?

 -Original Message-
 From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
 Sent: 30 July 2002 14:31
 To: CF-Talk
 Subject: Re: cf based blogs
 
 
 On Tuesday, July 30, 2002, at 06:06 , Rich Wild wrote:
  I've always wondered why the MM engineers don't have CF 
 powered blogs and
  use the likes of Radio Userland instead (apart from the 
 fact that there
  aren't any CF powered off-the-shelf blogging tools that can 
 be setup in 5
  mins flat)
 
 Of the various MM blogs, only two of them are specific to CF 
 so you might 
 equally get the argument that Oh, the Flash MX blog should 
 have a Flash 
 UI or Dreamweaver supports ASP and PHP - why is the blog 
 hosted on CF?.
 

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: cf based blogs

2002-07-30 Thread Sean A Corfield

On Tuesday, July 30, 2002, at 06:25 , Rich Wild wrote:
 I was more interested though why most of you chose radio when being MM
 engineers you could easily roll an extensible custom job in a few hours.

And where would we host it? Most of us do not have CF-powered ISPs...

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

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX compiled deployment?

2002-07-30 Thread Jeffry Houser

  It is a third party CFML interpreter.

  http://www.newatlanta.com/products/bluedragon/index.jsp

  Seems to work fairly well, but is still in Beta and only offers CF5 
compatibility right now.


At 08:11 AM 7/30/2002 -0400, you wrote:
Curious.. what/who is BlueDragon?

Joe

- Original Message -
From: Jeffry Houser [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, July 29, 2002 11:31 PM
Subject: Re: CFMX compiled deployment?


No,
 
Although BlueDragon will ( supposedly ) offer that feature.  You'll be
  able to deploy on any J2EE Server.
I have not delved into this specific feature, though.  :)
 
  At 11:25 PM 7/29/2002 -0700, you wrote:
  Can you deploy CFML pages as compiled binaries without revealing your
CFML
  source code?
  
  
 

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFusion_VerifyMail()

2002-07-30 Thread Dan O'Keefe

I saw this function in an earlier thread, and found this info on
FusionCube's site. Has anyone ever used this?

---
Verifying SMTP Server Accessibility
Want to check that an SMTP server is accessible before using it to send
mail? Use the undocumented CFusion_VerifyMail() function which takes three
parameters - the server to be checked (IP address or DNS name), the port,
and a timeout interval. CFusion_VerifyMail() returns a string that may be
inspected - if it is empty then the verification was successful, otherwise
it will contain an error message.

Dan

-
Dan O'Keefe
TriPoint Technologies
954.501.3115


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cf based blogs

2002-07-30 Thread Rich Wild

That'll be it then.

I was just curious that's all, you've put my curiosity to bed. :)

 -Original Message-
 From: Sean A Corfield [mailto:[EMAIL PROTECTED]]
 Sent: 30 July 2002 14:50
 To: CF-Talk
 Subject: Re: cf based blogs
 
 
 On Tuesday, July 30, 2002, at 06:25 , Rich Wild wrote:
  I was more interested though why most of you chose radio 
 when being MM
  engineers you could easily roll an extensible custom job in 
 a few hours.
 
 And where would we host it? Most of us do not have CF-powered ISPs...
 
 If you're not annoying somebody, you're not really alive.
 -- Margaret Atwood
 
 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFusion_VerifyMail()

2002-07-30 Thread Jochem van Dieten

Dan O'Keefe wrote:
 I saw this function in an earlier thread, and found this info on
 FusionCube's site. Has anyone ever used this?

Used it a few times (don't remember the arguments, if any). But I am not 
sure if it is a good idea to incorporate it in code except for 
debugging, since this works quite different in CF MX:

cflock name=serviceFactory type=exclusive timeout=10
cfobject action=create type=java 
class=coldfusion.server.serviceFactory name=factory/
cfoutput#factory.mailSpoolService.verifyServer()#/cfoutput
/cflock

Jochem

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX Taking all CPU Resources?

2002-07-30 Thread Joe Eugene

Sean,
Do you know of any internal WDDX implementation differences between
CFMX and CF5.0 .. CFMX Docs say
1.New in ColdFusion MX: ColdFusion preserves the case of column names in
JavaScript. (Earlier releases converted query column names to
lowercase.) (Does this mean JavaScript type casing?)
2.New in ColdFusion MX: This tag supports several encoding formats. The
default encoding format is UTF-8. The tag interoperates with Unicode.

What does #1 mean?
If WDDX data is Stored in a DB and output using custom tags.. is
there any internal CFMX
implementation that would degrade performance compared to CF5.0?

Thanks
Joe


- Original Message -
From: Sean A Corfield [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 9:26 AM
Subject: Re: CFMX Taking all CPU Resources?


 On Monday, July 29, 2002, at 09:11 , Sean A Corfield wrote:
  On Monday, July 29, 2002, at 07:31 , Joe Eugene wrote:
  MM's performance brief is probably based on optimized CFMX code
  and maybe optimized CF.50 code.
  Nope. As far as I know it's the exact same code run on both CF5 and
CFMX.
  I will ask the QA lab to confirm this.

 I have confirmed with the CF QA team that the tests were run on identical
 code. It was not optimized for a specific version of CF. Satisfied?

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

 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFusion_VerifyMail()

2002-07-30 Thread Pete Ruckelshaus

I just played with it a bit.  The problem is, you need to know what the
exact name for the mail server is; i.e., you can't just peek at port 25 on
www.mydomain.com, whose mail server might be mail.mydomain.com, and expect a
positive response.  Sure, you could guess the name of the mail server
address for a given domain easily enough by trying mail.mydomain.com,
pop.mydaomian.com, etc., but if the mail server admin has used a
nonstandard (and probably more secure) name for his mail server, you will
not be able to successfully verify the connection.

If you know the mail server address, though, it should work fine.

Pete


- Original Message -
From: Dan O'Keefe [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 9:58 AM
Subject: CFusion_VerifyMail()


 I saw this function in an earlier thread, and found this info on
 FusionCube's site. Has anyone ever used this?

 ---
 Verifying SMTP Server Accessibility
 Want to check that an SMTP server is accessible before using it to send
 mail? Use the undocumented CFusion_VerifyMail() function which takes three
 parameters - the server to be checked (IP address or DNS name), the port,
 and a timeout interval. CFusion_VerifyMail() returns a string that may be
 inspected - if it is empty then the verification was successful, otherwise
 it will contain an error message.

 Dan

 -
 Dan O'Keefe
 TriPoint Technologies
 954.501.3115


 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFusion_VerifyMail()

2002-07-30 Thread mark brinkworth

You could query DNS records for the name of the mailserver as well.

I just played with it a bit.  The problem is, you need to know what the
exact name for the mail server is; i.e., you can't just peek at port 25 on
www.mydomain.com, whose mail server might be mail.mydomain.com, and expect 
a
positive response.  Sure, you could guess the name of the mail server
address for a given domain easily enough by trying mail.mydomain.com,
pop.mydaomian.com, etc., but if the mail server admin has used a
nonstandard (and probably more secure) name for his mail server, you will
not be able to successfully verify the connection.

If you know the mail server address, though, it should work fine.

Pete


- Original Message -
From: Dan O'Keefe [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 9:58 AM
Subject: CFusion_VerifyMail()


  I saw this function in an earlier thread, and found this info on
  FusionCube's site. Has anyone ever used this?
 
  ---
  Verifying SMTP Server Accessibility
  Want to check that an SMTP server is accessible before using it to send
  mail? Use the undocumented CFusion_VerifyMail() function which takes 
three
  parameters - the server to be checked (IP address or DNS name), the 
port,
  and a timeout interval. CFusion_VerifyMail() returns a string that may 
be
  inspected - if it is empty then the verification was successful, 
otherwise
  it will contain an error message.
 
  Dan
 
  -
  Dan O'Keefe
  TriPoint Technologies
  954.501.3115
 
 
 

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



SSL on form submission

2002-07-30 Thread Chad Gray

Im wondering if when a form is submitted at what point do you request
SSL?

Do you want the form to be covered under SSL as the user is filling it
out? https://www/form.cfm

Or do you leave the form http://www/form.cfm and use
form action=https://www/action.cfm; method=POST enough to encrypt
the data being passed to the action page?

Just curious




__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SSL on form submission

2002-07-30 Thread Joel Firestone

I always do it for the form. The submission would then be protected.

HTH

- Original Message -
From: Chad Gray [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 10:55 AM
Subject: SSL on form submission


 Im wondering if when a form is submitted at what point do you request
 SSL?

 Do you want the form to be covered under SSL as the user is filling it
 out? https://www/form.cfm

 Or do you leave the form http://www/form.cfm and use
 form action=https://www/action.cfm; method=POST enough to encrypt
 the data being passed to the action page?

 Just curious




 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX Taking all CPU Resources?

2002-07-30 Thread Sean A Corfield

On Tuesday, July 30, 2002, at 07:26 , Joe Eugene wrote:
 Do you know of any internal WDDX implementation differences 
 between
 CFMX and CF5.0 .. CFMX

Er, yes, it was written in C/C++ in CF5 and it's been rewritten in Java in 
CFMX. As has everything else. Read my lips Joe: CFMX is a complete rewrite.

 What does #1 mean?

I don't know. I don't use JavaScript with queries so I don't know what the 
behavior was or how it changed.

 If WDDX data is Stored in a DB and output using custom tags.. is
 there any internal CFMX
 implementation that would degrade performance compared to CF5.0?

Well, custom tag invocations are faster in CFMX than in CF5. I have no 
idea about WDDX. Do you *think* it is slower? Have you written a test case 
and *proved* there is a noticeable difference? Why don't you try it for 
yourself.

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

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

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SSL on form submission

2002-07-30 Thread Chad Gray

That is the safe way I would assume.. but is it necessary?



-Original Message-
From: Joel Firestone [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 30, 2002 9:58 AM
To: CF-Talk
Subject: Re: SSL on form submission

I always do it for the form. The submission would then be protected.

HTH

- Original Message -
From: Chad Gray [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 10:55 AM
Subject: SSL on form submission


 Im wondering if when a form is submitted at what point do you request
 SSL?

 Do you want the form to be covered under SSL as the user is filling it
 out? https://www/form.cfm

 Or do you leave the form http://www/form.cfm and use
 form action=https://www/action.cfm; method=POST enough to encrypt
 the data being passed to the action page?

 Just curious




 

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFFORM validate with REGEX

2002-07-30 Thread Venable, John

Just out of curiosity, anyone know why the vtml tag for CFFORM says nothing
about validating with a regex and is there an update?

Thanks,

John Venable
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



MX and URL trick for search engines

2002-07-30 Thread MW

We use the trick of replacing the ampersands and question marks in a URL
with slashes in order to have our website indexed by search engines.
Instead of having the URL appear as:

MySite.cfm?VarName=Value

it appears as

MyPage.cfm/VarName/Value

This works extremely well in CF5 on IIS5 (patched to the hilt). The
functionality happened, as I recall, out of the box. We saw the method
recommended in fusebox and adopted it.

We are now configuring CFMX on a development server, and all of a sudden
it is broken. We never ran CF5 on this server as a control, so it could
be IIS that is misconfigured or has a patch that stops this behavior,
although we just built out another CF5 server on a fully patched IIS
install and had no problems.

There is a third party ISAPI filter that will do this in IIS, but I'm
wondering what has happened to break this. Any ideas?

Thanks,
Matt

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: [OT] Problems with CFMX?

2002-07-30 Thread Chad Gray

Just so you know MM techs are telling people to use the MM Forums to
submit problems.  See the quote below:

With regard to the new error you had posted, I have to request that you
post this issue to the ColdFusion Community Forum where ColdFusion
Engineers, Team Macromedia members and other developers, system and
network administrators can assist you.  The ColdFusion Community Forum
is located here: http://webforums.macromedia.com/coldfusion/.  This new
issue you had included falls beyond the scope of Macromedia Installation
support.  The detailed guidelines that qualify for an installation
support can be reviewed at:
http://www.macromedia.com/v1/handlers/index.cfm?ID=10244Method=Full.;




-Original Message-
From: Jesse Noller [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 30, 2002 7:29 AM
To: CF-Talk
Subject: [OT] Problems with CFMX?

Hey All-

I just wanted to take a moment and discuss something which has
been bothering me. There are a lot of good discussions on this list
about CFMX; however, there are a lot of CFMX suck because of X
threads.

I wanted to take a moment to mention something. Generally, there
are a lot of internal people here at Macromedia on these lists, but we
don't have the time or the resources to address every single issue with
the attention you the user deserve.

This raises the point that we, as employees, may respond to
given user issues, but really, in order to get things fixed (if in fact
it *is* a bug) a bug must be entered into our bug tracking system, and
then escalated.

Getting a bug into the system can basically go a few ways:

1: A subscriber to the list internally figures it's a very bad
bug, and submits it his or herself. 

2: A user calls technical support and a bug is found, and
submitted into the bug system, and then escalated.

3: A user goes to:

http://www.macromedia.com/support/email/wishform/?6213=3

If that URL does not work: 

http://www.macromedia.com/support/coldfusion/

(Go to the bottom, under feedback, and click submit feature
request for coldfusion)


Those are the only three real ways of getting those issues you
think are severe bugs addressed. To be honest, the best way of getting
it addressed is to do number three. We need it to be entered into our
system, with a fully reproducible test case.

This means we need your operating system specs and revision,
service packs and patches. We need your web server version; we need the
code, or at least access to the code you are running. 

This way, we can go through, and find serious bugs. I know, for
each one of you who finds any bug generally, to you, that is one show
stopper of a bug, but bugs like say, broken COM support cannot be
adequately addressed unless submitted directly into out bug database.

The mailing lists generate a great deal of traffic, this is a
good thing, but those of us who watch the lists internally miss things.
Debbie, Sean and Vernon, as well as myself can only spend a finite
amount of time each day reading the couple hundred emails that cross the
lists, the few hundred forums postings, the newsgroups, etc.

The quickest, easiest and most direct approach is to submit the
bug directly to the database. When you find what you think is a bug,
please, please, please submit it.

This applies to things like The Apache module is stupid and
other such items. Want the Apache module source to be shipped? Submit a
request into that DB in either an enhancement request, or in a bug
report and explain why.

This will save a lot of us a lot of trouble. Yes, fellow
Macromedians monitor the list, but we can't catch every actual bug,
and filtering the lists is painful at best. 

Ok, I'm done now. Back to work. 

Jesse Noller
[EMAIL PROTECTED]
Macromedia Server Development
Unix/Linux special guy 



__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: [OT] Problems with CFMX?

2002-07-30 Thread Jochem van Dieten

Chad Gray wrote:
 Just so you know MM techs are telling people to use the MM Forums to
 submit problems.  See the quote below:

problems != bugs

Jochem

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: [OT] Problems with CFMX?

2002-07-30 Thread Jesse Noller

Yeah, that's because they asked a question that went beyond the immediate scope of the 
free installation support.

In this case, it's probably not a bug, but rather a support issue.

Re-read the part:

 The detailed guidelines that qualify for an installation support can be reviewed at:

This means the user was trying to get more support than was covered by that team. This 
does not indicate that he was pointing out a bug.

Jesse Noller
[EMAIL PROTECTED]
Macromedia Server Development
Unix/Linux special guy 

 -Original Message-
 From: Chad Gray [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 11:12 AM
 To: CF-Talk
 Subject: RE: [OT] Problems with CFMX?
 
 Just so you know MM techs are telling people to use the MM Forums to
 submit problems.  See the quote below:
 
 With regard to the new error you had posted, I have to request that you
 post this issue to the ColdFusion Community Forum where ColdFusion
 Engineers, Team Macromedia members and other developers, system and
 network administrators can assist you.  The ColdFusion Community Forum
 is located here: http://webforums.macromedia.com/coldfusion/.  This new
 issue you had included falls beyond the scope of Macromedia Installation
 support.  The detailed guidelines that qualify for an installation
 support can be reviewed at:
 http://www.macromedia.com/v1/handlers/index.cfm?ID=10244Method=Full.;
 
 
 
 
 -Original Message-
 From: Jesse Noller [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 7:29 AM
 To: CF-Talk
 Subject: [OT] Problems with CFMX?
 
 Hey All-
 
   I just wanted to take a moment and discuss something which has
 been bothering me. There are a lot of good discussions on this list
 about CFMX; however, there are a lot of CFMX suck because of X
 threads.
 
   I wanted to take a moment to mention something. Generally, there
 are a lot of internal people here at Macromedia on these lists, but we
 don't have the time or the resources to address every single issue with
 the attention you the user deserve.
 
   This raises the point that we, as employees, may respond to
 given user issues, but really, in order to get things fixed (if in fact
 it *is* a bug) a bug must be entered into our bug tracking system, and
 then escalated.
 
   Getting a bug into the system can basically go a few ways:
 
   1: A subscriber to the list internally figures it's a very bad
 bug, and submits it his or herself.
 
   2: A user calls technical support and a bug is found, and
 submitted into the bug system, and then escalated.
 
   3: A user goes to:
 
   http://www.macromedia.com/support/email/wishform/?6213=3
 
   If that URL does not work:
 
   http://www.macromedia.com/support/coldfusion/
 
   (Go to the bottom, under feedback, and click submit feature
 request for coldfusion)
 
 
   Those are the only three real ways of getting those issues you
 think are severe bugs addressed. To be honest, the best way of getting
 it addressed is to do number three. We need it to be entered into our
 system, with a fully reproducible test case.
 
   This means we need your operating system specs and revision,
 service packs and patches. We need your web server version; we need the
 code, or at least access to the code you are running.
 
   This way, we can go through, and find serious bugs. I know, for
 each one of you who finds any bug generally, to you, that is one show
 stopper of a bug, but bugs like say, broken COM support cannot be
 adequately addressed unless submitted directly into out bug database.
 
   The mailing lists generate a great deal of traffic, this is a
 good thing, but those of us who watch the lists internally miss things.
 Debbie, Sean and Vernon, as well as myself can only spend a finite
 amount of time each day reading the couple hundred emails that cross the
 lists, the few hundred forums postings, the newsgroups, etc.
 
   The quickest, easiest and most direct approach is to submit the
 bug directly to the database. When you find what you think is a bug,
 please, please, please submit it.
 
   This applies to things like The Apache module is stupid and
 other such items. Want the Apache module source to be shipped? Submit a
 request into that DB in either an enhancement request, or in a bug
 report and explain why.
 
   This will save a lot of us a lot of trouble. Yes, fellow
 Macromedians monitor the list, but we can't catch every actual bug,
 and filtering the lists is painful at best.
 
   Ok, I'm done now. Back to work.
 
 Jesse Noller
 [EMAIL PROTECTED]
 Macromedia Server Development
 Unix/Linux special guy
 
 
 
 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: 

RE: [OT] Problems with CFMX?

2002-07-30 Thread Jesse Noller

Side note, a quick definition:

Bug:

If do a cfhttp call to X, the response gets mangled to Y, this is bad behavior.

Support:

How do I make CFFILE work?


To very different types of things.

Off of recent threads:

Bug: 

Running template (template included) X is 25% slower on CFMX than on CF5

Support:

How do I make my application faster?



Jesse Noller
[EMAIL PROTECTED]
Macromedia Server Development
Unix/Linux special guy 

 -Original Message-
 From: Chad Gray [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 11:12 AM
 To: CF-Talk
 Subject: RE: [OT] Problems with CFMX?
 
 Just so you know MM techs are telling people to use the MM Forums to
 submit problems.  See the quote below:
 
 With regard to the new error you had posted, I have to request that you
 post this issue to the ColdFusion Community Forum where ColdFusion
 Engineers, Team Macromedia members and other developers, system and
 network administrators can assist you.  The ColdFusion Community Forum
 is located here: http://webforums.macromedia.com/coldfusion/.  This new
 issue you had included falls beyond the scope of Macromedia Installation
 support.  The detailed guidelines that qualify for an installation
 support can be reviewed at:
 http://www.macromedia.com/v1/handlers/index.cfm?ID=10244Method=Full.;
 
 
 
 
 -Original Message-
 From: Jesse Noller [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 7:29 AM
 To: CF-Talk
 Subject: [OT] Problems with CFMX?
 
 Hey All-
 
   I just wanted to take a moment and discuss something which has
 been bothering me. There are a lot of good discussions on this list
 about CFMX; however, there are a lot of CFMX suck because of X
 threads.
 
   I wanted to take a moment to mention something. Generally, there
 are a lot of internal people here at Macromedia on these lists, but we
 don't have the time or the resources to address every single issue with
 the attention you the user deserve.
 
   This raises the point that we, as employees, may respond to
 given user issues, but really, in order to get things fixed (if in fact
 it *is* a bug) a bug must be entered into our bug tracking system, and
 then escalated.
 
   Getting a bug into the system can basically go a few ways:
 
   1: A subscriber to the list internally figures it's a very bad
 bug, and submits it his or herself.
 
   2: A user calls technical support and a bug is found, and
 submitted into the bug system, and then escalated.
 
   3: A user goes to:
 
   http://www.macromedia.com/support/email/wishform/?6213=3
 
   If that URL does not work:
 
   http://www.macromedia.com/support/coldfusion/
 
   (Go to the bottom, under feedback, and click submit feature
 request for coldfusion)
 
 
   Those are the only three real ways of getting those issues you
 think are severe bugs addressed. To be honest, the best way of getting
 it addressed is to do number three. We need it to be entered into our
 system, with a fully reproducible test case.
 
   This means we need your operating system specs and revision,
 service packs and patches. We need your web server version; we need the
 code, or at least access to the code you are running.
 
   This way, we can go through, and find serious bugs. I know, for
 each one of you who finds any bug generally, to you, that is one show
 stopper of a bug, but bugs like say, broken COM support cannot be
 adequately addressed unless submitted directly into out bug database.
 
   The mailing lists generate a great deal of traffic, this is a
 good thing, but those of us who watch the lists internally miss things.
 Debbie, Sean and Vernon, as well as myself can only spend a finite
 amount of time each day reading the couple hundred emails that cross the
 lists, the few hundred forums postings, the newsgroups, etc.
 
   The quickest, easiest and most direct approach is to submit the
 bug directly to the database. When you find what you think is a bug,
 please, please, please submit it.
 
   This applies to things like The Apache module is stupid and
 other such items. Want the Apache module source to be shipped? Submit a
 request into that DB in either an enhancement request, or in a bug
 report and explain why.
 
   This will save a lot of us a lot of trouble. Yes, fellow
 Macromedians monitor the list, but we can't catch every actual bug,
 and filtering the lists is painful at best.
 
   Ok, I'm done now. Back to work.
 
 Jesse Noller
 [EMAIL PROTECTED]
 Macromedia Server Development
 Unix/Linux special guy
 
 
 
 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFFORM validate with REGEX

2002-07-30 Thread Michael Dinowitz

Probably just an oversight. Personally, I've used it in the past and have to upgrade 
it to my new email validation regex.


 Just out of curiosity, anyone know why the vtml tag for CFFORM says nothing
 about validating with a regex and is there an update?
 
 Thanks,
 
 John Venable
 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: [OT] Problems with CFMX?

2002-07-30 Thread Chad Gray

I understand that... I was just making sure you know people are being
told they can go to the MM Forums and get tech support.

If this is suppose to happen then ignore my post.



-Original Message-
From: Jesse Noller [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 30, 2002 10:12 AM
To: CF-Talk
Subject: RE: [OT] Problems with CFMX?

Yeah, that's because they asked a question that went beyond the
immediate scope of the free installation support.

In this case, it's probably not a bug, but rather a support issue.

Re-read the part:

 The detailed guidelines that qualify for an installation support can
be reviewed at:

This means the user was trying to get more support than was covered by
that team. This does not indicate that he was pointing out a bug.

Jesse Noller
[EMAIL PROTECTED]
Macromedia Server Development
Unix/Linux special guy 

 -Original Message-
 From: Chad Gray [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 11:12 AM
 To: CF-Talk
 Subject: RE: [OT] Problems with CFMX?
 
 Just so you know MM techs are telling people to use the MM Forums to
 submit problems.  See the quote below:
 
 With regard to the new error you had posted, I have to request that
you
 post this issue to the ColdFusion Community Forum where ColdFusion
 Engineers, Team Macromedia members and other developers, system and
 network administrators can assist you.  The ColdFusion Community Forum
 is located here: http://webforums.macromedia.com/coldfusion/.  This
new
 issue you had included falls beyond the scope of Macromedia
Installation
 support.  The detailed guidelines that qualify for an installation
 support can be reviewed at:
 http://www.macromedia.com/v1/handlers/index.cfm?ID=10244Method=Full.;
 
 
 
 
 -Original Message-
 From: Jesse Noller [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 7:29 AM
 To: CF-Talk
 Subject: [OT] Problems with CFMX?
 
 Hey All-
 
   I just wanted to take a moment and discuss something which has
 been bothering me. There are a lot of good discussions on this list
 about CFMX; however, there are a lot of CFMX suck because of X
 threads.
 
   I wanted to take a moment to mention something. Generally, there
 are a lot of internal people here at Macromedia on these lists, but we
 don't have the time or the resources to address every single issue
with
 the attention you the user deserve.
 
   This raises the point that we, as employees, may respond to
 given user issues, but really, in order to get things fixed (if in
fact
 it *is* a bug) a bug must be entered into our bug tracking system, and
 then escalated.
 
   Getting a bug into the system can basically go a few ways:
 
   1: A subscriber to the list internally figures it's a very bad
 bug, and submits it his or herself.
 
   2: A user calls technical support and a bug is found, and
 submitted into the bug system, and then escalated.
 
   3: A user goes to:
 
   http://www.macromedia.com/support/email/wishform/?6213=3
 
   If that URL does not work:
 
   http://www.macromedia.com/support/coldfusion/
 
   (Go to the bottom, under feedback, and click submit feature
 request for coldfusion)
 
 
   Those are the only three real ways of getting those issues you
 think are severe bugs addressed. To be honest, the best way of
getting
 it addressed is to do number three. We need it to be entered into our
 system, with a fully reproducible test case.
 
   This means we need your operating system specs and revision,
 service packs and patches. We need your web server version; we need
the
 code, or at least access to the code you are running.
 
   This way, we can go through, and find serious bugs. I know, for
 each one of you who finds any bug generally, to you, that is one show
 stopper of a bug, but bugs like say, broken COM support cannot be
 adequately addressed unless submitted directly into out bug database.
 
   The mailing lists generate a great deal of traffic, this is a
 good thing, but those of us who watch the lists internally miss
things.
 Debbie, Sean and Vernon, as well as myself can only spend a finite
 amount of time each day reading the couple hundred emails that cross
the
 lists, the few hundred forums postings, the newsgroups, etc.
 
   The quickest, easiest and most direct approach is to submit the
 bug directly to the database. When you find what you think is a bug,
 please, please, please submit it.
 
   This applies to things like The Apache module is stupid and
 other such items. Want the Apache module source to be shipped? Submit
a
 request into that DB in either an enhancement request, or in a bug
 report and explain why.
 
   This will save a lot of us a lot of trouble. Yes, fellow
 Macromedians monitor the list, but we can't catch every actual bug,
 and filtering the lists is painful at best.
 
   Ok, I'm done now. Back to work.
 
 Jesse Noller
 [EMAIL PROTECTED]
 Macromedia Server Development
 Unix/Linux 

Re: SSL on form submission

2002-07-30 Thread Joel Firestone

Well, if I understand it correctly, the SSL secures the data being
transferred.
If you only use it on the action page, and not the submission itself, the
data going from form.cfm to action.cfm would not be secure. But if form.cfm
is in SSL, then it would be secure.

HTH

- Original Message -
From: Chad Gray [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 11:05 AM
Subject: RE: SSL on form submission


 That is the safe way I would assume.. but is it necessary?



 -Original Message-
 From: Joel Firestone [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 9:58 AM
 To: CF-Talk
 Subject: Re: SSL on form submission

 I always do it for the form. The submission would then be protected.

 HTH

 - Original Message -
 From: Chad Gray [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Tuesday, July 30, 2002 10:55 AM
 Subject: SSL on form submission


  Im wondering if when a form is submitted at what point do you request
  SSL?
 
  Do you want the form to be covered under SSL as the user is filling it
  out? https://www/form.cfm
 
  Or do you leave the form http://www/form.cfm and use
  form action=https://www/action.cfm; method=POST enough to encrypt
  the data being passed to the action page?
 
  Just curious
 
 
 
 
 

 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Evaluate Question

2002-07-30 Thread John McCosker

Greetings,

inside a CFSCRIPT loop I am building html with Javascript Event handlers
attatched to a href's posting to different areas within the app,

when I do this,

writeOutput( 'trtd colspan=15 align=rightINPUT TYPE=submit
VALUE=Back
onClick=javascript:btRep('#REQUEST.VIRTUALROOT#secure/buildEnhReports/index
cfm?fuseaction=buildReport','multipart/form-data')/FORM/td/tr ' );

I get this error,

Invalid parser construct found on line 34 at position 129. ColdFusion was
looking at the following text:

#
Invalid expression format. The usual cause is an error in the expression
structure.

I tried using evaluate,

writeOutput( evaluate( 'trtd colspan=15 align=rightINPUT
TYPE=submit VALUE=Back
onClick=javascript:btRep('#REQUEST.VIRTUALROOT#secure/buildEnhReports/index
cfm?fuseaction=buildReport','multipart/form-data')/FORM/td/tr ' )
);

but I still get the same error, although I think I'm using evaluate in the
wrong context,
in fact I havn't applied it before,

any ideas,

respectfully,

j



__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Coldfusion Hiermenus

2002-07-30 Thread Frank Mamone

We use tehm on our Intranet and found them pretty good. A little slow on
slow PC's though.

- Original Message -
From: Ian Vaughan [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, July 29, 2002 11:10 AM
Subject: Coldfusion  Hiermenus


 Hi

 Has anybody used or had any experience in working with the hiermenus
script
 from

 http://www.webreference.com/dhtml/hiermenus/

 If so as anybosy had any major problems  (with positioning etc) with it
 while implementing the script into their websites?


 I would be interested to hear if anybody on the list ahs had the same
 problems as myself.

 Regards

 Ian

 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: [OT] Problems with CFMX?

2002-07-30 Thread Jesse Noller

Well, yeah, there is some support done through the forums, however, that is not the 
best method of posting reproducible bugs, and that is not *the* place to get technical 
support (we have a phone number for that).

Just like some of us try to get some issues supported in these mail threads, so the 
forums are a place where we have a limited support scope and will try to do as much as 
possible.

Jesse Noller
[EMAIL PROTECTED]
Macromedia Server Development
Unix/Linux special guy 

 -Original Message-
 From: Chad Gray [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 11:21 AM
 To: CF-Talk
 Subject: RE: [OT] Problems with CFMX?
 
 I understand that... I was just making sure you know people are being
 told they can go to the MM Forums and get tech support.
 
 If this is suppose to happen then ignore my post.
 
 
 
 -Original Message-
 From: Jesse Noller [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 10:12 AM
 To: CF-Talk
 Subject: RE: [OT] Problems with CFMX?
 
 Yeah, that's because they asked a question that went beyond the
 immediate scope of the free installation support.
 
 In this case, it's probably not a bug, but rather a support issue.
 
 Re-read the part:
 
  The detailed guidelines that qualify for an installation support can
 be reviewed at:
 
 This means the user was trying to get more support than was covered by
 that team. This does not indicate that he was pointing out a bug.
 
 Jesse Noller
 [EMAIL PROTECTED]
 Macromedia Server Development
 Unix/Linux special guy
 
  -Original Message-
  From: Chad Gray [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, July 30, 2002 11:12 AM
  To: CF-Talk
  Subject: RE: [OT] Problems with CFMX?
 
  Just so you know MM techs are telling people to use the MM Forums to
  submit problems.  See the quote below:
 
  With regard to the new error you had posted, I have to request that
 you
  post this issue to the ColdFusion Community Forum where ColdFusion
  Engineers, Team Macromedia members and other developers, system and
  network administrators can assist you.  The ColdFusion Community Forum
  is located here: http://webforums.macromedia.com/coldfusion/.  This
 new
  issue you had included falls beyond the scope of Macromedia
 Installation
  support.  The detailed guidelines that qualify for an installation
  support can be reviewed at:
  http://www.macromedia.com/v1/handlers/index.cfm?ID=10244Method=Full.;
 
 
 
 
  -Original Message-
  From: Jesse Noller [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, July 30, 2002 7:29 AM
  To: CF-Talk
  Subject: [OT] Problems with CFMX?
 
  Hey All-
 
  I just wanted to take a moment and discuss something which has
  been bothering me. There are a lot of good discussions on this list
  about CFMX; however, there are a lot of CFMX suck because of X
  threads.
 
  I wanted to take a moment to mention something. Generally, there
  are a lot of internal people here at Macromedia on these lists, but we
  don't have the time or the resources to address every single issue
 with
  the attention you the user deserve.
 
  This raises the point that we, as employees, may respond to
  given user issues, but really, in order to get things fixed (if in
 fact
  it *is* a bug) a bug must be entered into our bug tracking system, and
  then escalated.
 
  Getting a bug into the system can basically go a few ways:
 
  1: A subscriber to the list internally figures it's a very bad
  bug, and submits it his or herself.
 
  2: A user calls technical support and a bug is found, and
  submitted into the bug system, and then escalated.
 
  3: A user goes to:
 
  http://www.macromedia.com/support/email/wishform/?6213=3
 
  If that URL does not work:
 
  http://www.macromedia.com/support/coldfusion/
 
  (Go to the bottom, under feedback, and click submit feature
  request for coldfusion)
 
 
  Those are the only three real ways of getting those issues you
  think are severe bugs addressed. To be honest, the best way of
 getting
  it addressed is to do number three. We need it to be entered into our
  system, with a fully reproducible test case.
 
  This means we need your operating system specs and revision,
  service packs and patches. We need your web server version; we need
 the
  code, or at least access to the code you are running.
 
  This way, we can go through, and find serious bugs. I know, for
  each one of you who finds any bug generally, to you, that is one show
  stopper of a bug, but bugs like say, broken COM support cannot be
  adequately addressed unless submitted directly into out bug database.
 
  The mailing lists generate a great deal of traffic, this is a
  good thing, but those of us who watch the lists internally miss
 things.
  Debbie, Sean and Vernon, as well as myself can only spend a finite
  amount of time each day reading the couple hundred emails that cross
 the
  lists, the few hundred forums postings, the newsgroups, 

Re: MX and URL trick for search engines

2002-07-30 Thread Sean A Corfield

On Tuesday, July 30, 2002, at 08:08 , MW wrote:
 MyPage.cfm/VarName/Value
 We are now configuring CFMX on a development server, and all of a sudden
 it is broken.

In CFMX, CGI.PATH_INFO should contain /VarName/Value - I believe this is 
slightly different behavior to CF5?

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

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SSL on form submission

2002-07-30 Thread Christopher Olive

that's not strictly correct.  (before i begin, i always SSL the form itself,
since it gives the users warm fuzzies).

when a user calls up a form and enters data into it, the data is still on
their local PC.  it has not gone over the wire yet.  if the form's action
page is HTTPS, when the user submits the form, the request *and all its
data* are encrypted.

but, as i said, i prefer to encrypt the form so the user can see the little
glowing lock (or whatnot) and feel good.

chris

-Original Message-
From: Joel Firestone [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 30, 2002 11:17 AM
To: CF-Talk
Subject: Re: SSL on form submission


Well, if I understand it correctly, the SSL secures the data being
transferred.
If you only use it on the action page, and not the submission itself, the
data going from form.cfm to action.cfm would not be secure. But if form.cfm
is in SSL, then it would be secure.

HTH

- Original Message -
From: Chad Gray [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 11:05 AM
Subject: RE: SSL on form submission


 That is the safe way I would assume.. but is it necessary?



 -Original Message-
 From: Joel Firestone [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 9:58 AM
 To: CF-Talk
 Subject: Re: SSL on form submission

 I always do it for the form. The submission would then be protected.

 HTH

 - Original Message -
 From: Chad Gray [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Tuesday, July 30, 2002 10:55 AM
 Subject: SSL on form submission


  Im wondering if when a form is submitted at what point do you request
  SSL?
 
  Do you want the form to be covered under SSL as the user is filling it
  out? https://www/form.cfm
 
  Or do you leave the form http://www/form.cfm and use
  form action=https://www/action.cfm; method=POST enough to encrypt
  the data being passed to the action page?
 
  Just curious
 
 
 
 
 



__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Evaluate Question

2002-07-30 Thread Raymond Camden

You use single quotes to surround the entire writeOutput arg, but then
use single quotes in the onClick event handler. You need to escape them.

===
Raymond Camden, ColdFusion Jedi Master for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

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

 -Original Message-
 From: John McCosker [mailto:[EMAIL PROTECTED]] 
 Sent: Tuesday, July 30, 2002 11:21 AM
 To: CF-Talk
 Subject: Evaluate Question
 
 
 Greetings,
 
 inside a CFSCRIPT loop I am building html with Javascript 
 Event handlers
 attatched to a href's posting to different areas within the app,
 
 when I do this,
 
 writeOutput( 'trtd colspan=15 align=rightINPUT TYPE=submit
 VALUE=Back
 onClick=javascript:btRep('#REQUEST.VIRTUALROOT#secure/buildEn
 hReports/index
 cfm?fuseaction=buildReport','multipart/form-data')/FORM/t
 d/tr ' );
 
 I get this error,
 
 Invalid parser construct found on line 34 at position 129. 
 ColdFusion was
 looking at the following text:
 
 #
 Invalid expression format. The usual cause is an error in the 
 expression
 structure.
 
 I tried using evaluate,
 
 writeOutput( evaluate( 'trtd colspan=15 align=rightINPUT
 TYPE=submit VALUE=Back
 onClick=javascript:btRep('#REQUEST.VIRTUALROOT#secure/buildEn
 hReports/index
 cfm?fuseaction=buildReport','multipart/form-data')/FORM/t
 d/tr ' )
 );
 
 but I still get the same error, although I think I'm using 
 evaluate in the
 wrong context,
 in fact I havn't applied it before,
 
 any ideas,
 
 respectfully,
 
 j
 
 
 
 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFFORM validate with REGEX

2002-07-30 Thread Raymond Camden

As an FYI, I contacted the person who handles VTMLs. This doesn't mean
it will get fixed, yada yada yada, but I just wanted to let folks know.
Also, it's very easy to edit VTML files, so you should be able to fix up
rather quickly.

===
Raymond Camden, ColdFusion Jedi Master for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

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

 -Original Message-
 From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] 
 Sent: Tuesday, July 30, 2002 11:20 AM
 To: CF-Talk
 Subject: Re: CFFORM validate with REGEX
 
 
 Probably just an oversight. Personally, I've used it in the 
 past and have to upgrade it to my new email validation regex.
 
 
  Just out of curiosity, anyone know why the vtml tag for 
 CFFORM says nothing
  about validating with a regex and is there an update?
  
  Thanks,
  
  John Venable
  


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Passing Application Variables between Applications

2002-07-30 Thread Haggerty, Mike

I am working on a large-scale portal application and need some way to pass
application variables between applications. I am wondering if anyone has any
simple ideas on how to do this?

For instance, I have an application running in a root directory and a second
application running in subdirectory, something like this:

App1
 |- App2

In an ideal world, I would have some way to call the application variables
from the root application within the sub-application. Right now, I am
storing the application structure in a WDDX packet and passing it down to
the subapplication by writing it to a file and building it into the app
scope whenever the time/date value on the file changes. 

Does anyone know of a better way?

M





__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SSL on form submission

2002-07-30 Thread Jesse Houwing

Joel Firestone wrote:
 Well, if I understand it correctly, the SSL secures the data being
 transferred.
 If you only use it on the action page, and not the submission itself, the
 data going from form.cfm to action.cfm would not be secure. But if form.cfm
 is in SSL, then it would be secure.

That would be incorrect.

It goes as follows:

The user enters the data into the form.
The browser compiles this to a bunch of data to send
The browser contacts the server on which the actio file resides
The browser sees it needs to use SSL as the action file is on a secure 
server
The browser sends the data over the encrypted connection

So any data sent to a file on a SSL secured server will be encrypted. 
data coming FROM a secure connection and going to a unsecure connection 
however is therefor NOT safe.

Jesse


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Coldfusion Hiermenus

2002-07-30 Thread Shawn Grover

Read the fine print.  Last time I checked (a couple months ago), they were
implementing licensing fees.  The costs involved were outrageous.
An equivalent, but free solution is the Milonic menus (www.milonic.com -
hope I got that right).

My two cents.

Shawn Grover

-Original Message-
From: Frank Mamone [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 30, 2002 9:22 AM
To: CF-Talk
Subject: Re: Coldfusion  Hiermenus


We use tehm on our Intranet and found them pretty good. A little slow on
slow PC's though.

- Original Message -
From: Ian Vaughan [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, July 29, 2002 11:10 AM
Subject: Coldfusion  Hiermenus


 Hi

 Has anybody used or had any experience in working with the hiermenus
script
 from

 http://www.webreference.com/dhtml/hiermenus/

 If so as anybosy had any major problems  (with positioning etc) with it
 while implementing the script into their websites?


 I would be interested to hear if anybody on the list ahs had the same
 problems as myself.

 Regards

 Ian

 

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SSL on form submission

2002-07-30 Thread Chad Gray

Ah...  Thanks guys...  My curiosity is cured.

That was going to bug me the rest of the day...  :)



-Original Message-
From: Christopher Olive [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 30, 2002 10:27 AM
To: CF-Talk
Subject: RE: SSL on form submission

that's not strictly correct.  (before i begin, i always SSL the form
itself,
since it gives the users warm fuzzies).

when a user calls up a form and enters data into it, the data is still
on
their local PC.  it has not gone over the wire yet.  if the form's
action
page is HTTPS, when the user submits the form, the request *and all its
data* are encrypted.

but, as i said, i prefer to encrypt the form so the user can see the
little
glowing lock (or whatnot) and feel good.

chris

-Original Message-
From: Joel Firestone [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 30, 2002 11:17 AM
To: CF-Talk
Subject: Re: SSL on form submission


Well, if I understand it correctly, the SSL secures the data being
transferred.
If you only use it on the action page, and not the submission itself,
the
data going from form.cfm to action.cfm would not be secure. But if
form.cfm
is in SSL, then it would be secure.

HTH

- Original Message -
From: Chad Gray [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 11:05 AM
Subject: RE: SSL on form submission


 That is the safe way I would assume.. but is it necessary?



 -Original Message-
 From: Joel Firestone [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 9:58 AM
 To: CF-Talk
 Subject: Re: SSL on form submission

 I always do it for the form. The submission would then be protected.

 HTH

 - Original Message -
 From: Chad Gray [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Tuesday, July 30, 2002 10:55 AM
 Subject: SSL on form submission


  Im wondering if when a form is submitted at what point do you
request
  SSL?
 
  Do you want the form to be covered under SSL as the user is filling
it
  out? https://www/form.cfm
 
  Or do you leave the form http://www/form.cfm and use
  form action=https://www/action.cfm; method=POST enough to
encrypt
  the data being passed to the action page?
 
  Just curious
 
 
 
 
 




__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: MX and URL trick for search engines

2002-07-30 Thread Martin Orth

I use this code as a custom tag. It requires cgi.path_info and
cgi.script_name

It transforms cgi.path_info into url variables

you can urls like index.cfm/fuseaction/showrecord/id/23

with the custom you will get two url variables
url.fuseaction=showrecord
url.id=23

cfset lRawUrlParam=Replace(cgi.path_info,script_name,)
cfset aRawUrlParam=ListToArray(lRawUrlParam,/)
cfloop from=1 to=#ArrayLen(aRawUrlParam)# index=i step=2
cfif i mod 2 eq 1 and i+1 lte ArrayLen(aRawUrlParam)
cfset url.#aRawUrlParam[i]#=Evaluate(aRawUrlParam[i+1])/cfif
/cfloop

- Original Message -
From: MW [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 5:08 PM
Subject: MX and URL trick for search engines


 We use the trick of replacing the ampersands and question marks in a URL
 with slashes in order to have our website indexed by search engines.
 Instead of having the URL appear as:

 MySite.cfm?VarName=Value

 it appears as

 MyPage.cfm/VarName/Value

 This works extremely well in CF5 on IIS5 (patched to the hilt). The
 functionality happened, as I recall, out of the box. We saw the method
 recommended in fusebox and adopted it.

 We are now configuring CFMX on a development server, and all of a sudden
 it is broken. We never ran CF5 on this server as a control, so it could
 be IIS that is misconfigured or has a patch that stops this behavior,
 although we just built out another CF5 server on a fully patched IIS
 install and had no problems.

 There is a third party ISAPI filter that will do this in IIS, but I'm
 wondering what has happened to break this. Any ideas?

 Thanks,
 Matt

 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Evaluate Question

2002-07-30 Thread Chris Lofback

Escape the single quotes by doubling them--like this:

writeOutput( 'trtd colspan=15 align=rightINPUT TYPE=submit
VALUE=Back
onClick=javascript:btRep(''#REQUEST.VIRTUALROOT#secure/buildEnhReports/inde
x.cfm?fuseaction=buildReport'',''multipart/form-data'')/FORM/td/tr'
);

Chris Lofback
Sr. Web Developer

TRX Integration
28051 US 19 N., Ste. C
Clearwater, FL  33761
www.trxi.com


 -Original Message-
 From: John McCosker [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 11:21 AM
 To: CF-Talk
 Subject: Evaluate Question
 
 
 Greetings,
 
 inside a CFSCRIPT loop I am building html with Javascript 
 Event handlers
 attatched to a href's posting to different areas within the app,
 
 when I do this,
 
 writeOutput( 'trtd colspan=15 align=rightINPUT TYPE=submit
 VALUE=Back
 onClick=javascript:btRep('#REQUEST.VIRTUALROOT#secure/buildEn
 hReports/index
 cfm?fuseaction=buildReport','multipart/form-data')/FORM/t
 d/tr ' );
 
 I get this error,
 
 Invalid parser construct found on line 34 at position 129. 
 ColdFusion was
 looking at the following text:
 
 #
 Invalid expression format. The usual cause is an error in the 
 expression
 structure.
 
 I tried using evaluate,
 
 writeOutput( evaluate( 'trtd colspan=15 align=rightINPUT
 TYPE=submit VALUE=Back
 onClick=javascript:btRep('#REQUEST.VIRTUALROOT#secure/buildEn
 hReports/index
 cfm?fuseaction=buildReport','multipart/form-data')/FORM/t
 d/tr ' )
 );
 
 but I still get the same error, although I think I'm using 
 evaluate in the
 wrong context,
 in fact I havn't applied it before,
 
 any ideas,
 
 respectfully,
 
 j
 
 
 
 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Evaluate Question

2002-07-30 Thread mark brinkworth

Have you tried escapeing the apostrophes.

Cheers


(''#REQUEST.VIRTUALROOT#secure/buildEnhReports/index
cfm?fuseaction=buildReport'',''multipart/form-data'')/




Greetings,

inside a CFSCRIPT loop I am building html with Javascript Event handlers
attatched to a href's posting to different areas within the app,

when I do this,

writeOutput( 'trtd colspan=15 align=rightINPUT TYPE=submit
VALUE=Back
onClick=javascript:btRep('#REQUEST.VIRTUALROOT#secure/buildEnhReports/index
cfm?fuseaction=buildReport','multipart/form-data')/FORM/td/tr ' );

I get this error,

Invalid parser construct found on line 34 at position 129. ColdFusion was
looking at the following text:

#
Invalid expression format. The usual cause is an error in the expression
structure.

I tried using evaluate,

writeOutput( evaluate( 'trtd colspan=15 align=rightINPUT
TYPE=submit VALUE=Back
onClick=javascript:btRep('#REQUEST.VIRTUALROOT#secure/buildEnhReports/index
cfm?fuseaction=buildReport','multipart/form-data')/FORM/td/tr ' )
);

but I still get the same error, although I think I'm using evaluate in the
wrong context,
in fact I havn't applied it before,

any ideas,

respectfully,

j




__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SSL on form submission

2002-07-30 Thread Joel Firestone

Sorry for the previous message. I stand corrected. It appears I didn't
understand
it correctly. Thanks.

- Original Message -
From: Jesse Houwing [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 11:32 AM
Subject: Re: SSL on form submission


 Joel Firestone wrote:
  Well, if I understand it correctly, the SSL secures the data being
  transferred.
  If you only use it on the action page, and not the submission itself,
the
  data going from form.cfm to action.cfm would not be secure. But if
form.cfm
  is in SSL, then it would be secure.

 That would be incorrect.

 It goes as follows:

 The user enters the data into the form.
 The browser compiles this to a bunch of data to send
 The browser contacts the server on which the actio file resides
 The browser sees it needs to use SSL as the action file is on a secure
 server
 The browser sends the data over the encrypted connection

 So any data sent to a file on a SSL secured server will be encrypted.
 data coming FROM a secure connection and going to a unsecure connection
 however is therefor NOT safe.

 Jesse


 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Passing Application Variables between Applications

2002-07-30 Thread Hugo Ahlenius

in app2 application.cfm include app1's application.cfm?

Or will there be much more than variable definitions in the application
template?




-
Hugo Ahlenius   E-Mail: [EMAIL PROTECTED]
Project Officer Phone:  +46 8 7410451
UNEP GRID-Arendal   Fax:   +46 733 403285
Stockholm OfficeMobile:+46 733 467111
WWW:  http://www.grida.no
- 



| -Original Message-
| From: Haggerty, Mike [mailto:[EMAIL PROTECTED]]
| Sent: Tuesday, July 30, 2002 17:25 
| To: CF-Talk
| Subject: Passing Application Variables between Applications
| 
| 
| I am working on a large-scale portal application and need 
| some way to pass
| application variables between applications. I am wondering if 
| anyone has any
| simple ideas on how to do this?
| 
| For instance, I have an application running in a root 
| directory and a second
| application running in subdirectory, something like this:
| 
| App1
|  |- App2
| 
| In an ideal world, I would have some way to call the 
| application variables
| from the root application within the sub-application. Right now, I am
| storing the application structure in a WDDX packet and 
| passing it down to
| the subapplication by writing it to a file and building it 
| into the app
| scope whenever the time/date value on the file changes. 
| 
| Does anyone know of a better way?
| 
| M
| 
| 
| 
| 
| 
| 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: MX and URL trick for search engines

2002-07-30 Thread Bryan F. Hogan

See cfdev.com's products

-Original Message-
From: MW [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Date: Tuesday, July 30, 2002 11:15 AM
Subject: MX and URL trick for search engines


We use the trick of replacing the ampersands and question marks in a URL
with slashes in order to have our website indexed by search engines.
Instead of having the URL appear as:

MySite.cfm?VarName=Value

it appears as

MyPage.cfm/VarName/Value

This works extremely well in CF5 on IIS5 (patched to the hilt). The
functionality happened, as I recall, out of the box. We saw the method
recommended in fusebox and adopted it.

We are now configuring CFMX on a development server, and all of a sudden
it is broken. We never ran CF5 on this server as a control, so it could
be IIS that is misconfigured or has a patch that stops this behavior,
although we just built out another CF5 server on a fully patched IIS
install and had no problems.

There is a third party ISAPI filter that will do this in IIS, but I'm
wondering what has happened to break this. Any ideas?

Thanks,
Matt


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Evaluate Question

2002-07-30 Thread John McCosker

Cheers,

thats all I had to do, Duh!

-Original Message-
From: mark brinkworth [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 30, 2002 4:39 PM
To: CF-Talk
Subject: Re: Evaluate Question


Have you tried escapeing the apostrophes.

Cheers


(''#REQUEST.VIRTUALROOT#secure/buildEnhReports/index
cfm?fuseaction=buildReport'',''multipart/form-data'')/




Greetings,

inside a CFSCRIPT loop I am building html with Javascript Event handlers
attatched to a href's posting to different areas within the app,

when I do this,

writeOutput( 'trtd colspan=15 align=rightINPUT TYPE=submit
VALUE=Back
onClick=javascript:btRep('#REQUEST.VIRTUALROOT#secure/buildEnhReports/inde
x
cfm?fuseaction=buildReport','multipart/form-data')/FORM/td/tr ' );

I get this error,

Invalid parser construct found on line 34 at position 129. ColdFusion was
looking at the following text:

#
Invalid expression format. The usual cause is an error in the expression
structure.

I tried using evaluate,

writeOutput( evaluate( 'trtd colspan=15 align=rightINPUT
TYPE=submit VALUE=Back
onClick=javascript:btRep('#REQUEST.VIRTUALROOT#secure/buildEnhReports/inde
x
cfm?fuseaction=buildReport','multipart/form-data')/FORM/td/tr ' )
);

but I still get the same error, although I think I'm using evaluate in the
wrong context,
in fact I havn't applied it before,

any ideas,

respectfully,

j





__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX Taking all CPU Resources?

2002-07-30 Thread Joe Eugene

Sean,
I havent come to a final test result.. but i think we are narrowing
it
down to the Complex Object(WDDX) returned from the data store
that gets parsed out WDDX2CFML..
Custom Tags are probably running ok/fast.. probably its the WDDX
parsing..in CFMX that causes the CPU to run 80-90%... Atleast we
are seeing a pattern here with tests.
I will try to write case/result...end of this week or so.
Is it possible that you can find out..
How the Java Implementation of WDDX2CFML has changed in CFMX?
Any WDDX implementation changes(Not in docs) will be helpful.
Thanks
Joe

- Original Message -
From: Sean A Corfield [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 11:00 AM
Subject: Re: CFMX Taking all CPU Resources?


 On Tuesday, July 30, 2002, at 07:26 , Joe Eugene wrote:
  Do you know of any internal WDDX implementation differences
  between
  CFMX and CF5.0 .. CFMX

 Er, yes, it was written in C/C++ in CF5 and it's been rewritten in Java in
 CFMX. As has everything else. Read my lips Joe: CFMX is a complete
rewrite.

  What does #1 mean?

 I don't know. I don't use JavaScript with queries so I don't know what the
 behavior was or how it changed.

  If WDDX data is Stored in a DB and output using custom tags.. is
  there any internal CFMX
  implementation that would degrade performance compared to CF5.0?

 Well, custom tag invocations are faster in CFMX than in CF5. I have no
 idea about WDDX. Do you *think* it is slower? Have you written a test case
 and *proved* there is a noticeable difference? Why don't you try it for
 yourself.

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

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

 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFX_CyberCash

2002-07-30 Thread Steve Johnson

You might look at http://www.cfxoncrcybercash.com/ we've used the 
tag on Solaris (the tag works on NT and Linux too). 

I haven't tried it on CFMX yet.

i could barely navigate their site, plus it looks like it's been 
abandoned.  if you do try it on CFMX i'd love to hear if it works, 
but for $299 i think i'd rather write my own if at all possible.

steve
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SSL on form submission

2002-07-30 Thread Alex

On Tue, 30 Jul 2002, Chad Gray wrote:

 Im wondering if when a form is submitted at what point do you request
 SSL?

 Do you want the form to be covered under SSL as the user is filling it
 out? https://www/form.cfm
Here. Run a sniffer and find out. I think the first time you request an
HTTPs page it is not encrypted.


 Or do you leave the form http://www/form.cfm and use
 form action=https://www/action.cfm; method=POST enough to encrypt
 the data being passed to the action page?

 Just curious




 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SSL on form submission

2002-07-30 Thread Dave Watts

 Here. Run a sniffer and find out. I think the first time you 
 request an HTTPs page it is not encrypted.

No, I'm pretty sure that whenever you request any URL via HTTPS, that
request and response are encrypted.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Taking all CPU Resources?

2002-07-30 Thread Stacy Young

Hey Joe I'm curious...these objects...are they wddx packets stored in client
scope which in turn is in your client variable datasource?

Stace


-Original Message-
From: Joe Eugene [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 30, 2002 11:54 AM
To: CF-Talk
Subject: Re: CFMX Taking all CPU Resources?

Sean,
I havent come to a final test result.. but i think we are narrowing
it
down to the Complex Object(WDDX) returned from the data store
that gets parsed out WDDX2CFML..
Custom Tags are probably running ok/fast.. probably its the WDDX
parsing..in CFMX that causes the CPU to run 80-90%... Atleast we
are seeing a pattern here with tests.
I will try to write case/result...end of this week or so.
Is it possible that you can find out..
How the Java Implementation of WDDX2CFML has changed in CFMX?
Any WDDX implementation changes(Not in docs) will be helpful.
Thanks
Joe

- Original Message -
From: Sean A Corfield [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 11:00 AM
Subject: Re: CFMX Taking all CPU Resources?


 On Tuesday, July 30, 2002, at 07:26 , Joe Eugene wrote:
  Do you know of any internal WDDX implementation differences
  between
  CFMX and CF5.0 .. CFMX

 Er, yes, it was written in C/C++ in CF5 and it's been rewritten in Java in
 CFMX. As has everything else. Read my lips Joe: CFMX is a complete
rewrite.

  What does #1 mean?

 I don't know. I don't use JavaScript with queries so I don't know what the
 behavior was or how it changed.

  If WDDX data is Stored in a DB and output using custom tags.. is
  there any internal CFMX
  implementation that would degrade performance compared to CF5.0?

 Well, custom tag invocations are faster in CFMX than in CF5. I have no
 idea about WDDX. Do you *think* it is slower? Have you written a test case
 and *proved* there is a noticeable difference? Why don't you try it for
 yourself.

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

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

 

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



How to Display a Page incase of Timeout?

2002-07-30 Thread Paul

Thanks for the reply Isaac,
   
I tried placing the following code in the application.cfm page but the user is not 
logged in until they enter the members area of the site. Will this code work outside 
of the application page? Currently the loginid is not declared in the application page.

cflock scope=session type=readonly timeout=10
cfset loggedin = YesNoFormat(IsDefined(session.loginid))
/cflock

cfif not loggedin
cfinclude template=loginform.cfmcfabort
/cfif

Any other ideas as to how to approach this? I think displaying a message in case of 
timeout should be a common task? But I'm stuck.



Thanks

-Paul






__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: cf based blogs

2002-07-30 Thread Owens, Howard

I rolled my own blog in CF.

The initial construction took about 10 or 12 hours (including comment
component, feedback, plus design, etc).  I've got another 3 or 5 hours in it
since just refining things.

It's at www.globalnewswatch.com


__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: cf based blogs

2002-07-30 Thread Bryan F. Hogan

What is a blog?


-Original Message-
From: Owens, Howard [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Date: Tuesday, July 30, 2002 12:57 PM
Subject: RE: cf based blogs


I rolled my own blog in CF.

The initial construction took about 10 or 12 hours (including comment
component, feedback, plus design, etc).  I've got another 3 or 5 hours in
it
since just refining things.

It's at www.globalnewswatch.com



__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: How to Display a Page incase of Timeout?

2002-07-30 Thread Thane Sherrington

At 12:48 PM 7/30/02 -0400, Paul wrote:
Thanks for the reply Isaac,

 I tried placing the following code in the application.cfm page but 
 the user is not logged in until they enter the members area of the site. 
 Will this code work outside of the application page? Currently the 
 loginid is not declared in the application page.

cflock scope=session type=readonly timeout=10
cfset loggedin = YesNoFormat(IsDefined(session.loginid))
/cflock

cfif not loggedin
cfinclude template=loginform.cfmcfabort
/cfif

I'm not sure what you're doing here, but you could do:

cflock scope=session type=readonly timeout=10
 cfif not IsDefined(Session.LoginID)
 cfinclude template=loginform.cfm
 [Put your various closing stuff here /body /html etc, 
if not in your loginform.cfm file.]
 cfabort
 /cfif
/cflock

If you put this code (and the login code) in your application.cfm file, it 
will run on every page, protecting each.


T


__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Passing multiple values back from popup?

2002-07-30 Thread Kris Pilles

I'm trying to pass multiple values back to my form from a popup...
Bascialyl I want to pass the value and the display of my select from the
popup back to the form Can anyone tell me how to do this???



-Original Message-
From: Thane Sherrington [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 30, 2002 12:52 PM
To: CF-Talk
Subject: Re: How to Display a Page incase of Timeout?


At 12:48 PM 7/30/02 -0400, Paul wrote:
Thanks for the reply Isaac,

 I tried placing the following code in the application.cfm page but
 the user is not logged in until they enter the members area of the
site. 
 Will this code work outside of the application page? Currently the 
 loginid is not declared in the application page.

cflock scope=session type=readonly timeout=10
cfset loggedin = YesNoFormat(IsDefined(session.loginid))
/cflock

cfif not loggedin
cfinclude template=loginform.cfmcfabort
/cfif

I'm not sure what you're doing here, but you could do:

cflock scope=session type=readonly timeout=10
 cfif not IsDefined(Session.LoginID)
 cfinclude template=loginform.cfm
 [Put your various closing stuff here /body /html
etc, 
if not in your loginform.cfm file.]
 cfabort
 /cfif
/cflock

If you put this code (and the login code) in your application.cfm file,
it 
will run on every page, protecting each.


T



__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFX_Ping

2002-07-30 Thread Joel Blanchette

Hello All,
Last week there was talk about the CFX_Ping custom tag.  I am
trying to download it from Macromedia but I am getting  a The page
cannot be displayed.

I am wondering if anyone here has the tag that would be able to send it
to me or give me a link that works.

Thanks.

 
 
==
Joel Blanchette
IT and System Specialist
Point of Impact Technologies Inc.
Tel: (204) 989-0013
Email: [EMAIL PROTECTED]
==

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: cf based blogs

2002-07-30 Thread Michael Dinowitz

A web diary. Also called a web log (web+log=blog). Basically, it's a diary of whatever 
you want to write about for public view. 


 What is a blog?
 
 
 -Original Message-
 From: Owens, Howard [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Date: Tuesday, July 30, 2002 12:57 PM
 Subject: RE: cf based blogs
 
 
 I rolled my own blog in CF.
 
 The initial construction took about 10 or 12 hours (including comment
 component, feedback, plus design, etc).  I've got another 3 or 5 hours in
 it
 since just refining things.
 
 It's at www.globalnewswatch.com
 
 
 
 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Issue: Update a tracker database with an index.html file.

2002-07-30 Thread James Blaha

To All:
Thanks for all your great help!

Sincerely,
James Blaha


WebMaster wrote:

Hi Ian, James,
Seems we are getting more info now.
OK, so you can't map html to cf.  So your choices are PERL,PHP or whatever
cgi your provider allows.  If they don't allow cgi you could still use the
image route and do it using JavaScript as suggested by Ian.  You can gather
all the info you need from JavaScript and put this into  new image() and set
the src to the coldFusion page you want.  Ian's code below actually shows
you how to do this.  Nice work Ian.  Here is another example:
NOTE: I have not tested this so there may be syntax errors. Also note the
spelling of referrer.  In cgi it is incorrectly spelt with one r.
script language=javascript
newImg = new image(1,1)  // Creates a new image
var infoNeeded = ?referrer= + document.referer // Sets infoNeeded to
?referrer=theReferringDocument
infoNeeded = infoNeeded + port= + document.port // appends any other
needed info to infoNeeded
// This code will make the src for the new image call a CF page.  This page
should return an image.
// the code on this page can do whatever you want with the info passed.
newImage.src=http://yourdomain.com/yourColdFusionPage.cfm; + infoNeeded
//This code will run when the page is loaded, or you can put it in a
function and call it with onLoad in the body tag.
/script



- Original Message -
From: James Blaha [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, July 29, 2002 10:45 AM
Subject: Re: Issue: Update a tracker database with an index.html file.


  

Ian, My case is also the the index.html file is on a non CF box.  How do
you do what you do? You capture the same information I'm looking for?

James Blaha

Ian Lurie wrote:



Hrm. I guess you can do that but the reason we went the JavaScript route
  

was
  

for clients who have index.html files on non-CF servers.

I may have misunderstood. Sorry about that...

-Original Message-
From: WebMaster [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 29, 2002 7:00 AM
To: CF-Talk
Subject: Re: Issue: Update a tracker database with an index.html file.


sure it will work. just map .html to cf

- Original Message -
From: Ian Lurie [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, July 29, 2002 9:47 AM
Subject: RE: Issue: Update a tracker database with an index.html file.


  

This won't work if the file is an index.html file - your server won't
recognize the pound signs.

We've gotten around this using Javascript:

!--- begin XED clickthru measurement script ---
script language=javascript
function PageQuery(q) {
if(q.length  1) this.q = q.substring(1, q.length);
else this.q = null;
this.keyValuePairs = new Array();
if(q) {
for(var i=0; i  this.q.split().length; i++) {
this.keyValuePairs[i] = this.q.split()[i];
}
}
this.getKeyValuePairs = function() { return this.keyValuePairs; }
this.getValue = function(s) {
for(var j=0; j  this.keyValuePairs.length; j++) {
if(this.keyValuePairs[j].split(=)[0] == s)
return this.keyValuePairs[j].split(=)[1];
}
return false;
}
this.getParameters = function() {
var a = new Array(this.getLength());
for(var j=0; j  this.keyValuePairs.length; j++) {
a[j] = this.keyValuePairs[j].split(=)[0];
}
return a;
}
this.getLength = function() { return this.keyValuePairs.length; }
}
function queryString(key){
var page = new PageQuery(window.location.search);
return unescape(page.getValue(key));
}
function displayItem(key){
if(queryString(key)=='false')
{
var me = 1;
}
else
{
var nnn = queryString(key);
document.write('img
src=http://blahblahblah/recorder/clickrecorder.cfm?ID=' + nnn +
'page=home width=1 height=1');
}
}
displayItem('ID');
/script


You can rebuild this, I think, to grab the referring page...

Ian

-Original Message-
From: WebMaster [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 29, 2002 6:44 AM
To: CF-Talk
Subject: Re: Issue: Update a tracker database with an index.html file.


Use an image tag.  The src=  can be your CF code which returns a gif.


Gif
  

could be transparent.  Pass all your user info to the cf page.
Ex:cfoutput
img



src=mycfUserINfoPage.cfm?referrer=#cgi.referer#whateverElse=#wewew#

  

width=0 heifht=0 border=0
/cfoutput

- Original Message -
From: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, July 29, 2002 9:25 AM
Subject: Re: Issue: Update a tracker database with an index.html file.




I've never gotten SSI to kick off a .cfm page successfully, how did you

  

do

  

this Isaac or .. are you just suggesting this without having tried this
for yosuelf?

~Todd

On Mon, 29 Jul 2002, S. Isaac Dealey wrote:

  

If they're installed, you could use a server side include (SSI) tag to
include the ColdFusion module where you want the counter to appear.



This

  

is



done with hit counters written in PERL to display plain-text hit



counts

  

rather than those 

Re: cf based blogs

2002-07-30 Thread Bryan F. Hogan

cool, thanks

-Original Message-
From: [EMAIL PROTECTED] [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Date: Tuesday, July 30, 2002 1:11 PM
Subject: Re: cf based blogs


A web diary. Also called a web log (web+log=blog). Basically, it's a diary
of whatever you want to write about for public view.


 What is a blog?


 -Original Message-
 From: Owens, Howard [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Date: Tuesday, July 30, 2002 12:57 PM
 Subject: RE: cf based blogs


 I rolled my own blog in CF.
 
 The initial construction took about 10 or 12 hours (including comment
 component, feedback, plus design, etc).  I've got another 3 or 5 hours
in
 it
 since just refining things.
 
 It's at www.globalnewswatch.com
 
 
 


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX Taking all CPU Resources?

2002-07-30 Thread Joe Eugene

Stace,
No..Not Client Scope. That would be a real big problem..(client
scope WDDX)... if all this
turns out to be true(WDDX Serialize - Deserialize) performance
in CFMX unless there
is an optmized way(cfmx) to code WDDX. Yea.. WDDX in client scope is
great...
The App am dealing with...WDDX is written to the database for
Content MGMT,
i didnt code this.. am not sure.. why the developer used this
method..The data
is even redundant.
Have you had a chance to LOAD TEST any Client Scope WDDX in CFMX..?
Curious?
Joe

- Original Message -
From: Stacy Young [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 12:10 PM
Subject: RE: CFMX Taking all CPU Resources?


 Hey Joe I'm curious...these objects...are they wddx packets stored in
client
 scope which in turn is in your client variable datasource?

 Stace


 -Original Message-
 From: Joe Eugene [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 11:54 AM
 To: CF-Talk
 Subject: Re: CFMX Taking all CPU Resources?

 Sean,
 I havent come to a final test result.. but i think we are
narrowing
 it
 down to the Complex Object(WDDX) returned from the data store
 that gets parsed out WDDX2CFML..
 Custom Tags are probably running ok/fast.. probably its the WDDX
 parsing..in CFMX that causes the CPU to run 80-90%... Atleast we
 are seeing a pattern here with tests.
 I will try to write case/result...end of this week or so.
 Is it possible that you can find out..
 How the Java Implementation of WDDX2CFML has changed in CFMX?
 Any WDDX implementation changes(Not in docs) will be helpful.
 Thanks
 Joe

 - Original Message -
 From: Sean A Corfield [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Tuesday, July 30, 2002 11:00 AM
 Subject: Re: CFMX Taking all CPU Resources?


  On Tuesday, July 30, 2002, at 07:26 , Joe Eugene wrote:
   Do you know of any internal WDDX implementation differences
   between
   CFMX and CF5.0 .. CFMX
 
  Er, yes, it was written in C/C++ in CF5 and it's been rewritten in Java
in
  CFMX. As has everything else. Read my lips Joe: CFMX is a complete
 rewrite.
 
   What does #1 mean?
 
  I don't know. I don't use JavaScript with queries so I don't know what
the
  behavior was or how it changed.
 
   If WDDX data is Stored in a DB and output using custom tags..
is
   there any internal CFMX
   implementation that would degrade performance compared to
CF5.0?
 
  Well, custom tag invocations are faster in CFMX than in CF5. I have no
  idea about WDDX. Do you *think* it is slower? Have you written a test
case
  and *proved* there is a noticeable difference? Why don't you try it for
  yourself.
 
  Sean A Corfield -- http://www.corfield.org/blog/
 
  If you're not annoying somebody, you're not really alive.
  -- Margaret Atwood
 
 

 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFX_CyberCash

2002-07-30 Thread Dave Carabetta

 You might look at http://www.cfxoncrcybercash.com/ we've used the
 tag on Solaris (the tag works on NT and Linux too).
 
 I haven't tried it on CFMX yet.

i could barely navigate their site, plus it looks like it's been
abandoned.  if you do try it on CFMX i'd love to hear if it works,
but for $299 i think i'd rather write my own if at all possible.

At last check, CFX_CyberCash is going by the wayside. When VeriSign acquired 
CyberCash back in the day, they made a concerted effort to get people to 
convert to their PayFlow and PayFlow Link services. Part of this concerted 
effort was to not make any updates to the CyberCash tag to smoothly 
integrate into their new systems.

I think the servers that the CFX tag uses no longer exist. I could be wrong 
on that -- I just remember somebody posting something to this effect a while 
back.

Personally speaking, if you're building a medium to high-volume application 
using secure CC transactions, look into VeriSign's PayFlow services. While I 
know there are alternatives that people have mentioned and are quite happy 
with, I've found that customers seem to recognize the VeriSign brand as a 
trusted name and are more comfortable placing orders as a result.

Just my opinion, but hope this helps nonetheless.

Regards,
Dave.


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Scoping variables

2002-07-30 Thread Matt Liotta

I have never run into the problems directly as I never explicitly use
the variables scope. However, I have seen emails on this list and others
about the problems. Unfortunately, the best I can do is tell you to
search the archives.

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.montarasoftware.com/
V: 415-577-8070
F: 415-341-8906
P: [EMAIL PROTECTED]

 -Original Message-
 From: Dave Watts [mailto:[EMAIL PROTECTED]]
 Sent: Monday, July 29, 2002 6:04 PM
 To: CF-Talk
 Subject: RE: Scoping variables
 
  However, there are currently some bugs in CFMX related to the
  use of explicit variables scoping.
 
 Could you provide more details, off the top of your head? I haven't
run
 into
 those problems yet (probably due to my own laziness in explicitly
scoping
 local variables, generally).
 
 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
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFX_Ping

2002-07-30 Thread Ryan Pieszak

Hello,
Try this...
http://nt1.superb.net/CFM/ping.html
We also use this one, pretty neat tag...
http://nt1.superb.net/CFM/traceroute.html
Hope this helps...
Ryan

~|-Original Message-
~|From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
~|Sent: Tuesday, July 30, 2002 1:00 PM
~|To: CF-Talk
~|Subject: CFX_Ping
~|
~|
~|Hello All,
~|  Last week there was talk about the CFX_Ping custom tag.  I am
~|trying to download it from Macromedia but I am getting  a The page
~|cannot be displayed.
~|
~|I am wondering if anyone here has the tag that would be able 
~|to send it
~|to me or give me a link that works.
~|
~|Thanks.
~|
~| 
~| 
~|==
~|Joel Blanchette
~|IT and System Specialist
~|Point of Impact Technologies Inc.
~|Tel: (204) 989-0013
~|Email: [EMAIL PROTECTED]
~|==
~|
~|
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Passing multiple values back from popup?

2002-07-30 Thread Douglas Brown

You will need to use js to do it.


Basically, 

in your popup window you will put a script in like so

script
function writeResults(){
opener.document.formName.fieldName.value = document.formName.fieldName.value;
window.close();
}

and then call the function in your submit button



Douglas Brown
Email: [EMAIL PROTECTED]
- Original Message - 
From: Kris Pilles [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 9:57 AM
Subject: Passing multiple values back from popup?


 I'm trying to pass multiple values back to my form from a popup...
 Bascialyl I want to pass the value and the display of my select from the
 popup back to the form Can anyone tell me how to do this???
 
 
 
 -Original Message-
 From: Thane Sherrington [mailto:[EMAIL PROTECTED]] 
 Sent: Tuesday, July 30, 2002 12:52 PM
 To: CF-Talk
 Subject: Re: How to Display a Page incase of Timeout?
 
 
 At 12:48 PM 7/30/02 -0400, Paul wrote:
 Thanks for the reply Isaac,
 
  I tried placing the following code in the application.cfm page but
  the user is not logged in until they enter the members area of the
 site. 
  Will this code work outside of the application page? Currently the 
  loginid is not declared in the application page.
 
 cflock scope=session type=readonly timeout=10
 cfset loggedin = YesNoFormat(IsDefined(session.loginid))
 /cflock
 
 cfif not loggedin
 cfinclude template=loginform.cfmcfabort
 /cfif
 
 I'm not sure what you're doing here, but you could do:
 
 cflock scope=session type=readonly timeout=10
  cfif not IsDefined(Session.LoginID)
  cfinclude template=loginform.cfm
  [Put your various closing stuff here /body /html
 etc, 
 if not in your loginform.cfm file.]
  cfabort
  /cfif
 /cflock
 
 If you put this code (and the login code) in your application.cfm file,
 it 
 will run on every page, protecting each.
 
 
 T
 
 
 
 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFX_CyberCash

2002-07-30 Thread Shawn Kernes

I am still using CFX_CyberCash... haven't had any problems with it but there
is no support if you do run into a problem...




-Original Message-
From: Dave Carabetta [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 30, 2002 10:16 AM
To: CF-Talk
Subject: Re: CFX_CyberCash


 You might look at http://www.cfxoncrcybercash.com/ we've used the
 tag on Solaris (the tag works on NT and Linux too).
 
 I haven't tried it on CFMX yet.

i could barely navigate their site, plus it looks like it's been
abandoned.  if you do try it on CFMX i'd love to hear if it works,
but for $299 i think i'd rather write my own if at all possible.

At last check, CFX_CyberCash is going by the wayside. When VeriSign acquired
CyberCash back in the day, they made a concerted effort to get people to
convert to their PayFlow and PayFlow Link services. Part of this concerted
effort was to not make any updates to the CyberCash tag to smoothly
integrate into their new systems.

I think the servers that the CFX tag uses no longer exist. I could be wrong
on that -- I just remember somebody posting something to this effect a while
back.

Personally speaking, if you're building a medium to high-volume application
using secure CC transactions, look into VeriSign's PayFlow services. While I
know there are alternatives that people have mentioned and are quite happy
with, I've found that customers seem to recognize the VeriSign brand as a
trusted name and are more comfortable placing orders as a result.

Just my opinion, but hope this helps nonetheless.

Regards,
Dave.



__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFX_Ping

2002-07-30 Thread Ryan Pieszak

Sorry, after I sent the last email I realized there were no dl links on that
page.  I have the zip files for cfx_ping and cfx_traceroute.  Email me
directly if you would like them.  Sorry again.  Ryan

~|-Original Message-
~|From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
~|Sent: Tuesday, July 30, 2002 1:00 PM
~|To: CF-Talk
~|Subject: CFX_Ping
~|
~|
~|Hello All,
~|  Last week there was talk about the CFX_Ping custom tag.  I am
~|trying to download it from Macromedia but I am getting  a The page
~|cannot be displayed.
~|
~|I am wondering if anyone here has the tag that would be able 
~|to send it
~|to me or give me a link that works.
~|
~|Thanks.
~|
~| 
~| 
~|==
~|Joel Blanchette
~|IT and System Specialist
~|Point of Impact Technologies Inc.
~|Tel: (204) 989-0013
~|Email: [EMAIL PROTECTED]
~|==
~|
~|
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFX_Ping

2002-07-30 Thread Ryan Pieszak

Okay, sorry for so many posts, but I found some links...
CFX_Ping:
http://devex.macromedia.com/developer/gallery/info.cfm?ID=CA347266-2830-11D4
-AA9700508B94F380method=Download
CFX_TraceRoute:
http://devex.macromedia.com/developer/gallery/info.cfm?ID=CA347267-2830-11D4
-AA9700508B94F380method=Download
(watch for url wrap)
If these links don't wory, email me directly for the zip files...
Ryan

~|-Original Message-
~|From: Ryan Pieszak [mailto:[EMAIL PROTECTED]]
~|Sent: Tuesday, July 30, 2002 1:21 PM
~|To: CF-Talk
~|Subject: RE: CFX_Ping
~|
~|
~|Sorry, after I sent the last email I realized there were no 
~|dl links on that
~|page.  I have the zip files for cfx_ping and cfx_traceroute.  Email me
~|directly if you would like them.  Sorry again.  Ryan
~|
~|~|-Original Message-
~|~|From: Joel Blanchette [mailto:[EMAIL PROTECTED]]
~|~|Sent: Tuesday, July 30, 2002 1:00 PM
~|~|To: CF-Talk
~|~|Subject: CFX_Ping
~|~|
~|~|
~|~|Hello All,
~|~|Last week there was talk about the CFX_Ping custom tag.  I am
~|~|trying to download it from Macromedia but I am getting  a The page
~|~|cannot be displayed.
~|~|
~|~|I am wondering if anyone here has the tag that would be able 
~|~|to send it
~|~|to me or give me a link that works.
~|~|
~|~|Thanks.
~|~|
~|~| 
~|~| 
~|~|==
~|~|Joel Blanchette
~|~|IT and System Specialist
~|~|Point of Impact Technologies Inc.
~|~|Tel: (204) 989-0013
~|~|Email: [EMAIL PROTECTED]
~|~|==
~|~|
~|~|
~|
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Taking all CPU Resources?

2002-07-30 Thread Stacy Young

No I haven't...but if that were the case in your instance I would have
suggested storing complex objects in session scope in cfmx rather then
client wddx packets...but in your case it's obvious that's not applicable.

I don't use all to much wddx, sorry can't contribute on that front...

Stace

-Original Message-
From: Joe Eugene [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 30, 2002 1:15 PM
To: CF-Talk
Subject: Re: CFMX Taking all CPU Resources?

Stace,
No..Not Client Scope. That would be a real big problem..(client
scope WDDX)... if all this
turns out to be true(WDDX Serialize - Deserialize) performance
in CFMX unless there
is an optmized way(cfmx) to code WDDX. Yea.. WDDX in client scope is
great...
The App am dealing with...WDDX is written to the database for
Content MGMT,
i didnt code this.. am not sure.. why the developer used this
method..The data
is even redundant.
Have you had a chance to LOAD TEST any Client Scope WDDX in CFMX..?
Curious?
Joe

- Original Message -
From: Stacy Young [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, July 30, 2002 12:10 PM
Subject: RE: CFMX Taking all CPU Resources?


 Hey Joe I'm curious...these objects...are they wddx packets stored in
client
 scope which in turn is in your client variable datasource?

 Stace


 -Original Message-
 From: Joe Eugene [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 11:54 AM
 To: CF-Talk
 Subject: Re: CFMX Taking all CPU Resources?

 Sean,
 I havent come to a final test result.. but i think we are
narrowing
 it
 down to the Complex Object(WDDX) returned from the data store
 that gets parsed out WDDX2CFML..
 Custom Tags are probably running ok/fast.. probably its the WDDX
 parsing..in CFMX that causes the CPU to run 80-90%... Atleast we
 are seeing a pattern here with tests.
 I will try to write case/result...end of this week or so.
 Is it possible that you can find out..
 How the Java Implementation of WDDX2CFML has changed in CFMX?
 Any WDDX implementation changes(Not in docs) will be helpful.
 Thanks
 Joe

 - Original Message -
 From: Sean A Corfield [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Tuesday, July 30, 2002 11:00 AM
 Subject: Re: CFMX Taking all CPU Resources?


  On Tuesday, July 30, 2002, at 07:26 , Joe Eugene wrote:
   Do you know of any internal WDDX implementation differences
   between
   CFMX and CF5.0 .. CFMX
 
  Er, yes, it was written in C/C++ in CF5 and it's been rewritten in Java
in
  CFMX. As has everything else. Read my lips Joe: CFMX is a complete
 rewrite.
 
   What does #1 mean?
 
  I don't know. I don't use JavaScript with queries so I don't know what
the
  behavior was or how it changed.
 
   If WDDX data is Stored in a DB and output using custom tags..
is
   there any internal CFMX
   implementation that would degrade performance compared to
CF5.0?
 
  Well, custom tag invocations are faster in CFMX than in CF5. I have no
  idea about WDDX. Do you *think* it is slower? Have you written a test
case
  and *proved* there is a noticeable difference? Why don't you try it for
  yourself.
 
  Sean A Corfield -- http://www.corfield.org/blog/
 
  If you're not annoying somebody, you're not really alive.
  -- Margaret Atwood
 
 

 

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFXImage not CFX_Image

2002-07-30 Thread Bryan Stevenson

Hey All,

Well I have discovered the other image tag CFXImage (not to be confused
with CFX_Image).  I got my hands on version 1.6.6.3, but I need the current
version (1.6.6.6 I think) which has a security fix to stop users from
potentially gaining access to ALL files on the partition that it resides on.

The current version should come from www.gafware.com, but it was down
yesterday and today!!

So if anybody has a current version, please pass it along offlist.

BTW  Does anybody have experience with both tags?  Any comments would be
great.

Thanks in advance

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

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Taking all CPU Resources?

2002-07-30 Thread Matt Liotta

I have successfully been able to achieve great performance out of WDDX
intensive applications using CF 4.5, 5, and MX.

Matt Liotta
President  CEO
Montara Software, Inc.
http://www.montarasoftware.com/
V: 415-577-8070
F: 415-341-8906
P: [EMAIL PROTECTED]

 -Original Message-
 From: Joe Eugene [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 30, 2002 10:15 AM
 To: CF-Talk
 Subject: Re: CFMX Taking all CPU Resources?
 
 Stace,
 No..Not Client Scope. That would be a real big
problem..(client
 scope WDDX)... if all this
 turns out to be true(WDDX Serialize - Deserialize)
performance
 in CFMX unless there
 is an optmized way(cfmx) to code WDDX. Yea.. WDDX in client
scope
 is
 great...
 The App am dealing with...WDDX is written to the database for
 Content MGMT,
 i didnt code this.. am not sure.. why the developer used this
 method..The data
 is even redundant.
 Have you had a chance to LOAD TEST any Client Scope WDDX in
 CFMX..?
 Curious?
 Joe
 
 - Original Message -
 From: Stacy Young [EMAIL PROTECTED]
 To: CF-Talk [EMAIL PROTECTED]
 Sent: Tuesday, July 30, 2002 12:10 PM
 Subject: RE: CFMX Taking all CPU Resources?
 
 
  Hey Joe I'm curious...these objects...are they wddx packets stored
in
 client
  scope which in turn is in your client variable datasource?
 
  Stace
 
 
  -Original Message-
  From: Joe Eugene [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, July 30, 2002 11:54 AM
  To: CF-Talk
  Subject: Re: CFMX Taking all CPU Resources?
 
  Sean,
  I havent come to a final test result.. but i think we are
 narrowing
  it
  down to the Complex Object(WDDX) returned from the data
store
  that gets parsed out WDDX2CFML..
  Custom Tags are probably running ok/fast.. probably its the
WDDX
  parsing..in CFMX that causes the CPU to run 80-90%...
Atleast we
  are seeing a pattern here with tests.
  I will try to write case/result...end of this week or so.
  Is it possible that you can find out..
  How the Java Implementation of WDDX2CFML has changed in
CFMX?
  Any WDDX implementation changes(Not in docs) will be
helpful.
  Thanks
  Joe
 
  - Original Message -
  From: Sean A Corfield [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Tuesday, July 30, 2002 11:00 AM
  Subject: Re: CFMX Taking all CPU Resources?
 
 
   On Tuesday, July 30, 2002, at 07:26 , Joe Eugene wrote:
Do you know of any internal WDDX implementation
differences
between
CFMX and CF5.0 .. CFMX
  
   Er, yes, it was written in C/C++ in CF5 and it's been rewritten in
 Java
 in
   CFMX. As has everything else. Read my lips Joe: CFMX is a complete
  rewrite.
  
What does #1 mean?
  
   I don't know. I don't use JavaScript with queries so I don't know
what
 the
   behavior was or how it changed.
  
If WDDX data is Stored in a DB and output using custom
 tags..
 is
there any internal CFMX
implementation that would degrade performance compared
to
 CF5.0?
  
   Well, custom tag invocations are faster in CFMX than in CF5. I
have no
   idea about WDDX. Do you *think* it is slower? Have you written a
test
 case
   and *proved* there is a noticeable difference? Why don't you try
it
 for
   yourself.
  
   Sean A Corfield -- http://www.corfield.org/blog/
  
   If you're not annoying somebody, you're not really alive.
   -- Margaret Atwood
  
  
 
 
 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFXImage not CFX_Image

2002-07-30 Thread Wallick, Mike

I'd be interested in that tag too.

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 30, 2002 12:42 PM
To: CF-Talk
Subject: CFXImage not CFX_Image


Hey All,

Well I have discovered the other image tag CFXImage (not to be confused
with CFX_Image).  I got my hands on version 1.6.6.3, but I need the current
version (1.6.6.6 I think) which has a security fix to stop users from
potentially gaining access to ALL files on the partition that it resides on.

The current version should come from www.gafware.com, but it was down
yesterday and today!!

So if anybody has a current version, please pass it along offlist.

BTW  Does anybody have experience with both tags?  Any comments would be
great.

Thanks in advance

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

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF 4.5 vs 5 on iPlanet?

2002-07-30 Thread Chris Norloff

I need configure information for ColdFusion 5 on iPlanet (on Solaris). I'm familiar 
with 4.5.2, but now need to write installation/configuration documentation for version 
5 but can't install it anywhere.  :-0

Anybody know the differences, if any, for CF 5 on iPlanet?  Can you send me your 
mime.types and obj.conf files so I can check the CF entries?

thanks,
Chris Norloff

P.S. Next week I think I'll write a book on Brain Surgery.  Anybody know anything 
about it?


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX Taking all CPU Resources?

2002-07-30 Thread Sean A Corfield

On Tuesday, July 30, 2002, at 08:54 , Joe Eugene wrote:
 I havent come to a final test result.. but i think we are 
 narrowing
 it
 down to the Complex Object(WDDX) returned from the data store
 that gets parsed out WDDX2CFML..

OK, that sounds like good progress so maybe we'll all stop ragging on you 
:)

 Custom Tags are probably running ok/fast.. probably its the WDDX
 parsing..in CFMX that causes the CPU to run 80-90%... Atleast we
 are seeing a pattern here with tests.

Hmm, interesting. That should be pretty easy to performance test.

 Is it possible that you can find out..
 How the Java Implementation of WDDX2CFML has changed in CFMX?

Well, it's apples and oranges... in CF5, WDDX2CFML was written in C/C++ 
and now it's completely rewritten in Java. It's just... different code. I'
m not on the product team so I don't have access to the source.

 Any WDDX implementation changes(Not in docs) will be helpful.

It's Unicode capable now - but that's just by virtue of it being 
implemented in Java. As far as I know, there were no specific behavioral 
changes (except what's in the release notes etc).

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

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

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CFMX Taking all CPU Resources?

2002-07-30 Thread Sean A Corfield

On Tuesday, July 30, 2002, at 10:14 , Joe Eugene wrote:
 The App am dealing with...WDDX is written to the database for
 Content MGMT,
 i didnt code this.. am not sure.. why the developer used this
 method..The data
 is even redundant.

Sounds like Spectra :)


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

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

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



precompiling templates

2002-07-30 Thread Brook Davies

Here goes again:

Does anyone have a script to automate the compilation of cf templates. I
tried this one from Robert Everland, but it does not work on my system. Has 
anyone else tried it (care to?), does it work for you?

@setlocal
set NEO_INSTALL=f:\cfusionMX
set PATH=%NEO_INSTALL%\runtime\bin;%PATH%
java -classpath %NEO_INSTALL%\lib\cfusion.jar 
coldfusion.tools.Compiler  -webroot %NEO_INSTALL%\wwwroot %*
@endlocal


Brook Davies
maracasmedia inc.

At 12:43 PM 30/07/02 -0500, you wrote:
I'd be interested in that tag too.

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 30, 2002 12:42 PM
To: CF-Talk
Subject: CFXImage not CFX_Image


Hey All,

Well I have discovered the other image tag CFXImage (not to be confused
with CFX_Image).  I got my hands on version 1.6.6.3, but I need the current
version (1.6.6.6 I think) which has a security fix to stop users from
potentially gaining access to ALL files on the partition that it resides on.

The current version should come from www.gafware.com, but it was down
yesterday and today!!

So if anybody has a current version, please pass it along offlist.

BTW  Does anybody have experience with both tags?  Any comments would be
great.

Thanks in advance

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

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com



__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



SQL Help

2002-07-30 Thread James Blaha

Can any one help me out here? I'm having a problem getting this query to 
work with putting in the proper commas when necessary in myWHERE clause 
for the SQL statement.

James Blaha

CFQUERY name=JobApplicants datasource=ABC
SELECT  *

FROM HRWebAgent.tApply

WHERE   ReqNO  0

CFIF #form.ReqNo# NEQ 0
AND(ReqNo='#ReqNo#'),
/CFIF

CFIF #form.FIRSTNAME# NEQ 0
AND(FIRSTNAME LIKE '#FIRSTNAME#%'),
/CFIF

CFIF #form.LASTNAME# NEQ 0
AND(LASTNAME LIKE '#LASTNAME#%'),
/CFIF

CFIF #form.APPLIED_DATE# NEQ 0
!--- Dates go in order of old:recent i.e. BETWEEN 
'11/4/2000' AND '6/18/2001' ---
AND(APPLIED_DATE BETWEEN '#back_date_listed2#' AND 
'#now_date2#'),
/CFIF


CFIF #form.Desired_Position# NEQ 0
!--- Desired_Position IN ('Briarcliff','New York') ---
AND(Desired_Position IN 
(#ListQualify(Form.Desired_Position,')#)),
/CFIF



/CFQUERY

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFMX Documentation, Sessions and Locking

2002-07-30 Thread Stacy Young

Ok Folks I have a comment and a question.

 

1)  The documentation is not accurate concerning persistence of session
variables when using J2EE session variables. Variables in these scopes are
not shared by servers in a cluster.  The document should point out that
this IS possible by using J2EE sessions and a server buddy-list as per the
Jrun documentation on customizing session storage/management.

2)  With CFMX I've begun to use the session scope (J2EE Sessions) now
that it's been deemed safe without cumbersome locking. What about
application scope? I know the documentation suggests locking but is that a
proven fact or are folks just covering their butts?  ;-)

 

Appreciate any input,

 

Stace



AVIS IMPORTANT: 
---
Les informations contenues dans le present document et ses pieces jointes sont 
strictement confidentielles et reservees a l'usage de la (des) personne(s) a qui il 
est adresse. Si vous n'etes pas le destinataire, soyez avise que toute divulgation, 
distribution, copie, ou autre utilisation de ces informations est strictement 
prohibee.  Si vous avez recu ce document par erreur, veuillez s'il vous plait 
communiquer immediatement avec l'expediteur et detruire ce document sans en faire de 
copie sous quelque forme.

WARNING:  
---
The information contained in this document and attachments is confidential and 
intended only for the person(s) named above.  If you are not the intended recipient 
you are hereby notified that any disclosure, copying, distribution, or any other use 
of the information is strictly prohibited.  If you have received this document by 
mistake, please notify the sender immediately and destroy this document and 
attachments without making any copy of any kind.


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: SQL Help

2002-07-30 Thread Clint Tredway

Take out the commas and all will be good.

HTH
Clint Tredway

- Original Message --
from: James Blaha [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
date: Tue, 30 Jul 2002 14:28:52 -0400

Can any one help me out here? I'm having a problem getting this query to 
work with putting in the proper commas when necessary in myWHERE clause 
for the SQL statement.

James Blaha

CFQUERY name=JobApplicants datasource=ABC
SELECT  *

FROM HRWebAgent.tApply

WHERE   ReqNO  0

CFIF #form.ReqNo# NEQ 0
AND(ReqNo='#ReqNo#'),
/CFIF

CFIF #form.FIRSTNAME# NEQ 0
AND(FIRSTNAME LIKE '#FIRSTNAME#%'),
/CFIF

CFIF #form.LASTNAME# NEQ 0
AND(LASTNAME LIKE '#LASTNAME#%'),
/CFIF

CFIF #form.APPLIED_DATE# NEQ 0
!--- Dates go in order of old:recent i.e. BETWEEN 
'11/4/2000' AND '6/18/2001' ---
AND(APPLIED_DATE BETWEEN '#back_date_listed2#' AND 
'#now_date2#'),
/CFIF


CFIF #form.Desired_Position# NEQ 0
!--- Desired_Position IN ('Briarcliff','New York') ---
AND(Desired_Position IN 
(#ListQualify(Form.Desired_Position,')#)),
/CFIF



/CFQUERY


__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SQL Help

2002-07-30 Thread Janine Jakim

You shouldn't have the commas in there- you're using and clauses so try 
WHERE   ReqNO  0

CFIF #form.ReqNo# NEQ 0
AND(ReqNo='#ReqNo#')
/CFIF
CFIF #form.FIRSTNAME# NEQ 0
AND(FIRSTNAME LIKE '#FIRSTNAME#%')
/CFIF
and on and on and on.

-Original Message-
From: James Blaha [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 30, 2002 2:29 PM
To: CF-Talk
Subject: SQL Help


Can any one help me out here? I'm having a problem getting this query to 
work with putting in the proper commas when necessary in myWHERE clause 
for the SQL statement.

James Blaha

CFQUERY name=JobApplicants datasource=ABC
SELECT  *

FROM HRWebAgent.tApply

WHERE   ReqNO  0

CFIF #form.ReqNo# NEQ 0
AND(ReqNo='#ReqNo#'),
/CFIF

CFIF #form.FIRSTNAME# NEQ 0
AND(FIRSTNAME LIKE '#FIRSTNAME#%'),
/CFIF

CFIF #form.LASTNAME# NEQ 0
AND(LASTNAME LIKE '#LASTNAME#%'),
/CFIF

CFIF #form.APPLIED_DATE# NEQ 0
!--- Dates go in order of old:recent i.e. BETWEEN 
'11/4/2000' AND '6/18/2001' ---
AND(APPLIED_DATE BETWEEN '#back_date_listed2#' AND 
'#now_date2#'),
/CFIF


CFIF #form.Desired_Position# NEQ 0
!--- Desired_Position IN ('Briarcliff','New York') ---
AND(Desired_Position IN 
(#ListQualify(Form.Desired_Position,')#)),
/CFIF



/CFQUERY


__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SQL Help

2002-07-30 Thread Ben Doom

: Can any one help me out here? I'm having a problem getting this query to 
: work with putting in the proper commas when necessary in myWHERE clause 
: for the SQL statement.

Don't put commas in the where clause.  :-)



  --Ben Doom 
Programmer  General Lackey
Moonbow Software
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: precompiling templates

2002-07-30 Thread Bryan F. Hogan

I like the idea, would love to know also.

-Original Message-
From: Brook Davies [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Date: Tuesday, July 30, 2002 2:35 PM
Subject: precompiling templates


Here goes again:

Does anyone have a script to automate the compilation of cf templates. I
tried this one from Robert Everland, but it does not work on my system. Has
anyone else tried it (care to?), does it work for you?
---
-
@setlocal
set NEO_INSTALL=f:\cfusionMX
set PATH=%NEO_INSTALL%\runtime\bin;%PATH%
java -classpath %NEO_INSTALL%\lib\cfusion.jar
coldfusion.tools.Compiler  -webroot %NEO_INSTALL%\wwwroot %*
@endlocal
---
-

Brook Davies
maracasmedia inc.

At 12:43 PM 30/07/02 -0500, you wrote:
I'd be interested in that tag too.

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 30, 2002 12:42 PM
To: CF-Talk
Subject: CFXImage not CFX_Image


Hey All,

Well I have discovered the other image tag CFXImage (not to be confused
with CFX_Image).  I got my hands on version 1.6.6.3, but I need the
current
version (1.6.6.6 I think) which has a security fix to stop users from
potentially gaining access to ALL files on the partition that it resides
on.

The current version should come from www.gafware.com, but it was down
yesterday and today!!

So if anybody has a current version, please pass it along offlist.

BTW  Does anybody have experience with both tags?  Any comments would be
great.

Thanks in advance

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

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com




__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Filtering query results

2002-07-30 Thread Yexley Robert D Contr Det 1 AFRL/WSI

In the application that I'm working on, I have a need to filter the results of a query 
that get displayed on the screen, changing the selectable options for the user.  I 
have a default query that populates a SELECT list, and under that list I have three 
hyperlinks that will allow a user to click on them to execute a different query to 
show different results in the list for them to choose from.

I'm still pretty new to ColdFusion, and I'm not really sure what's the best way to 
implement this functionality, and was hoping for some ideas from anyone.  The query 
that gets executed is basically the same, only the WHERE clause changes.  I've tried 
just dynamically changing the WHERE clause using cfif checking based on a URL 
parameter, but didn't have much luck with that.  Then I tried actually creating the 
three separate queries, and just changing the query parameter of my loop for the list 
values, using cfswitch checking to set the query parameter based on a URL parameter. 
 That didn't give me much luck either.  I'm just not sure how to best go about doing 
this.

Does anyone happen to know of any articles online, or tutorials that might explain 
something close to how to do this?  How to I create a .cfm page to accept a parameter 
by default to tell it which query to execute?  Any help or thoughts would be greatly 
appreciated.  Thanks.

::YEX::

/*
|| Robert D. Yexley
|| Oracle Programmer/Analyst
|| Easylink Services Corporation
|| Professional Services
|| Contractor - Wright Research Site MIS
|| Det-1 AFRL/WSI Bldg. 45 Rm. 062
|| (937) 255-1984
|| [EMAIL PROTECTED]
|| )))
*/

 Robert D. Yexley (E-mail).vcf 

__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: precompiling templates

2002-07-30 Thread Critter

oi Brook!!

i believe that script only works in the cfmx root...


-- 
Critz
 Macromedia Certified Advanced ColdFusion Developer
 CFX_BotMaster Network=Efnet Channel=ColdFusion





Tuesday, July 30, 2002, 2:42:35 PM, you wrote:

BD Here goes again:

BD Does anyone have a script to automate the compilation of cf templates. I
BD tried this one from Robert Everland, but it does not work on my system. Has 
BD anyone else tried it (care to?), does it work for you?
BD 
BD @setlocal
BD set NEO_INSTALL=f:\cfusionMX
BD set PATH=%NEO_INSTALL%\runtime\bin;%PATH%
BD java -classpath %NEO_INSTALL%\lib\cfusion.jar 
BD coldfusion.tools.Compiler  -webroot %NEO_INSTALL%\wwwroot %*
BD @endlocal
BD 

BD Brook Davies
BD maracasmedia inc.

BD At 12:43 PM 30/07/02 -0500, you wrote:
I'd be interested in that tag too.

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 30, 2002 12:42 PM
To: CF-Talk
Subject: CFXImage not CFX_Image


Hey All,

Well I have discovered the other image tag CFXImage (not to be confused
with CFX_Image).  I got my hands on version 1.6.6.3, but I need the current
version (1.6.6.6 I think) which has a security fix to stop users from
potentially gaining access to ALL files on the partition that it resides on.

The current version should come from www.gafware.com, but it was down
yesterday and today!!

So if anybody has a current version, please pass it along offlist.

BTW  Does anybody have experience with both tags?  Any comments would be
great.

Thanks in advance

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

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com



BD 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFMX Documentation, Sessions and Locking

2002-07-30 Thread Raymond Camden

 1)  The documentation is not accurate concerning 
 persistence of session
 variables when using J2EE session variables. Variables in 
 these scopes are
 not shared by servers in a cluster.  The document should 
 point out that
 this IS possible by using J2EE sessions and a server 
 buddy-list as per the
 Jrun documentation on customizing session storage/management.

I think the idea is that - by default, they are not shared over a
cluster - and there is no DIRECT or SUPPORTED way of doing it. In other
words, you can do it, but not via the CF Admin and we won't support your
efforts in that regard.


 2)  With CFMX I've begun to use the session scope (J2EE 
 Sessions) now
 that it's been deemed safe without cumbersome locking. What about
 application scope? I know the documentation suggests locking 
 but is that a
 proven fact or are folks just covering their butts?  ;-)

Yes, all the scopes are safe now, including Application and Server. You
can even cfdump the server scope.

===
Raymond Camden, ColdFusion Jedi Master for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

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


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SQL Help

2002-07-30 Thread Jim Vosika

Just remove the commas. You shouldn't need them...

HTH, 
Jim Vosika
http://tinyclick.com
Free URL Shortening!

-Original Message-
From: James Blaha [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 30, 2002 1:29 PM
To: CF-Talk
Subject: SQL Help

Can any one help me out here? I'm having a problem getting this query to

work with putting in the proper commas when necessary in myWHERE clause 
for the SQL statement.

James Blaha

CFQUERY name=JobApplicants datasource=ABC
SELECT  *

FROM HRWebAgent.tApply

WHERE   ReqNO  0

CFIF #form.ReqNo# NEQ 0
AND(ReqNo='#ReqNo#'),
/CFIF

CFIF #form.FIRSTNAME# NEQ 0
AND(FIRSTNAME LIKE '#FIRSTNAME#%'),
/CFIF

CFIF #form.LASTNAME# NEQ 0
AND(LASTNAME LIKE '#LASTNAME#%'),
/CFIF

CFIF #form.APPLIED_DATE# NEQ 0
!--- Dates go in order of old:recent i.e. BETWEEN 
'11/4/2000' AND '6/18/2001' ---
AND(APPLIED_DATE BETWEEN '#back_date_listed2#' AND 
'#now_date2#'),
/CFIF


CFIF #form.Desired_Position# NEQ 0
!--- Desired_Position IN ('Briarcliff','New York')
---
AND(Desired_Position IN 
(#ListQualify(Form.Desired_Position,')#)),
/CFIF



/CFQUERY


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: SQL Help

2002-07-30 Thread Venable, John

I don't think you need commas at all, the AND is the logical breakup of
statements.

John

-Original Message-
From: James Blaha [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 30, 2002 2:29 PM
To: CF-Talk
Subject: SQL Help


Can any one help me out here? I'm having a problem getting this query to 
work with putting in the proper commas when necessary in myWHERE clause 
for the SQL statement.

James Blaha

CFQUERY name=JobApplicants datasource=ABC
SELECT  *

FROM HRWebAgent.tApply

WHERE   ReqNO  0

CFIF #form.ReqNo# NEQ 0
AND(ReqNo='#ReqNo#'),
/CFIF

CFIF #form.FIRSTNAME# NEQ 0
AND(FIRSTNAME LIKE '#FIRSTNAME#%'),
/CFIF

CFIF #form.LASTNAME# NEQ 0
AND(LASTNAME LIKE '#LASTNAME#%'),
/CFIF

CFIF #form.APPLIED_DATE# NEQ 0
!--- Dates go in order of old:recent i.e. BETWEEN 
'11/4/2000' AND '6/18/2001' ---
AND(APPLIED_DATE BETWEEN '#back_date_listed2#' AND 
'#now_date2#'),
/CFIF


CFIF #form.Desired_Position# NEQ 0
!--- Desired_Position IN ('Briarcliff','New York') ---
AND(Desired_Position IN 
(#ListQualify(Form.Desired_Position,')#)),
/CFIF



/CFQUERY


__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: precompiling templates

2002-07-30 Thread Robert Everland

It did work for me, 

Brook could you describe your system, from OS to Java version to service
pack, maybe some other people can help where I wasn't able to.

Robert Everland III
Web Developer Extraordinaire
Dixon Ticonderoga Company
http://www.dixonusa.com 

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 30, 2002 2:34 PM
To: CF-Talk
Subject: Re: precompiling templates


I like the idea, would love to know also.

-Original Message-
From: Brook Davies [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Date: Tuesday, July 30, 2002 2:35 PM
Subject: precompiling templates


Here goes again:

Does anyone have a script to automate the compilation of cf templates. 
I tried this one from Robert Everland, but it does not work on my 
system. Has anyone else tried it (care to?), does it work for you?
---

-
@setlocal
set NEO_INSTALL=f:\cfusionMX
set PATH=%NEO_INSTALL%\runtime\bin;%PATH%
java -classpath %NEO_INSTALL%\lib\cfusion.jar coldfusion.tools.Compiler  
-webroot %NEO_INSTALL%\wwwroot %* @endlocal
---
-

Brook Davies
maracasmedia inc.

At 12:43 PM 30/07/02 -0500, you wrote:
I'd be interested in that tag too.

-Original Message-
From: Bryan Stevenson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, July 30, 2002 12:42 PM
To: CF-Talk
Subject: CFXImage not CFX_Image


Hey All,

Well I have discovered the other image tag CFXImage (not to be 
confused with CFX_Image).  I got my hands on version 1.6.6.3, but I 
need the
current
version (1.6.6.6 I think) which has a security fix to stop users from 
potentially gaining access to ALL files on the partition that it 
resides
on.

The current version should come from www.gafware.com, but it was down 
yesterday and today!!

So if anybody has a current version, please pass it along offlist.

BTW  Does anybody have experience with both tags?  Any comments would 
be great.

Thanks in advance

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

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com





__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Filtering query results

2002-07-30 Thread Jim Vosika

I have done this a few times with URL parameters and cfif's in the where
clause and had no problems...That is about the easiest way to go about
it I think. 

Jim Vosika
http://tinyclick.com
Free URL Shortening!

-Original Message-
From: Yexley Robert D Contr Det 1 AFRL/WSI
[mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 30, 2002 1:35 PM
To: CF-Talk
Subject: Filtering query results

In the application that I'm working on, I have a need to filter the
results of a query that get displayed on the screen, changing the
selectable options for the user.  I have a default query that populates
a SELECT list, and under that list I have three hyperlinks that will
allow a user to click on them to execute a different query to show
different results in the list for them to choose from.

I'm still pretty new to ColdFusion, and I'm not really sure what's the
best way to implement this functionality, and was hoping for some ideas
from anyone.  The query that gets executed is basically the same, only
the WHERE clause changes.  I've tried just dynamically changing the
WHERE clause using cfif checking based on a URL parameter, but didn't
have much luck with that.  Then I tried actually creating the three
separate queries, and just changing the query parameter of my loop for
the list values, using cfswitch checking to set the query parameter
based on a URL parameter.  That didn't give me much luck either.  I'm
just not sure how to best go about doing this.

Does anyone happen to know of any articles online, or tutorials that
might explain something close to how to do this?  How to I create a .cfm
page to accept a parameter by default to tell it which query to execute?
Any help or thoughts would be greatly appreciated.  Thanks.

::YEX::

/*
|| Robert D. Yexley
|| Oracle Programmer/Analyst
|| Easylink Services Corporation
|| Professional Services
|| Contractor - Wright Research Site MIS
|| Det-1 AFRL/WSI Bldg. 45 Rm. 062
|| (937) 255-1984
|| [EMAIL PROTECTED]
|| )))
*/

 Robert D. Yexley (E-mail).vcf 


__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Javascript/CF Tag to fill fields

2002-07-30 Thread Eric Hoffman

We have a drop down, and would like it to fill in row with that
recordset's info.  Is there a custom tag to do such before I switch into
the wooly world of javascript.  (the first field is drop down, next 4
fields to be filled need to be text input fields)

Thanks for any quick pointers...not finding it at DevEx.

Regards,

Eric J Hoffman
DataStream Connexion
www.datastreamconnexion.com
Delivering Creative Data Solutions 



__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



  1   2   3   >