Re: sql help -- joining 4 tables

2002-11-06 Thread Michael E. Carluen
Jason,
It would help if you send a copy of your tables and fields for everyone to see. If 
your using Studio, quick way to start is to use Query Builder and just modify 
inner/outer joins as needed.
Michael


At 11:45 PM 11/5/2002 -0800, [EMAIL PROTECTED] wrote:
good evening all (Or morning).
I've been digging around the net all night (and a number of books at
Borders- best library in town) but I can't find an easy example so here we
go:
I want to join 4 tables, what would a generic 4 table join look like?

thanks ahead of time. your help keeps me sane :)

Jason



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



OT: Job Opening

2002-11-06 Thread Michael Wolfe
Hi All,

My company has an opening for one (possibly two) mid to senior level CF
developer with stong SQL skills (MS SQL Server), and some experience
with ASP.  We are located in Culver City, CA, about a mile from LAX.

If you are interested, please contact me off-list, and I will provide
you with further info.


Thanks,

Mike Wolfe
[EMAIL PROTECTED]

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



Re: sql help -- joining 4 tables

2002-11-06 Thread Brian Scandale
SELECT *
FROM Table1
INNER JOIN Table2 ON Table1.FieldX = Table2.FieldX
INNER JOIN Table3 ON Table1.FieldX = Table3.FieldX
INNER JOIN Table4 ON Table1.FieldX = Table4.FieldX
WHERE Table1.FieldY = SomeValueOfInterst

Try a Google Search for SQL Tutor

At 11:45 PM 11/5/02, you wrote:
good evening all (Or morning).
I've been digging around the net all night (and a number of books at
Borders- best library in town) but I can't find an easy example so here we
go:
I want to join 4 tables, what would a generic 4 table join look like?

thanks ahead of time. your help keeps me sane :)

Jason



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



Re: sql help -- joining 4 tables

2002-11-06 Thread jasonkufner
Sorry I always forget to include the code- can't you guys read my mind :}


Here are the two queries I built because i couldn't figure out how to do a
four table join. (it was cobbled together from about 8 SQL books at
borders, and yes I did many google searches for table joins over 3 tables,
but couldn't find any.) I just can't seem to get extrapolate 4 tables from
any of the examples I’ve seen.
If anyone can figure out how to make these two queries one joined query i
would be in your debt...



cfquery name=searchResults datasource=#attributes.dsn#
cachedwithin=#createTimeSpan(0,0,10,0)#
 SELECT *

 FROM   (author
 INNER JOIN bookAuthor
  ON author.authorId = bookAuthor.bookAuthor_authorId)
 INNER JOIN book
  ON book.bookId = bookAuthor.bookAuthor_bookId

 WHERE  (author.authorFirstName LIKE '%#form.searchTerms#%'
  OR author.authorLastName LIKE '%#form.searchTerms#%'
  OR book.bookTitle LIKE '%#form.searchTerms#%'
  OR book.BookISBN LIKE '%#form.searchTerms#%')

 ORDER BY   book.bookTitle

/cfquery





cfif searchResults.recordcount NEQ 0
cfquery name=displayPicture datasource=#attributes.dsn#

 SELECT *

 FROM   bookImage INNER JOIN book
ON bookImage.bookImage_bookId = book.BookId

 WHERE  bookImage_bookId IN (#valueList(searchResults.bookID)#)

 ORDER BY   book.bookTitle

/cfquery
/cfif



As always thank you so much

Jason



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



RE: Dump a SQL table into an Excel spreadsheet

2002-11-06 Thread Kola Oyedeji
Liz

Wow. Thanks for that. Looks like we've been re-inventing the wheel!


Kola

 -Original Message-
 From: Les Mizzell [mailto:lesmizz;bellsouth.net]
 Sent: 05 November 2002 17:51
 To: CF-Talk
 Subject: RE: Dump a SQL table into an Excel spreadsheet
 
 : What exactly are Excel web queries? I've heard Its an alternative
but
 : That's about all I know about it.
 
 
 1. Open Excel (I'm using Office 2000 here)
 2. On the data menu and select Get External Data
 3. Click New Web Query
 4. Enter the address of the page that generates the data:
 http://www.mySite.com/EXCELGen.cfm
 
 Excel grabs the data from the page and automatically pops it right
into a
 spreadsheet. Easy as pie.
 


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



RE: ActivePDF (web grabber) and CFMX does not work.

2002-11-06 Thread Adam Reynolds
Its the web Grabber I need to use.

Thankfully I run under IIS so I created an ASP page to do the web capture.

Seems to be the easiest thing to do in the circumstances while MM get there
COM stuff sorted out.

Adam

 -Original Message-
 From: Jeffry Houser [mailto:jeff;farcryfly.com]
 Sent: 06 November 2002 01:00
 To: CF-Talk
 Subject: RE: ActivePDF (web grabber) and CFMX does not work.


   I have used the ActivePDF Toolkit w/ CFMX without any problems at all.
   I don't know about the rest of the other ActivePDF products, though.

 At 05:53 PM 11/5/2002 -0500, you wrote:
 Last I check ActivePDF used a COM object. CFMX doesn't jive well with
 COM NEmore. I talked to the activePDF guys at devCon and they said we're
 your best bet is to setup a separate server with CF5. They didn't really
 seem like they were even planning on resolving the issues.
 
 You know there are a bunch of free Java classes for PDF creation.
 
 Adam Wayne Lehman
 Web Systems Developer
 Johns Hopkins Bloomberg School of Public Health
 Distance Education Division
 
 
 -Original Message-
 From: Adam Reynolds [mailto:adam;craze.co.uk]
 Sent: Tuesday, November 05, 2002 5:27 PM
 To: CF-Talk
 Subject: ActivePDF (web grabber) and CFMX does not work.
 
 I'm using the examples provided by ActivePDF for the web grabber
 product.
 
 The example does not work under CF MX which seems very weird to me.
 
 Has anybody else come across this?
 
 Here's the link to their sample code:
 http://www.activepdf.com/en/Support/Example14.asp
 
 Any help would be appreciated.
 
 Adam
 
 
 
 
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Dump a SQL table into an Excel spreadsheet

2002-11-06 Thread JAIME HOI
hi 
i was trying out this dumping of data into spreadsheet. 

Does it still work when the whole application is tied by session  ? i tried 
but it gives me an error stating 
cannot open page. But when i tried it on the web browser, it can display the dynamic 
data.  Any other way out?



-Original Message-
From: Kola Oyedeji [mailto:kola.oyedeji;iclployalty.com]
Sent: Wednesday, November 06, 2002 5:12 PM
To: CF-Talk
Subject: RE: Dump a SQL table into an Excel spreadsheet


Liz

Wow. Thanks for that. Looks like we've been re-inventing the wheel!


Kola

 -Original Message-
 From: Les Mizzell [mailto:lesmizz;bellsouth.net]
 Sent: 05 November 2002 17:51
 To: CF-Talk
 Subject: RE: Dump a SQL table into an Excel spreadsheet
 
 : What exactly are Excel web queries? I've heard Its an alternative
but
 : That's about all I know about it.
 
 
 1. Open Excel (I'm using Office 2000 here)
 2. On the data menu and select Get External Data
 3. Click New Web Query
 4. Enter the address of the page that generates the data:
 http://www.mySite.com/EXCELGen.cfm
 
 Excel grabs the data from the page and automatically pops it right
into a
 spreadsheet. Easy as pie.
 



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



RE: Dump a SQL table into an Excel spreadsheet

2002-11-06 Thread Kola Oyedeji
This is interesting.

It would seem contrary to normal browser behavior, that opening the
dialog in Excel actually ignores existing sessions. If your app has a
login page or session initialization code, you'll need to browse that
page first in the new web query dialog first and then browse to the page
you'd like to create a web query from.


Kola
 -Original Message-
 From: JAIME HOI [mailto:JHOI;has.hitachi.com.sg]
 Sent: 06 November 2002 10:09
 To: CF-Talk
 Subject: RE: Dump a SQL table into an Excel spreadsheet
 
 hi
  i was trying out this dumping of data into spreadsheet.
 
  Does it still work when the whole application is tied by session
?
 i tried but it gives me an error stating
 cannot open page. But when i tried it on the web browser, it can
display
 the dynamic data.  Any other way out?
 
 
 
 -Original Message-
 From: Kola Oyedeji [mailto:kola.oyedeji;iclployalty.com]
 Sent: Wednesday, November 06, 2002 5:12 PM
 To: CF-Talk
 Subject: RE: Dump a SQL table into an Excel spreadsheet
 
 
 Liz
 
 Wow. Thanks for that. Looks like we've been re-inventing the wheel!
 
 
 Kola
 
  -Original Message-
  From: Les Mizzell [mailto:lesmizz;bellsouth.net]
  Sent: 05 November 2002 17:51
  To: CF-Talk
  Subject: RE: Dump a SQL table into an Excel spreadsheet
 
  : What exactly are Excel web queries? I've heard Its an
alternative
 but
  : That's about all I know about it.
 
 
  1. Open Excel (I'm using Office 2000 here)
  2. On the data menu and select Get External Data
  3. Click New Web Query
  4. Enter the address of the page that generates the data:
  http://www.mySite.com/EXCELGen.cfm
 
  Excel grabs the data from the page and automatically pops it right
 into a
  spreadsheet. Easy as pie.
 
 
 
 


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



RE: Webserver software for NT 4.0

2002-11-06 Thread Robertson-Ravo, Neil (REC)
On NT4.0, IIS can be installed via the NT Option Pack.

and yes, its free :-)

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: 05 November 2002 23:12
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


Nothings wrong with IIS 4.0 or IIS 5.0... as a matter of fact I'd rather
use that instead of learning Apache in two days... My web server
experience is limited developing CF with IIS 5.0 or PWS ... is the
upgrade to 5.0 downloadable from the net... I checked Microsoft's site
and didn't see it... or do you have to get it off a W2k server disk ?

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com] 
Sent: Tuesday, November 05, 2002 5:32 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0

There is IIS4 for NT 4.0...what is wrong with that on an Intranet?  You
could use Apache which is free(as in beer).


Doug

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 5:25 PM
To: CF-Talk
Subject: SOT: Webserver software for NT 4.0


Hello. I have a client who wants to set up a small intranet with a NT
4.0 server (for future CF apps). I'm looking for recommendations for
good cheap webserver software for NT 4.0 other than the built in IIS
3.0.. any downloadables (upgrades or otherwise) free from Microsoft or
elsewhere would obviously be great :-)
 
Tim Laureska
1st-String Technolgies
443-496-1261
 






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



RE: Resizing images under Linux

2002-11-06 Thread Benoit Hediard
Hi,

Indeed, ImageJ is another imaging Java library, it is easier to use than
JAI.
It supports GIF and it is the world's fastest pure Java image processing
program. It can filter a 2048x2048 image in 0.5 seconds. That's over 8
million pixels per second!.

If you look at Todd's ones and my examples
(http://www.benorama.com/coldfusion/libraries/imaging.htm), you'll see that
it is very easy to use from CF.

I don't know about the quality of the generated thumbnails compared to JAI
ones...

Benoit Hediard
www.benorama.com

-Message d'origine-
De : [EMAIL PROTECTED] [mailto:todd;web-rat.com]
Envoyé : mardi 5 novembre 2002 23:23
À : CF-Talk
Objet : RE: Resizing images under Linux


My research with the ImageJ library:
http://www.web-rat.com/mt2/mt-search.cgi?IncludeBlogs=2search=image+j

Ben Hediard pointed imageJ out to me ages ago -
http://rsb.info.nih.gov/ij/index.html

~Todd

On Tue, 5 Nov 2002, Kevin Graeme wrote:

 I read that article before, and it looks to me that the huge downside of
JAI
 is the lack of GIF support.

 it can write BMP, JPG, TIF, PNG, but if you must write GIF files, then
you’
 ll have to find another implementation (note that the PNG file format is
an
 acceptable substitute for GIF file format).

 I would love it if PNG were an acceptable substitute, but it's
 implementation in browsers seems worse than CSS.

 -Kevin

  -Original Message-
  From: Sean A Corfield [mailto:sean;corfield.org]
  Sent: Tuesday, November 05, 2002 1:47 PM
  To: CF-Talk
  Subject: Re: Resizing images under Linux
 
 
  Check out JAI - the Java image library. Matt Liotta wrote an article on
  this for the DesDev Center recently... *searches*
 
  http://www.macromedia.com/desdev/mx/coldfusion/articles/jai_images.html
 
  That Java code should be callable from CF5.
 
  On Tuesday, Nov 5, 2002, at 11:30 US/Pacific, Rick Root wrote:
 
   Nope, requires windows... and as I said I'm using Linux.
  
   I'm researching the GD library which would allow me to write a perl
   script and call that via CFEXECUTE... but I'd much rather find an
   existing solution :)
  
 - Rick
  
   Ryan Farrell wrote:
   We are working with something called AutoImager.  Our particular
   solution
   requires that we resize images and create thumbnails in a nightly
   batch, but
   the program may be able to meet your requirements.  Check it out at
   http://www.mystikmedia.com/autoimager.asp.
 
  I can smell your brains!
  -- Mittens the Kitten : http://www.matazone.co.uk/theotherside.html
 
 


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



Re: Resizing images under Linux

2002-11-06 Thread Paul Hastings
 Indeed, ImageJ is another imaging Java library, it is easier to use than
 JAI.
 It supports GIF and it is the world's fastest pure Java image processing
 program. It can filter a 2048x2048 image in 0.5 seconds. That's over 8
 million pixels per second!.

i can attest to this, JAI might be more overall functional but imageJ is
easier  as fast or faster from our tests.


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.410 / Virus Database: 231 - Release Date: 31/10/2545

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



ok..im a newb

2002-11-06 Thread Manesh Manickam
Could someone like send me a simple site with like a databse..just so I
can analyze it


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



RE: ok..im a newb

2002-11-06 Thread Michael Kear
I suggest you start with the basic tutorial on webmonkey.  It's got a
database and step-by-step to talk you through a simple application.  Then
you'll understand what's involved in a ColdFusion site.


Cheers,
Mike Kear
Windsor, NSW, Australia
AFP WebWorks


-Original Message-
From: Manesh Manickam [mailto:manickam;rogers.com]
Sent: Wednesday, 6 November 2002 10:44 PM
To: CF-Talk
Subject: ok..im a newb

Could someone like send me a simple site with like a databse..just so I
can analyze it



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



Re: Deleting duplicate values in list

2002-11-06 Thread Zac Spitzer
Dowdell, Jason G wrote:
 Hi all,
 
 Does anyone know of an easy way to delete duplicate
 values from a list.
 
 For example:
 
 List = Jason, Jeremy, John, Jason, Jack

i think the quickest way is to create a struct, make each list item a 
key in the struct and then return the structkeylist

z


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



Re: Resizing images under Linux

2002-11-06 Thread Rick Root
Thanks for all your suggestions everyone.   I think CF_ImageMagick is 
the way I'm going to go, as it seems to do everything I want, I already 
have ImageMagick installed on my server, and I don't have to write any 
fancy code other than that handles the automatic creation and caching of 
thumbnails... basically a custom tag I'm calling CF_THUMBNAIL.

Assuming a file named '97.jpg' is 500x733,

CF_THUMBNAIL FILENAME=/home/rickroot/www/photo_gallery/97.jpg 
WIDTH=100

will generate

IMG SRC=/photo_gallery/thumbnail_97.jpg WIDTH=100 HEIGHT=146

the CF_THUMBNAIL custom tag will automatically check for the existence 
of the thumbnail image, and compare it's date to the original file.. and 
generate a new thumbnail only if necessary.  It generates the thumbnail
image with dimensions specified, and will scale evenly by detecting 
original size using the CF_IMAGESIZE tag I found in the developer's 
exchange.

  - Rick

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



RE: Verity Head Aches EMERGENCY

2002-11-06 Thread Timothy Heald
Hey,
We just found out that all Verity on our production server is hosed up.  We 
get the VdkSessionNew error no matter what we do.

Nothing we do seems to be helping.  Can't repair, delete, purge, optimize or 
create new ones.

Anyone know anything about this?

Our setup:

NT 4 SP 6
CF 5 on IIS 4
Oracle 8.17i

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 

-Original Message-
From: Sean McCarthy [mailto:SMcCarthy;HealthObjects.com]
Sent: Tuesday, November 05, 2002 4:29 PM
To: CF-Talk
Subject: RE: Verity Head Aches


are you using k2? if so did you update your k2.ini?

did you try restarting the services?

try dumping it out to see if the contents are good

-Original Message-
From: Timothy Heald [mailto:healdt;dsmail.state.gov]
Sent: Tuesday, November 05, 2002 2:52 PM
To: CF-Talk
Subject: Verity Head Aches


Hi.

I have these verity collections that have 250,000 and 150,000 row
queries indexed in each.  We just moved them from our personal Win 2K dev
box, to our production NT box.  Now the search I built for them keeps
throwing errors like:

Error executing CFSEARCH.

Error # -125 [ff83] VdkSessionNew

Have any of you seen this before?  Any help would be much
appreciated.

Tim


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



RE: Communicating FROM Flash Calendar Component

2002-11-06 Thread Stacy Young
Hey Russ,

What I do normally is have a button with and changeHandler function that
reveals the calendar (unhides it and moves it into position on the
screen)Then assign another changeHandler for the calendar component.
That function is called automatically when the date is selected on the
component...you can then use a method from the calendar to grab the selected
date and populate a variable with that date for use later on.

HTH!

Stace

-Original Message-
From: Russ [mailto:russ;unrealisticexpectations.com] 
Sent: Wednesday, November 06, 2002 2:07 AM
To: CF-Talk
Subject: Communicating FROM Flash Calendar Component

This is my first effort at communicating between Flash and ColdFusion.
(Sorry, Ben, I'm not that far in your book just yet, but it is a great,
easy read and I applaud you and the team on it!)

I'll be using the Flash Calendar Component--quite simply so that I can
select a Start Date for an employee, and when the date is selected,
I'll submit and the information (date) will be passed to a ColdFusion
MX page that spawned the calendar window.

That value will, ideally, be populated into the form field on the page
without requiring an update of the CFMX page (I'll figure that out).

I'm pretty virginal with the communication of Flash to-and-from CFMX, so
I'm hoping I can get a little shove in the right direction.  I'm not
virginal to Flash, and I'm still shaking some of the water out from
behind my ears upon occasion with CFMX, but I think I can manage with a
little direction.

Thanks in advance, and I appreciate any assistance.

Kind regards,

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


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



Any word on Apache 2 support for CF5/Linux?

2002-11-06 Thread Greg Bullough
Has anyone successfully built a mod_coldfusion.so for Apache 2
and Linux?

We've just moved to RedHat 8.0 and had to regress back to
Apache 1.3.27 (which we had to build ourselves) because
Macromedia has elected not to provide support of the
prior release on the current, more secure, Apache
web server.

We tried compiling Dwayne's modified mod_coldfusion.c,
but ran into issues with the Macromedia-provided library.

This will be a serious problem if 5.0 users are 'stuck' on
Apache 1.3. It also sends a bad precedent regarding
reasonable support periods for prior releases of
Cold Fusion... ...this is definitely not 'Enterprise'
software quality of support.

The sad thing is that MM has the resources to provide
hundreds of customers with relief with only a few hours
investment in developer time to provide a 'clean' migration
path to Apache 2.

The question is, are customers important enough for them
to do so?

Greg

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



Running custom tag

2002-11-06 Thread FlashGuy
Hi,

I downloaded the custom tag cf_sleep. I changed the path of my custom tags directory 
to e:\inetpub\customtags and added the custom tag path via CF Administrator and 
deleted the default path of c:\cfusion\customtags. When I run my template with the 
cf_sleep I get the following error. Why? What does it mean? I run CFX tags no 
problem.

Maybe CF only likes the custom tags to reside in c:\cfusion\customtags directory?

Here is the error:


Error Occurred While Processing Request
Error Diagnostic Information
The JVM library path is empty. To use Java objects or Java CFXs, you need to install 
(if not already installed) the JDK or JRE and specify the path of the JVM in the 
ColdFusion Administrator. Please read the release notes regarding the version of the 
software that is needed. 


The error occurred while processing an element with a general identifier of 
(CFOBJECT), occupying document position (10:1) to (10:74).


Date/Time: 11/06/02 08:38:35
Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.0.3705)

 



---
Colonel Nathan R. Jessop
Commanding Officer
Marine Ground Forces
Guatanamo Bay, Cuba
---



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



Re: Running custom tag

2002-11-06 Thread Randell B Adkins
I received that as well yesterday.. Sorry unable to 
help you on this one.

However I resorted to doing a simple loop statement:

CFLOOP INDEX=timeDelay FROM=1 TO=3000
!--- Do nothing (3000 would represent 3 seconds) ---
/CFLOOP

 [EMAIL PROTECTED] 11/06/02 08:49AM 
Hi,

I downloaded the custom tag cf_sleep. I changed the path of my custom
tags directory to e:\inetpub\customtags and added the custom tag path
via CF Administrator and 
deleted the default path of c:\cfusion\customtags. When I run my
template with the cf_sleep I get the following error. Why? What does
it mean? I run CFX tags no 
problem.

Maybe CF only likes the custom tags to reside in c:\cfusion\customtags
directory?

Here is the error:


Error Occurred While Processing Request
Error Diagnostic Information
The JVM library path is empty. To use Java objects or Java CFXs, you
need to install (if not already installed) the JDK or JRE and specify
the path of the JVM in the 
ColdFusion Administrator. Please read the release notes regarding the
version of the software that is needed. 


The error occurred while processing an element with a general
identifier of (CFOBJECT), occupying document position (10:1) to
(10:74).


Date/Time: 11/06/02 08:38:35
Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR
1.0.3705)

 



---
Colonel Nathan R. Jessop
Commanding Officer
Marine Ground Forces
Guatanamo Bay, Cuba
---




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



Re: Any word on Apache 2 support for CF5/Linux?

2002-11-06 Thread Jeffry Houser
http://home.nextron.ch/coldfusion/

  I believe this is the one you said you had problems with, though.


At 08:42 AM 11/6/2002 -0500, you wrote:
Has anyone successfully built a mod_coldfusion.so for Apache 2
and Linux?

We've just moved to RedHat 8.0 and had to regress back to
Apache 1.3.27 (which we had to build ourselves) because
Macromedia has elected not to provide support of the
prior release on the current, more secure, Apache
web server.

We tried compiling Dwayne's modified mod_coldfusion.c,
but ran into issues with the Macromedia-provided library.

This will be a serious problem if 5.0 users are 'stuck' on
Apache 1.3. It also sends a bad precedent regarding
reasonable support periods for prior releases of
Cold Fusion... ...this is definitely not 'Enterprise'
software quality of support.

The sad thing is that MM has the resources to provide
hundreds of customers with relief with only a few hours
investment in developer time to provide a 'clean' migration
path to Apache 2.

The question is, are customers important enough for them
to do so?

  Well, the answer is to upgrade.  Of course that is not necessarily the 
answer you want to hear, but common in the Computer Software world.





--
Jeffry Houser | mailto:jeff;farcryfly.com
DotComIt, Putting you on the web
AIM: Reboog711  | Phone: 1-203-379-0773
--
My CFMX Book: 
http://www.amazon.com/exec/obidos/ASIN/0072225564/instantcoldfu-20
My Books: http://www.instantcoldfusion.com
My Band: http://www.farcryfly.com 

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



Re: Running custom tag

2002-11-06 Thread Zac Spitzer
FlashGuy wrote:
 Hi,
 
 I downloaded the custom tag cf_sleep. I changed the path of my
 custom tags directory to e:\inetpub\customtags and added the custom
 tag path via CF Administrator and deleted the default path of
 c:\cfusion\customtags. When I run my template with the cf_sleep I
 get the following error. Why? What does it mean? I run CFX tags no 
 problem.
 
 Maybe CF only likes the custom tags to reside in
 c:\cfusion\customtags directory?
 
 Here is the error:
 
 
 Error Occurred While Processing Request Error Diagnostic Information 

here is your answer from your post :-) ...

 The JVM library path is empty. To use Java objects or Java CFXs, you
 need to install (if not already installed) the JDK or JRE and specify
 the path of the JVM in the ColdFusion Administrator. Please read the
 release notes regarding the version of the software that is needed.

coz, cf_sleep most likey uses a java function to pause.. which needs a 
jvm to run,

cheers

z

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



Re: Running custom tag

2002-11-06 Thread FlashGuy
On Wed, 06 Nov 2002 09:04:31 -0500, Randell B Adkins wrote:

 I received that as well yesterday.. Sorry unable to 
 help you on this one.

No problem...just a weird error. Could this be for CFMX only?
 
 However I resorted to doing a simple loop statement:
 
 CFLOOP INDEX=timeDelay FROM=1 TO=3000
 !--- Do nothing (3000 would represent 3 seconds) ---
 /CFLOOP

What did you enter in for the time delay?

 
  [EMAIL PROTECTED] 11/06/02 08:49AM 
 Hi,
 
 I downloaded the custom tag cf_sleep. I changed the path of my custom
 tags directory to e:\inetpub\customtags and added the custom tag path
 via CF Administrator and 
 deleted the default path of c:\cfusion\customtags. When I run my
 template with the cf_sleep I get the following error. Why? What does
 it mean? I run CFX tags no 
 problem.
 
 Maybe CF only likes the custom tags to reside in c:\cfusion\customtags
 directory?
 
 Here is the error:
 
 
 Error Occurred While Processing Request
 Error Diagnostic Information
 The JVM library path is empty. To use Java objects or Java CFXs, you
 need to install (if not already installed) the JDK or JRE and specify
 the path of the JVM in the 
 ColdFusion Administrator. Please read the release notes regarding the
 version of the software that is needed. 
 
 
 The error occurred while processing an element with a general
 identifier of (CFOBJECT), occupying document position (10:1) to
 (10:74).
 
 
 Date/Time: 11/06/02 08:38:35
 Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR
 1.0.3705)
 
  
 
 
 
 ---
 Colonel Nathan R. Jessop
 Commanding Officer
 Marine Ground Forces
 Guatanamo Bay, Cuba
 ---
 
 
 
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: Running custom tag

2002-11-06 Thread FlashGuy
OK...where can I download the JVM to install on the server? 

On Wed, 06 Nov 2002 15:07:42 +0100, Zac Spitzer wrote:

 FlashGuy wrote:
  Hi,
  
  I downloaded the custom tag cf_sleep. I changed the path of my
  custom tags directory to e:\inetpub\customtags and added the custom
  tag path via CF Administrator and deleted the default path of
  c:\cfusion\customtags. When I run my template with the cf_sleep I
  get the following error. Why? What does it mean? I run CFX tags no 
  problem.
  
  Maybe CF only likes the custom tags to reside in
  c:\cfusion\customtags directory?
  
  Here is the error:
  
  
  Error Occurred While Processing Request Error Diagnostic Information 
 
 here is your answer from your post :-) ...
 
  The JVM library path is empty. To use Java objects or Java CFXs, you
  need to install (if not already installed) the JDK or JRE and specify
  the path of the JVM in the ColdFusion Administrator. Please read the
  release notes regarding the version of the software that is needed.
 
 coz, cf_sleep most likey uses a java function to pause.. which needs a 
 jvm to run,
 
 cheers
 
 z
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Running custom tag

2002-11-06 Thread FlashGuy
Nevermind...figured it out.

On Wed, 06 Nov 2002 09:09:27 -0500, FlashGuy wrote:

 On Wed, 06 Nov 2002 09:04:31 -0500, Randell B Adkins wrote:
 
  I received that as well yesterday.. Sorry unable to 
  help you on this one.
 
 No problem...just a weird error. Could this be for CFMX only?
  
  However I resorted to doing a simple loop statement:
  
  CFLOOP INDEX=timeDelay FROM=1 TO=3000
  !--- Do nothing (3000 would represent 3 seconds) ---
  /CFLOOP
 
 What did you enter in for the time delay?
 
  
   [EMAIL PROTECTED] 11/06/02 08:49AM 
  Hi,
  
  I downloaded the custom tag cf_sleep. I changed the path of my custom
  tags directory to e:\inetpub\customtags and added the custom tag path
  via CF Administrator and 
  deleted the default path of c:\cfusion\customtags. When I run my
  template with the cf_sleep I get the following error. Why? What does
  it mean? I run CFX tags no 
  problem.
  
  Maybe CF only likes the custom tags to reside in c:\cfusion\customtags
  directory?
  
  Here is the error:
  
  
  Error Occurred While Processing Request
  Error Diagnostic Information
  The JVM library path is empty. To use Java objects or Java CFXs, you
  need to install (if not already installed) the JDK or JRE and specify
  the path of the JVM in the 
  ColdFusion Administrator. Please read the release notes regarding the
  version of the software that is needed. 
  
  
  The error occurred while processing an element with a general
  identifier of (CFOBJECT), occupying document position (10:1) to
  (10:74).
  
  
  Date/Time: 11/06/02 08:38:35
  Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR
  1.0.3705)
  
   
  
  
  
  ---
  Colonel Nathan R. Jessop
  Commanding Officer
  Marine Ground Forces
  Guatanamo Bay, Cuba
  ---
  
  
  
  
  
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: Any word on Apache 2 support for CF5/Linux?

2002-11-06 Thread todd
Greg,

Not really fair for a harsh demand like that.  Does Netscape support 
version 4 of their browser?  Probably not anymore.  Does Microsoft support 
version 4 of their browser anymore?  Definitely not.  Their answers will 
most likely be upgrade to our latest and greatest!  Why would Macromedia 
be any different from any other software provider out there?

What cracks me up is that there's a lot of people that won't touch CFMX 
based on other people's experience.  If that were true, NO ONE would 
upgrade to anything.  Take WinXP for example, I've heard all kinds of 
horror stories on people upgrading, but ... I can't say that I, myself, 
have seen any of their issues and my upgrade went rather flawless.  What's 
even worst is that people *knew* that cfmx was coming, people *knew* that 
allaire (now Macromedia) was going to be writing Neo.  Heck, when I 
remember upgrading to CF 5 and suddenly the buzzword was Neo.  I had to 
call up my contact inside allaire (at that time) and ask him what Neo was 
all about in which I was provided technical whitepapers that explained the 
road going forward.

Then again, perhaps you've already ran into issues that I'm not aware of 
(and, I'd like to hear about it off-list if you have).  Or, perhaps 
there's just no time to invest into CFMX.

That being said, CFMX  Apache 2 do work pretty good together.  One of the 
issues with CFMX  the latest RedHat platform (especially 7.3 and 8.0) is 
that the jvm acts differently on it than it did on previous versions 
(correct me if I'm wrong Jesse!).  I can say that I know of two servers 
out there running CFMX, Apache 2 on RH 7.3 successfully - there were 
issues, but upgrading to Apache 2 took care of them.

Vern V. announced that Macromedia is working on something so that the 
Apache Group won't break the stub files every other week when they change 
the magic module number.  So, hopefully we'll see that soon.

~Todd

On Wed, 6 Nov 2002, Greg Bullough wrote:

 Has anyone successfully built a mod_coldfusion.so for Apache 2
 and Linux?
 
 We've just moved to RedHat 8.0 and had to regress back to
 Apache 1.3.27 (which we had to build ourselves) because
 Macromedia has elected not to provide support of the
 prior release on the current, more secure, Apache
 web server.
 
 We tried compiling Dwayne's modified mod_coldfusion.c,
 but ran into issues with the Macromedia-provided library.
 
 This will be a serious problem if 5.0 users are 'stuck' on
 Apache 1.3. It also sends a bad precedent regarding
 reasonable support periods for prior releases of
 Cold Fusion... ...this is definitely not 'Enterprise'
 software quality of support.
 
 The sad thing is that MM has the resources to provide
 hundreds of customers with relief with only a few hours
 investment in developer time to provide a 'clean' migration
 path to Apache 2.
 
 The question is, are customers important enough for them
 to do so?
 
 Greg

-- 

Todd Rafferty ([EMAIL PROTECTED]) - http://www.web-rat.com/ |
Team Macromedia Volunteer for ColdFusion   |
http://www.macromedia.com/support/forums/team_macromedia/  |
http://www.devmx.com/ - Todd (Moderator /  CoFounder)  |
http://www.flashCFM.com/   - webRat (Moderator)|
   Speakeasy DSL - http://www.speakeasy.net/refer/18280|


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



RE: Verity Head Aches EMERGENCY

2002-11-06 Thread Gaulin, Mark
Did you try restarting CF? (and/or the Verity K2 service, if you are using
that?)
Mark

-Original Message-
From: Timothy Heald [mailto:healdt;dsmail.state.gov]
Sent: Wednesday, November 06, 2002 8:07 AM
To: CF-Talk
Subject: RE: Verity Head Aches EMERGENCY


Hey,
We just found out that all Verity on our production server is hosed
up.  We get the VdkSessionNew error no matter what we do.

Nothing we do seems to be helping.  Can't repair, delete, purge,
optimize or create new ones.

Anyone know anything about this?

Our setup:

NT 4 SP 6
CF 5 on IIS 4
Oracle 8.17i

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 

-Original Message-
From: Sean McCarthy [mailto:SMcCarthy;HealthObjects.com]
Sent: Tuesday, November 05, 2002 4:29 PM
To: CF-Talk
Subject: RE: Verity Head Aches


are you using k2? if so did you update your k2.ini?

did you try restarting the services?

try dumping it out to see if the contents are good

-Original Message-
From: Timothy Heald [mailto:healdt;dsmail.state.gov]
Sent: Tuesday, November 05, 2002 2:52 PM
To: CF-Talk
Subject: Verity Head Aches


Hi.

I have these verity collections that have 250,000 and 150,000 row
queries indexed in each.  We just moved them from our personal Win 2K dev
box, to our production NT box.  Now the search I built for them keeps
throwing errors like:

Error executing CFSEARCH.

Error # -125 [ff83] VdkSessionNew

Have any of you seen this before?  Any help would be much
appreciated.

Tim



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



Re: Running custom tag

2002-11-06 Thread todd
java.sun.com:
http://java.sun.com/j2se/1.4.1/index.html

On Wed, 6 Nov 2002, FlashGuy wrote:

 OK...where can I download the JVM to install on the server? 
 
 On Wed, 06 Nov 2002 15:07:42 +0100, Zac Spitzer wrote:
 
  FlashGuy wrote:
   Hi,
   
   I downloaded the custom tag cf_sleep. I changed the path of my
   custom tags directory to e:\inetpub\customtags and added the custom
   tag path via CF Administrator and deleted the default path of
   c:\cfusion\customtags. When I run my template with the cf_sleep I
   get the following error. Why? What does it mean? I run CFX tags no 
   problem.
   
   Maybe CF only likes the custom tags to reside in
   c:\cfusion\customtags directory?
   
   Here is the error:
   
   
   Error Occurred While Processing Request Error Diagnostic Information 
  
  here is your answer from your post :-) ...
  
   The JVM library path is empty. To use Java objects or Java CFXs, you
   need to install (if not already installed) the JDK or JRE and specify
   the path of the JVM in the ColdFusion Administrator. Please read the
   release notes regarding the version of the software that is needed.
  
  coz, cf_sleep most likey uses a java function to pause.. which needs a 
  jvm to run,
  
  cheers
  
  z
  
  
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Running custom tag

2002-11-06 Thread Randell B Adkins
Depending on the need to the PAUSE, I usually have it set
for 2 to 3 seconds.

(# of seconds * 1000)


 [EMAIL PROTECTED] 11/06/02 09:09AM 
On Wed, 06 Nov 2002 09:04:31 -0500, Randell B Adkins wrote:

 I received that as well yesterday.. Sorry unable to 
 help you on this one.

No problem...just a weird error. Could this be for CFMX only?
 
 However I resorted to doing a simple loop statement:
 
 CFLOOP INDEX=timeDelay FROM=1 TO=3000
 !--- Do nothing (3000 would represent 3 seconds) ---
 /CFLOOP

What did you enter in for the time delay?

 
  [EMAIL PROTECTED] 11/06/02 08:49AM 
 Hi,
 
 I downloaded the custom tag cf_sleep. I changed the path of my
custom
 tags directory to e:\inetpub\customtags and added the custom tag
path
 via CF Administrator and 
 deleted the default path of c:\cfusion\customtags. When I run my
 template with the cf_sleep I get the following error. Why? What
does
 it mean? I run CFX tags no 
 problem.
 
 Maybe CF only likes the custom tags to reside in
c:\cfusion\customtags
 directory?
 
 Here is the error:
 
 
 Error Occurred While Processing Request
 Error Diagnostic Information
 The JVM library path is empty. To use Java objects or Java CFXs, you
 need to install (if not already installed) the JDK or JRE and
specify
 the path of the JVM in the 
 ColdFusion Administrator. Please read the release notes regarding
the
 version of the software that is needed. 
 
 
 The error occurred while processing an element with a general
 identifier of (CFOBJECT), occupying document position (10:1) to
 (10:74).
 
 
 Date/Time: 11/06/02 08:38:35
 Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR
 1.0.3705)
 
  
 
 
 
 ---
 Colonel Nathan R. Jessop
 Commanding Officer
 Marine Ground Forces
 Guatanamo Bay, Cuba
 ---
 
 
 
 
 

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



Re: Running custom tag

2002-11-06 Thread todd
To clarify, this isn't a custom tag issue.  CF_SLEEP uses a very specific 
java library.  Not sure if the cfmx's installed JRE 1.3 will work... 
downloading the latest JRE 
http://java.sun.com/j2se/1.4.1/index.html

Register it with the CFAdmin (very important thing to do) and hiccup 
the server after.

~Todd

On Wed, 6 Nov 2002, Randell B Adkins wrote:

 I received that as well yesterday.. Sorry unable to 
 help you on this one.
 
 However I resorted to doing a simple loop statement:
 
 CFLOOP INDEX=timeDelay FROM=1 TO=3000
 !--- Do nothing (3000 would represent 3 seconds) ---
 /CFLOOP
 
  [EMAIL PROTECTED] 11/06/02 08:49AM 
 Hi,
 
 I downloaded the custom tag cf_sleep. I changed the path of my custom
 tags directory to e:\inetpub\customtags and added the custom tag path
 via CF Administrator and 
 deleted the default path of c:\cfusion\customtags. When I run my
 template with the cf_sleep I get the following error. Why? What does
 it mean? I run CFX tags no 
 problem.
 
 Maybe CF only likes the custom tags to reside in c:\cfusion\customtags
 directory?
 
 Here is the error:
 
 
 Error Occurred While Processing Request
 Error Diagnostic Information
 The JVM library path is empty. To use Java objects or Java CFXs, you
 need to install (if not already installed) the JDK or JRE and specify
 the path of the JVM in the 
 ColdFusion Administrator. Please read the release notes regarding the
 version of the software that is needed. 
 
 
 The error occurred while processing an element with a general
 identifier of (CFOBJECT), occupying document position (10:1) to
 (10:74).
 
 
 Date/Time: 11/06/02 08:38:35
 Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR
 1.0.3705)
 
  
 
 
 
 ---
 Colonel Nathan R. Jessop
 Commanding Officer
 Marine Ground Forces
 Guatanamo Bay, Cuba
 ---
 
 
 
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: Any word on Apache 2 support for CF5/Linux?

2002-11-06 Thread todd
and the nextron thing is just for windows I believe, not linux.

On Wed, 6 Nov 2002, Jeffry Houser wrote:

 http://home.nextron.ch/coldfusion/
 
   I believe this is the one you said you had problems with, though.
 
 
 At 08:42 AM 11/6/2002 -0500, you wrote:
 Has anyone successfully built a mod_coldfusion.so for Apache 2
 and Linux?
 
 We've just moved to RedHat 8.0 and had to regress back to
 Apache 1.3.27 (which we had to build ourselves) because
 Macromedia has elected not to provide support of the
 prior release on the current, more secure, Apache
 web server.
 
 We tried compiling Dwayne's modified mod_coldfusion.c,
 but ran into issues with the Macromedia-provided library.
 
 This will be a serious problem if 5.0 users are 'stuck' on
 Apache 1.3. It also sends a bad precedent regarding
 reasonable support periods for prior releases of
 Cold Fusion... ...this is definitely not 'Enterprise'
 software quality of support.
 
 The sad thing is that MM has the resources to provide
 hundreds of customers with relief with only a few hours
 investment in developer time to provide a 'clean' migration
 path to Apache 2.
 
 The question is, are customers important enough for them
 to do so?
 
   Well, the answer is to upgrade.  Of course that is not necessarily the 
 answer you want to hear, but common in the Computer Software world.
 
 
 
 
 
 --
 Jeffry Houser | mailto:jeff;farcryfly.com
 DotComIt, Putting you on the web
 AIM: Reboog711  | Phone: 1-203-379-0773
 --
 My CFMX Book: 
 http://www.amazon.com/exec/obidos/ASIN/0072225564/instantcoldfu-20
 My Books: http://www.instantcoldfusion.com
 My Band: http://www.farcryfly.com 
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Re: Running custom tag

2002-11-06 Thread FlashGuy
Thanks.

How can I have my interface install this on users PCs automatically?

On Wed, 6 Nov 2002 09:41:40 -0500 (EST), [EMAIL PROTECTED] wrote:

 java.sun.com:
 http://java.sun.com/j2se/1.4.1/index.html
 
 On Wed, 6 Nov 2002, FlashGuy wrote:
 
  OK...where can I download the JVM to install on the server? 
  
  On Wed, 06 Nov 2002 15:07:42 +0100, Zac Spitzer wrote:
  
   FlashGuy wrote:
Hi,

I downloaded the custom tag cf_sleep. I changed the path of my
custom tags directory to e:\inetpub\customtags and added the custom
tag path via CF Administrator and deleted the default path of
c:\cfusion\customtags. When I run my template with the cf_sleep I
get the following error. Why? What does it mean? I run CFX tags no 
problem.

Maybe CF only likes the custom tags to reside in
c:\cfusion\customtags directory?

Here is the error:


Error Occurred While Processing Request Error Diagnostic Information 
   
   here is your answer from your post :-) ...
   
The JVM library path is empty. To use Java objects or Java CFXs, you
need to install (if not already installed) the JDK or JRE and specify
the path of the JVM in the ColdFusion Administrator. Please read the
release notes regarding the version of the software that is needed.
   
   coz, cf_sleep most likey uses a java function to pause.. which needs a 
   jvm to run,
   
   cheers
   
   z
   
   
  
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



Any Public sites implemented - FlashMX Communication Server

2002-11-06 Thread siva girumala
Hi,

Any public sites implemented FlashMX Communication
Server? Lots of talk is going on the list about
FlashMX and ColdFusionMX. I would like to see both of
them in action.

Thank you.

--Siva Girumala

__
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Re: Running custom tag

2002-11-06 Thread FlashGuy
OK...thanks

On Wed, 6 Nov 2002 09:43:32 -0500 (EST), [EMAIL PROTECTED] wrote:

 To clarify, this isn't a custom tag issue.  CF_SLEEP uses a very specific 
 java library.  Not sure if the cfmx's installed JRE 1.3 will work... 
 downloading the latest JRE 
 http://java.sun.com/j2se/1.4.1/index.html
 
 Register it with the CFAdmin (very important thing to do) and hiccup 
 the server after.
 
 ~Todd
 
 On Wed, 6 Nov 2002, Randell B Adkins wrote:
 
  I received that as well yesterday.. Sorry unable to 
  help you on this one.
  
  However I resorted to doing a simple loop statement:
  
  CFLOOP INDEX=timeDelay FROM=1 TO=3000
  !--- Do nothing (3000 would represent 3 seconds) ---
  /CFLOOP
  
   [EMAIL PROTECTED] 11/06/02 08:49AM 
  Hi,
  
  I downloaded the custom tag cf_sleep. I changed the path of my custom
  tags directory to e:\inetpub\customtags and added the custom tag path
  via CF Administrator and 
  deleted the default path of c:\cfusion\customtags. When I run my
  template with the cf_sleep I get the following error. Why? What does
  it mean? I run CFX tags no 
  problem.
  
  Maybe CF only likes the custom tags to reside in c:\cfusion\customtags
  directory?
  
  Here is the error:
  
  
  Error Occurred While Processing Request
  Error Diagnostic Information
  The JVM library path is empty. To use Java objects or Java CFXs, you
  need to install (if not already installed) the JDK or JRE and specify
  the path of the JVM in the 
  ColdFusion Administrator. Please read the release notes regarding the
  version of the software that is needed. 
  
  
  The error occurred while processing an element with a general
  identifier of (CFOBJECT), occupying document position (10:1) to
  (10:74).
  
  
  Date/Time: 11/06/02 08:38:35
  Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR
  1.0.3705)
  
   
  
  
  
  ---
  Colonel Nathan R. Jessop
  Commanding Officer
  Marine Ground Forces
  Guatanamo Bay, Cuba
  ---
  
  
  
  
  
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Re: Running custom tag

2002-11-06 Thread FlashGuy
I'll have to test it out. I'll be writing query results to an external file. First 
I'll delete the existing file and then write the query results back to the server 
again.

On Wed, 06 Nov 2002 09:17:31 -0500, Randell B Adkins wrote:

 Depending on the need to the PAUSE, I usually have it set
 for 2 to 3 seconds.
 
 (# of seconds * 1000)
 
 
  [EMAIL PROTECTED] 11/06/02 09:09AM 
 On Wed, 06 Nov 2002 09:04:31 -0500, Randell B Adkins wrote:
 
  I received that as well yesterday.. Sorry unable to 
  help you on this one.
 
 No problem...just a weird error. Could this be for CFMX only?
  
  However I resorted to doing a simple loop statement:
  
  CFLOOP INDEX=timeDelay FROM=1 TO=3000
  !--- Do nothing (3000 would represent 3 seconds) ---
  /CFLOOP
 
 What did you enter in for the time delay?
 
  
   [EMAIL PROTECTED] 11/06/02 08:49AM 
  Hi,
  
  I downloaded the custom tag cf_sleep. I changed the path of my
 custom
  tags directory to e:\inetpub\customtags and added the custom tag
 path
  via CF Administrator and 
  deleted the default path of c:\cfusion\customtags. When I run my
  template with the cf_sleep I get the following error. Why? What
 does
  it mean? I run CFX tags no 
  problem.
  
  Maybe CF only likes the custom tags to reside in
 c:\cfusion\customtags
  directory?
  
  Here is the error:
  
  
  Error Occurred While Processing Request
  Error Diagnostic Information
  The JVM library path is empty. To use Java objects or Java CFXs, you
  need to install (if not already installed) the JDK or JRE and
 specify
  the path of the JVM in the 
  ColdFusion Administrator. Please read the release notes regarding
 the
  version of the software that is needed. 
  
  
  The error occurred while processing an element with a general
  identifier of (CFOBJECT), occupying document position (10:1) to
  (10:74).
  
  
  Date/Time: 11/06/02 08:38:35
  Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR
  1.0.3705)
  
   
  
  
  
  ---
  Colonel Nathan R. Jessop
  Commanding Officer
  Marine Ground Forces
  Guatanamo Bay, Cuba
  ---
  
  
  
  
  
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: Running custom tag

2002-11-06 Thread todd
er... you don't want this on the users PC, you want this on the server.

~Todd


On Wed, 6 Nov 2002, FlashGuy wrote:

 Thanks.
 
 How can I have my interface install this on users PCs automatically?
 
 On Wed, 6 Nov 2002 09:41:40 -0500 (EST), [EMAIL PROTECTED] wrote:
 
  java.sun.com:
  http://java.sun.com/j2se/1.4.1/index.html
  
  On Wed, 6 Nov 2002, FlashGuy wrote:
  
   OK...where can I download the JVM to install on the server? 
   
   On Wed, 06 Nov 2002 15:07:42 +0100, Zac Spitzer wrote:
   
FlashGuy wrote:
 Hi,
 
 I downloaded the custom tag cf_sleep. I changed the path of my
 custom tags directory to e:\inetpub\customtags and added the custom
 tag path via CF Administrator and deleted the default path of
 c:\cfusion\customtags. When I run my template with the cf_sleep I
 get the following error. Why? What does it mean? I run CFX tags no 
 problem.
 
 Maybe CF only likes the custom tags to reside in
 c:\cfusion\customtags directory?
 
 Here is the error:
 
 
 Error Occurred While Processing Request Error Diagnostic Information 

here is your answer from your post :-) ...

 The JVM library path is empty. To use Java objects or Java CFXs, you
 need to install (if not already installed) the JDK or JRE and specify
 the path of the JVM in the ColdFusion Administrator. Please read the
 release notes regarding the version of the software that is needed.

coz, cf_sleep most likey uses a java function to pause.. which needs a 
jvm to run,

cheers

z


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



Registry Error

2002-11-06 Thread John Lucas
Good Morning,

Over the past two days our server has been encountering the following
error.

Error Diagnostic Information A problem was encountered trying to access
the system registry. Error number 6 occurred.  

Our client variables are being stored in a database, so I am not sure
what is causing the problem with the registry.  Although I did find
something interesting in the executive log.

When I restarted the CF service, it purged client variables.

Most of the entries look like: 

Purged client data from Data Source 'jifiowj'; last visit older than
'{ts '2002-10-10 22:07:41'}'.

However, there are a few in there that appear as:

Purged client ID '279692-29774756'; Last visited '{ts '2002-07-22
17:09:15'}'.

Is it possible that somewhere there are client variables still getting
written to the registry even though it is specified to use the
datasource?

Are there other causes for Error number 6 that I can look into?  I've
tried the archives because I know this was discussed sometime, but I
can't find it.

Our server is running w2k, iis 5, cf 5.0 professional, 1 GB RAM, 1 GHZ
processor and that databases are on a separate SQL server.

Any ideas would be appreciated.

TIA, 
John


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



Re: Any Public sites implemented - FlashMX Communication Server

2002-11-06 Thread todd
Datecam uses the flash comm:
http://www.datecam.com/index.php

Devmx.com uses Flash MX / CFMX together for some things:
http://www.devmx.com/

On Wed, 6 Nov 2002, siva girumala wrote:

 Hi,
 
 Any public sites implemented FlashMX Communication
 Server? Lots of talk is going on the list about
 FlashMX and ColdFusionMX. I would like to see both of
 them in action.
 
 Thank you.
 
 --Siva Girumala
 
 __
 Do you Yahoo!?
 HotJobs - Search new jobs daily now
 http://hotjobs.yahoo.com/
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



Strange occurrence

2002-11-06 Thread Mark A. Kruger - CFG
One of the guys in my user group works for a firm that is very concerned
with security.  They recently ran across this situation.  I've offered a
couple of possible explanations, but I'm interested in any other possible
explanation:


-he wrote---
I had an occurrence today that was very strange. I have a CF 4.5.1 Server
running on NT 4.0 using IIS 4.0 with the latest service packs installed. My
site looks at an incoming request and if they don't already have session
variables set (cached via cookies for 48 hours) they are given a password
screen to log in with.

Around 13:00 Central time today a remote user was attempting to log into the
site. His profile in our database did not have him authorized to log in and
he was denied access as expected. While speaking with our Service Desk who
was attempting to log in as him locally his remote display brought up a page
that would only have been displayed to the local Service Desk technician.
To the best of my knowledge, there was no password information passed to the
remote user (he still wasn't authorized at that point in our profile
database.)

How could he possibly received a page from our server that belonged to our
internal technician? The remote user and the local tech are both situated
behind two different firewalls from the server.
I am at a total loss, and am hoping that someone may be able to shed some
light.
---


I'm thinking he's not getting the full story from the help desk g


Mark A. Kruger, MCSE, CFG
www.cfwebtools.com
www.necfug.com
mxc.blogspot.com
..no more brochures!


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



Using CFDirectory on every page

2002-11-06 Thread mynews
Is there a unacceptable performance hit if I were to use cfdirectory 
on every page of my site?

What I want to do is look in each directory for an include and 
if it isn't there look for that include in the parent directory. 
This will allow me to use the same include for an entire section 
but will give me the ability to overide that include for a sub-section 
if needed.

David Murphy
www.cfugcny.org

___
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.

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



Re: Running custom tag

2002-11-06 Thread todd
Honestly, the sleep tag should be running just fine with the default cfmx 
jvm, but you might want to contact the author of the sleep tag and ask him 
questions.

~Todd

On Wed, 6 Nov 2002 [EMAIL PROTECTED] wrote:

 er... you don't want this on the users PC, you want this on the server.
 
 ~Todd
 
 
 On Wed, 6 Nov 2002, FlashGuy wrote:
 
  Thanks.
  
  How can I have my interface install this on users PCs automatically?
  
  On Wed, 6 Nov 2002 09:41:40 -0500 (EST), [EMAIL PROTECTED] wrote:
  
   java.sun.com:
   http://java.sun.com/j2se/1.4.1/index.html
   
   On Wed, 6 Nov 2002, FlashGuy wrote:
   
OK...where can I download the JVM to install on the server? 

On Wed, 06 Nov 2002 15:07:42 +0100, Zac Spitzer wrote:

 FlashGuy wrote:
  Hi,
  
  I downloaded the custom tag cf_sleep. I changed the path of my
  custom tags directory to e:\inetpub\customtags and added the custom
  tag path via CF Administrator and deleted the default path of
  c:\cfusion\customtags. When I run my template with the cf_sleep I
  get the following error. Why? What does it mean? I run CFX tags no 
  problem.
  
  Maybe CF only likes the custom tags to reside in
  c:\cfusion\customtags directory?
  
  Here is the error:
  
  
  Error Occurred While Processing Request Error Diagnostic Information 
 
 here is your answer from your post :-) ...
 
  The JVM library path is empty. To use Java objects or Java CFXs, you
  need to install (if not already installed) the JDK or JRE and specify
  the path of the JVM in the ColdFusion Administrator. Please read the
  release notes regarding the version of the software that is needed.
 
 coz, cf_sleep most likey uses a java function to pause.. which needs a 
 jvm to run,
 
 cheers
 
 z
 
 

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



Re: Running custom tag

2002-11-06 Thread FlashGuy
OK...I just installed on the server first. Now when I go into the CF 
Administratorunder JVM settings and try to add the Java Virtual Machine Path to point 
to c:\cfusion\java
\jvm.dll it craps out. I even specified the initial dna mac heap size.

Another error:

Unabl eot set the registry key 
hkey_local_machine\software\allaire\coldfusion\currentversion\JVM

A problem was encountered trying to access the system registry. Error number 2 
occurred - The specified registry key does not exist.

What the heck is this all about




On Wed, 6 Nov 2002 09:55:15 -0500 (EST), [EMAIL PROTECTED] wrote:

 er... you don't want this on the users PC, you want this on the server.
 
 ~Todd
 
 
 On Wed, 6 Nov 2002, FlashGuy wrote:
 
  Thanks.
  
  How can I have my interface install this on users PCs automatically?
  
  On Wed, 6 Nov 2002 09:41:40 -0500 (EST), [EMAIL PROTECTED] wrote:
  
   java.sun.com:
   http://java.sun.com/j2se/1.4.1/index.html
   
   On Wed, 6 Nov 2002, FlashGuy wrote:
   
OK...where can I download the JVM to install on the server? 

On Wed, 06 Nov 2002 15:07:42 +0100, Zac Spitzer wrote:

 FlashGuy wrote:
  Hi,
  
  I downloaded the custom tag cf_sleep. I changed the path of my
  custom tags directory to e:\inetpub\customtags and added the custom
  tag path via CF Administrator and deleted the default path of
  c:\cfusion\customtags. When I run my template with the cf_sleep I
  get the following error. Why? What does it mean? I run CFX tags no 
  problem.
  
  Maybe CF only likes the custom tags to reside in
  c:\cfusion\customtags directory?
  
  Here is the error:
  
  
  Error Occurred While Processing Request Error Diagnostic Information 
 
 here is your answer from your post :-) ...
 
  The JVM library path is empty. To use Java objects or Java CFXs, you
  need to install (if not already installed) the JDK or JRE and specify
  the path of the JVM in the ColdFusion Administrator. Please read the
  release notes regarding the version of the software that is needed.
 
 coz, cf_sleep most likey uses a java function to pause.. which needs a 
 jvm to run,
 
 cheers
 
 z
 
 

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



RE: Webserver software for NT 4.0

2002-11-06 Thread Mark A. Kruger - CFG
Doug,

Right - sorry.  But you can upgrade to IIS 4 - which (for this purpose) is
very similar to 5.  I believe you get it from the option pack.  Am I right?

-mk

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: Tuesday, November 05, 2002 5:19 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


IIS 5 is for Win2000 and AFAIK will not run on NT 4.0.  For 'normal' CF
apps, I haven't seen any difference betwix IS 4 or IIS 5.

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 6:12 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


Nothings wrong with IIS 4.0 or IIS 5.0... as a matter of fact
I'd rather
use that instead of learning Apache in two days... My web server
experience is limited developing CF with IIS 5.0 or PWS ... is the
upgrade to 5.0 downloadable from the net... I checked Microsoft's site
and didn't see it... or do you have to get it off a W2k server disk ?

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: Tuesday, November 05, 2002 5:32 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0

There is IIS4 for NT 4.0...what is wrong with that on an Intranet?  You
could use Apache which is free(as in beer).


Doug

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 5:25 PM
To: CF-Talk
Subject: SOT: Webserver software for NT 4.0


Hello. I have a client who wants to set up a small intranet with a NT
4.0 server (for future CF apps). I'm looking for recommendations for
good cheap webserver software for NT 4.0 other than the built in IIS
3.0.. any downloadables (upgrades or otherwise) free from Microsoft or
elsewhere would obviously be great :-)

Tim Laureska
1st-String Technolgies
443-496-1261








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



RE: Any Public sites implemented - FlashMX Communication Server

2002-11-06 Thread Clint Tredway
I am currently changing a site from CF 4.5 to CFMX/Flash MX. We may
purchase the Comm Server to add live support to our web site as well.

Clint

-Original Message-
From: [EMAIL PROTECTED] [mailto:todd;web-rat.com] 
Sent: Wednesday, November 06, 2002 8:59 AM
To: CF-Talk
Subject: Re: Any Public sites implemented - FlashMX Communication Server


Datecam uses the flash comm:
http://www.datecam.com/index.php

Devmx.com uses Flash MX / CFMX together for some things:
http://www.devmx.com/

On Wed, 6 Nov 2002, siva girumala wrote:

 Hi,
 
 Any public sites implemented FlashMX Communication
 Server? Lots of talk is going on the list about
 FlashMX and ColdFusionMX. I would like to see both of
 them in action.
 
 Thank you.
 
 --Siva Girumala
 
 __
 Do you Yahoo!?
 HotJobs - Search new jobs daily now
 http://hotjobs.yahoo.com/
 

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



RE: Webserver software for NT 4.0

2002-11-06 Thread Joshua Miller
WebSite Pro is a pretty nice Webserver for NT ... It's easy to
administer and pretty powerful.

Joshua Miller
[EMAIL PROTECTED]


-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com] 
Sent: Tuesday, November 05, 2002 6:19 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


IIS 5 is for Win2000 and AFAIK will not run on NT 4.0.  For 'normal' CF
apps, I haven't seen any difference betwix IS 4 or IIS 5. 

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 6:12 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


Nothings wrong with IIS 4.0 or IIS 5.0... as a matter of fact
I'd rather
use that instead of learning Apache in two days... My web server
experience is limited developing CF with IIS 5.0 or PWS ... is the
upgrade to 5.0 downloadable from the net... I checked Microsoft's site
and didn't see it... or do you have to get it off a W2k server disk ?

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: Tuesday, November 05, 2002 5:32 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0

There is IIS4 for NT 4.0...what is wrong with that on an Intranet?  You

could use Apache which is free(as in beer).


Doug

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 5:25 PM
To: CF-Talk
Subject: SOT: Webserver software for NT 4.0


Hello. I have a client who wants to set up a small intranet with a NT 
4.0 server (for future CF apps). I'm looking for recommendations for 
good cheap webserver software for NT 4.0 other than the built in IIS 
3.0.. any downloadables (upgrades or otherwise) free from Microsoft or

elsewhere would obviously be great :-)
 
Tim Laureska
1st-String Technolgies
443-496-1261
 







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



RE: Strange occurrence

2002-11-06 Thread Robertson-Ravo, Neil (REC)
sessions?

-Original Message-
From: Mark A. Kruger - CFG [mailto:mkruger;cfwebtools.com]
Sent: 06 November 2002 14:40
To: CF-Talk
Subject: Strange occurrence


One of the guys in my user group works for a firm that is very concerned
with security.  They recently ran across this situation.  I've offered a
couple of possible explanations, but I'm interested in any other possible
explanation:


-he wrote---
I had an occurrence today that was very strange. I have a CF 4.5.1 Server
running on NT 4.0 using IIS 4.0 with the latest service packs installed. My
site looks at an incoming request and if they don't already have session
variables set (cached via cookies for 48 hours) they are given a password
screen to log in with.

Around 13:00 Central time today a remote user was attempting to log into the
site. His profile in our database did not have him authorized to log in and
he was denied access as expected. While speaking with our Service Desk who
was attempting to log in as him locally his remote display brought up a page
that would only have been displayed to the local Service Desk technician.
To the best of my knowledge, there was no password information passed to the
remote user (he still wasn't authorized at that point in our profile
database.)

How could he possibly received a page from our server that belonged to our
internal technician? The remote user and the local tech are both situated
behind two different firewalls from the server.
I am at a total loss, and am hoping that someone may be able to shed some
light.
---


I'm thinking he's not getting the full story from the help desk g


Mark A. Kruger, MCSE, CFG
www.cfwebtools.com
www.necfug.com
mxc.blogspot.com
.no more brochures!



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



Re: Running custom tag

2002-11-06 Thread FlashGuy
I'm not running CFMX.


On Wed, 6 Nov 2002 10:06:45 -0500 (EST), [EMAIL PROTECTED] wrote:

 Honestly, the sleep tag should be running just fine with the default cfmx 
 jvm, but you might want to contact the author of the sleep tag and ask him 
 questions.
 
 ~Todd
 
 On Wed, 6 Nov 2002 [EMAIL PROTECTED] wrote:
 
  er... you don't want this on the users PC, you want this on the server.
  
  ~Todd
  
  
  On Wed, 6 Nov 2002, FlashGuy wrote:
  
   Thanks.
   
   How can I have my interface install this on users PCs automatically?
   
   On Wed, 6 Nov 2002 09:41:40 -0500 (EST), [EMAIL PROTECTED] wrote:
   
java.sun.com:
http://java.sun.com/j2se/1.4.1/index.html

On Wed, 6 Nov 2002, FlashGuy wrote:

 OK...where can I download the JVM to install on the server? 
 
 On Wed, 06 Nov 2002 15:07:42 +0100, Zac Spitzer wrote:
 
  FlashGuy wrote:
   Hi,
   
   I downloaded the custom tag cf_sleep. I changed the path of my
   custom tags directory to e:\inetpub\customtags and added the custom
   tag path via CF Administrator and deleted the default path of
   c:\cfusion\customtags. When I run my template with the cf_sleep I
   get the following error. Why? What does it mean? I run CFX tags no 
   problem.
   
   Maybe CF only likes the custom tags to reside in
   c:\cfusion\customtags directory?
   
   Here is the error:
   
   
   Error Occurred While Processing Request Error Diagnostic Information 
  
  here is your answer from your post :-) ...
  
   The JVM library path is empty. To use Java objects or Java CFXs, you
   need to install (if not already installed) the JDK or JRE and specify
   the path of the JVM in the ColdFusion Administrator. Please read the
   release notes regarding the version of the software that is needed.
  
  coz, cf_sleep most likey uses a java function to pause.. which needs a 
  jvm to run,
  
  cheers
  
  z
  
  
 

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



CFMX Installation Problem on Linux

2002-11-06 Thread SMR
I've downloaded the trial version of CFMX from MM and trying to install it on Linux. 
Here is my error

leadfour:/home/webmaster# ./coldfusion-60-linux-en.bin
Preparing to install...
Extracting the JRE from the installer archive...
Unpacking the JRE...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...

Launching installer...

/tmp/install.dir.23866/Linux/resource/jre/bin/java: /bin/realpath: No such file
or directory
/tmp/install.dir.23866/Linux/resource/jre/bin/java: /bin/realpath: No such file
or directory
grep: /lib/jvm.cfg: No such file or directory
grep: /lib/jvm.cfg: No such file or directory
java was not found in /bin/i386/native_threads/java
leadfour:/home/webmaster#


Can anyone shed any lights?  I've installed the JRE 1.4.1 on linux.. I don't see the 
directory /bin/i386/native_threads/java ...

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



Re: Using CFDirectory on every page

2002-11-06 Thread Pete Ruckelshaus
Why use CFDIRECTORY when you can use try/catch blocks?  Here's how I
approached the is the include there problem in one of my apps:


cftry
  img src=#request.app.path#images/spacers/trans.gif width=12
height=4 /img src=#request.app.path#images/spacers/trans.gif
width=146 height=4 /brspan class=navHeaderNews amp;
Events/span
  cfinclude template=/generated/related_links.txtbr
  cfcatch type=MissingInclude
   !--- If the include file is missing, try to write it again... ---
   cftry
cfinclude template=/_admin_tools/related_links_to_text.cfm
!--- Give the include file time to be written...in this case, 2
seconds. ---
cfset lockname = CreateUUID()
 cflock name=#lockname# type=readonly timeout=0
  cftry
   cflock name=#lockname# type=exclusive timeout=2/cflock
  cfcatch type=lock/cfcatch
  /cftry
 /cflock
!--- And then, try the include again... ---
  img src=#request.app.path#images/spacers/trans.gif width=12
height=4 /img src=#request.app.path#images/spacers/trans.gif
width=146 height=4 /brspan class=navHeaderNews amp;
Events/span
cfinclude template=/generated/related_links.txtbr
!--- If it's still missing, just do nothing ---
cfcatch type=missingincludeMissing Include Error/cfcatch
   /cftry
  /cfcatch
  cfcatch type=AnyUnknown error/cfcatch
 /cftry


Works like a charm, no more missing include errors.

Pete

- Original Message -
From: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, November 06, 2002 9:40 AM
Subject: Using CFDirectory on every page


 Is there a unacceptable performance hit if I were to use cfdirectory
 on every page of my site?

 What I want to do is look in each directory for an include and
 if it isn't there look for that include in the parent directory.
 This will allow me to use the same include for an entire section
 but will give me the ability to overide that include for a sub-section
 if needed.

 David Murphy
 www.cfugcny.org

 ___
 Sent by ePrompter, the premier email notification software.
 Free download at http://www.ePrompter.com.

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



Re: Running custom tag

2002-11-06 Thread todd
Are you running CFMX or CF5 ?  CF_SLEEP is a CFMX only tag.


On Wed, 6 Nov 2002, FlashGuy wrote:

 OK...I just installed on the server first. Now when I go into the CF 
Administratorunder JVM settings and try to add the Java Virtual Machine Path to point 
to c:\cfusion\java
 \jvm.dll it craps out. I even specified the initial dna mac heap size.
 
 Another error:
 
 Unabl eot set the registry key 
hkey_local_machine\software\allaire\coldfusion\currentversion\JVM
 
 A problem was encountered trying to access the system registry. Error number 2 
occurred - The specified registry key does not exist.
 
 What the heck is this all about
 
 
 
 
 On Wed, 6 Nov 2002 09:55:15 -0500 (EST), [EMAIL PROTECTED] wrote:
 
  er... you don't want this on the users PC, you want this on the server.
  
  ~Todd
  
  
  On Wed, 6 Nov 2002, FlashGuy wrote:
  
   Thanks.
   
   How can I have my interface install this on users PCs automatically?
   
   On Wed, 6 Nov 2002 09:41:40 -0500 (EST), [EMAIL PROTECTED] wrote:
   
java.sun.com:
http://java.sun.com/j2se/1.4.1/index.html

On Wed, 6 Nov 2002, FlashGuy wrote:

 OK...where can I download the JVM to install on the server? 
 
 On Wed, 06 Nov 2002 15:07:42 +0100, Zac Spitzer wrote:
 
  FlashGuy wrote:
   Hi,
   
   I downloaded the custom tag cf_sleep. I changed the path of my
   custom tags directory to e:\inetpub\customtags and added the custom
   tag path via CF Administrator and deleted the default path of
   c:\cfusion\customtags. When I run my template with the cf_sleep I
   get the following error. Why? What does it mean? I run CFX tags no 
   problem.
   
   Maybe CF only likes the custom tags to reside in
   c:\cfusion\customtags directory?
   
   Here is the error:
   
   
   Error Occurred While Processing Request Error Diagnostic Information 
  
  here is your answer from your post :-) ...
  
   The JVM library path is empty. To use Java objects or Java CFXs, you
   need to install (if not already installed) the JDK or JRE and specify
   the path of the JVM in the ColdFusion Administrator. Please read the
   release notes regarding the version of the software that is needed.
  
  coz, cf_sleep most likey uses a java function to pause.. which needs a 
  jvm to run,
  
  cheers
  
  z
  
  
 

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



MM advises against ListAppend and ListPrepend?

2002-11-06 Thread Gyrus
Just reading 'Reality ColdFusion MX: Intranets and Content Management', came
across this curious bit:

Notice that Toshi builds this list by creating it as a string, not a list,
since Macromedia now recommends that you avoid listAppend() and
listPrepend() if possible. (p. 231)

Is this true? Why so? Did I miss a meeting?!

I can't find any reference to this on the MM site or anywhere else. Seems
like an odd way for MM to sneak in what would be quite an impactful
recommendation - and not give any reasoning.

Gyrus
[EMAIL PROTECTED]
work: http://www.tengai.co.uk
play: http://www.norlonto.net
PGP key available

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



RE: Using CFDirectory on every page

2002-11-06 Thread Mike Townend
Why not try catch a cfinclude instead?

CFTRY
CFINCLUDE TEMPLATE=localtemplate.cfm
CFCATCH
!--- file not found ---
CFINCLUDE TEMPLATE=../parentinclude.cfm
.CFCATCH
/CFTRY


Or maybe 

CFIF FileExists(ExpandPath(include.cfm))
CFINCLUDE TEMPLATE=include.cfm
CFELSE
!--- include the parent file ---
CFINCLUDE TEMPLATE=../parent.cfm
/CFIF

HTH



-Original Message-
From: [EMAIL PROTECTED] [mailto:mynews;twcny.rr.com] 
Sent: Wednesday, November 6, 2002 14:41
To: CF-Talk
Subject: Using CFDirectory on every page


Is there a unacceptable performance hit if I were to use cfdirectory 
on every page of my site?

What I want to do is look in each directory for an include and 
if it isn't there look for that include in the parent directory. 
This will allow me to use the same include for an entire section 
but will give me the ability to overide that include for a sub-section 
if needed.

David Murphy
www.cfugcny.org

___
Sent by ePrompter, the premier email notification software. Free
download at http://www.ePrompter.com.


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



RE: sql help -- joining 4 tables

2002-11-06 Thread Mark A. Kruger - CFG
Jason,

first, you should alias the tables and select real column names (get rid of
the asterick). Second, start with what you are after (probably the book in
this case)

Third, adjust the kinds of joins (inner outer full) - I've left those out
intentionally. Fourth, use query analyzer or some other non-CF tool to get
this query right before you try it in CF. It will save you some headaches
and the error information may be more useful.

-mk


 SELECT   BA.authorID, A.Author, BI.BookImage_id, B.book

 FROM  Book B   JOIN BookImage BI
ON B.Bookid = BI.Bookid
JOIN  bookAuthor BA
ON B.bookid = BA.bookAuthor_bookid
JOIN Author A
ON BA.bookAuthor_authorid = A.Authorid

 WHERE  (A.authorFirstName LIKE '%#form.searchTerms#%'
  OR A.authorLastName LIKE '%#form.searchTerms#%'
  OR B.bookTitle LIKE '%#form.searchTerms#%'
  OR B.BookISBN LIKE '%#form.searchTerms#%')

 ORDER BY   B.bookTitle


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



RE: Using CFDirectory on every page

2002-11-06 Thread Philip Arnold - ASP
 Is there a unacceptable performance hit if I were to use cfdirectory
 on every page of my site?

 What I want to do is look in each directory for an include and
 if it isn't there look for that include in the parent directory.
 This will allow me to use the same include for an entire section
 but will give me the ability to overide that include for a
 sub-section if needed.

Why can't you use application.cfm?

CF naturally walks the directory tree if it can't find one...

Philip Arnold
Technical Director
Certified ColdFusion Developer
ASP Multimedia Limited
Switchboard: +44 (0)20 8680 8099
Fax: +44 (0)20 8686 7911

www.aspmedia.co.uk
www.aspevents.net

An ISO9001 registered company.

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


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



RE: Verity Head Aches EMERGENCY

2002-11-06 Thread Sean McCarthy
Are you using k2?

If so is the port number correct? In the admin and in the ini file.  

sean


-Original Message-
From: Gaulin, Mark [mailto:mgaulin;globalspec.com]
Sent: Wednesday, November 06, 2002 9:17 AM
To: CF-Talk
Subject: RE: Verity Head Aches EMERGENCY


Did you try restarting CF? (and/or the Verity K2 service, if you are using
that?)
Mark

-Original Message-
From: Timothy Heald [mailto:healdt;dsmail.state.gov]
Sent: Wednesday, November 06, 2002 8:07 AM
To: CF-Talk
Subject: RE: Verity Head Aches EMERGENCY


Hey,
We just found out that all Verity on our production server is hosed
up.  We get the VdkSessionNew error no matter what we do.

Nothing we do seems to be helping.  Can't repair, delete, purge,
optimize or create new ones.

Anyone know anything about this?

Our setup:

NT 4 SP 6
CF 5 on IIS 4
Oracle 8.17i

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 

-Original Message-
From: Sean McCarthy [mailto:SMcCarthy;HealthObjects.com]
Sent: Tuesday, November 05, 2002 4:29 PM
To: CF-Talk
Subject: RE: Verity Head Aches


are you using k2? if so did you update your k2.ini?

did you try restarting the services?

try dumping it out to see if the contents are good

-Original Message-
From: Timothy Heald [mailto:healdt;dsmail.state.gov]
Sent: Tuesday, November 05, 2002 2:52 PM
To: CF-Talk
Subject: Verity Head Aches


Hi.

I have these verity collections that have 250,000 and 150,000 row
queries indexed in each.  We just moved them from our personal Win 2K dev
box, to our production NT box.  Now the search I built for them keeps
throwing errors like:

Error executing CFSEARCH.

Error # -125 [ff83] VdkSessionNew

Have any of you seen this before?  Any help would be much
appreciated.

Tim




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



RE: Webserver software for NT 4.0

2002-11-06 Thread Robertson-Ravo, Neil (REC)
its not free though is it?

-Original Message-
From: Joshua Miller [mailto:josh;joshuasmiller.com]
Sent: 06 November 2002 14:50
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


WebSite Pro is a pretty nice Webserver for NT ... It's easy to
administer and pretty powerful.

Joshua Miller
[EMAIL PROTECTED]


-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com] 
Sent: Tuesday, November 05, 2002 6:19 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


IIS 5 is for Win2000 and AFAIK will not run on NT 4.0.  For 'normal' CF
apps, I haven't seen any difference betwix IS 4 or IIS 5. 

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 6:12 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


Nothings wrong with IIS 4.0 or IIS 5.0... as a matter of fact
I'd rather
use that instead of learning Apache in two days... My web server
experience is limited developing CF with IIS 5.0 or PWS ... is the
upgrade to 5.0 downloadable from the net... I checked Microsoft's site
and didn't see it... or do you have to get it off a W2k server disk ?

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: Tuesday, November 05, 2002 5:32 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0

There is IIS4 for NT 4.0...what is wrong with that on an Intranet?  You

could use Apache which is free(as in beer).


Doug

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 5:25 PM
To: CF-Talk
Subject: SOT: Webserver software for NT 4.0


Hello. I have a client who wants to set up a small intranet with a NT 
4.0 server (for future CF apps). I'm looking for recommendations for 
good cheap webserver software for NT 4.0 other than the built in IIS 
3.0.. any downloadables (upgrades or otherwise) free from Microsoft or

elsewhere would obviously be great :-)
 
Tim Laureska
1st-String Technolgies
443-496-1261
 








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



RE: Strange occurrence

2002-11-06 Thread S . Isaac Dealey
incomplete / improper or generally poor locking of session variables would
be my first guess...

 sessions?

 -Original Message-
 From: Mark A. Kruger - CFG [mailto:mkruger;cfwebtools.com]
 Sent: 06 November 2002 14:40
 To: CF-Talk
 Subject: Strange occurrence


 One of the guys in my user group works for a firm that is
 very concerned
 with security.  They recently ran across this situation.
 I've offered a
 couple of possible explanations, but I'm interested in any
 other possible
 explanation:


 -he wrote---
 I had an occurrence today that was very strange. I have a
 CF 4.5.1 Server
 running on NT 4.0 using IIS 4.0 with the latest service
 packs installed. My
 site looks at an incoming request and if they don't
 already have session
 variables set (cached via cookies for 48 hours) they are
 given a password
 screen to log in with.

 Around 13:00 Central time today a remote user was
 attempting to log into the
 site. His profile in our database did not have him
 authorized to log in and
 he was denied access as expected. While speaking with our
 Service Desk who
 was attempting to log in as him locally his remote display
 brought up a page
 that would only have been displayed to the local Service
 Desk technician.
 To the best of my knowledge, there was no password
 information passed to the
 remote user (he still wasn't authorized at that point in
 our profile
 database.)

 How could he possibly received a page from our server that
 belonged to our
 internal technician? The remote user and the local tech
 are both situated
 behind two different firewalls from the server.
 I am at a total loss, and am hoping that someone may be
 able to shed some
 light.
 ---


 I'm thinking he's not getting the full story from the help
 desk g


 Mark A. Kruger, MCSE, CFG
 www.cfwebtools.com
 www.necfug.com
 mxc.blogspot.com
 .no more brochures!



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


Isaac
Certified Advanced ColdFusion 5 Developer

www.turnkey.to
954-776-0046

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



RE: Webserver software for NT 4.0

2002-11-06 Thread Tim Laureska
Yes you're right ... I found the option pack files on microsoft's
site... they make it a pain though there are 52 files to be
downloaded individually

Tim

-Original Message-
From: Mark A. Kruger - CFG [mailto:mkruger;cfwebtools.com] 
Sent: Wednesday, November 06, 2002 9:47 AM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0

Doug,

Right - sorry.  But you can upgrade to IIS 4 - which (for this purpose)
is
very similar to 5.  I believe you get it from the option pack.  Am I
right?

-mk

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: Tuesday, November 05, 2002 5:19 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


IIS 5 is for Win2000 and AFAIK will not run on NT 4.0.  For 'normal' CF
apps, I haven't seen any difference betwix IS 4 or IIS 5.

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 6:12 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


Nothings wrong with IIS 4.0 or IIS 5.0... as a matter of fact
I'd rather
use that instead of learning Apache in two days... My web server
experience is limited developing CF with IIS 5.0 or PWS ... is the
upgrade to 5.0 downloadable from the net... I checked Microsoft's site
and didn't see it... or do you have to get it off a W2k server disk ?

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: Tuesday, November 05, 2002 5:32 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0

There is IIS4 for NT 4.0...what is wrong with that on an Intranet?  You
could use Apache which is free(as in beer).


Doug

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 5:25 PM
To: CF-Talk
Subject: SOT: Webserver software for NT 4.0


Hello. I have a client who wants to set up a small intranet with a NT
4.0 server (for future CF apps). I'm looking for recommendations for
good cheap webserver software for NT 4.0 other than the built in IIS
3.0.. any downloadables (upgrades or otherwise) free from Microsoft or
elsewhere would obviously be great :-)

Tim Laureska
1st-String Technolgies
443-496-1261









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



Re: Using CFDirectory on every page

2002-11-06 Thread Rick Root
[EMAIL PROTECTED] wrote:
 Is there a unacceptable performance hit if I were to use cfdirectory 
 on every page of my site?
 
 What I want to do is look in each directory for an include and 
 if it isn't there look for that include in the parent directory. 
 This will allow me to use the same include for an entire section 
 but will give me the ability to overide that include for a sub-section 
 if needed.

Wouldn't you just want to use the FileExists() function rather than 
using CFDirectory?

  - Rick

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



RE: Strange occurrence

2002-11-06 Thread Mark A. Kruger - CFG
Rob,

Here's the login procedure. I asked him what happens if a user makes a
request with a spoofed IP - does he get authenticated as IIUSR_xxx? I'm
still waiting for a reply.

-mk

---
When someone comes to our site (x)  on the
DMZ network the application.cfm looks to see if certain Session variables
exist.  Session variables are set to expire in 48 hours.  If they don't
exist then it looks to see what their IP address is.

Our internal firewall (OSS network) has an IP address of x.x.x.x  When
it see's this address it routes them back inside the OSS network (intranet),
grabs their NT logon information and passes them back to the DMZ (extranet)
with their credentials to a specific page that logs them in using their NT
credentials and sets the necessary session variables and then locates to the
index page.

All other IP addresses are presented with a logon page (that our technicians
can use) at http:xx  This page accepts three pieces of information.  A
Customer Code, User ID and
password.  It validates these against an SQL database and if valid sets the
necessary session variables and then relocates to the index page again.



-Original Message-
From: Robertson-Ravo, Neil (REC)
[mailto:Neil.Robertson-Ravo;csd.reedexpo.com]
Sent: Wednesday, November 06, 2002 8:49 AM
To: CF-Talk
Subject: RE: Strange occurrence


sessions?

-Original Message-
From: Mark A. Kruger - CFG [mailto:mkruger;cfwebtools.com]
Sent: 06 November 2002 14:40
To: CF-Talk
Subject: Strange occurrence


One of the guys in my user group works for a firm that is very concerned
with security.  They recently ran across this situation.  I've offered a
couple of possible explanations, but I'm interested in any other possible
explanation:


-he wrote---
I had an occurrence today that was very strange. I have a CF 4.5.1 Server
running on NT 4.0 using IIS 4.0 with the latest service packs installed. My
site looks at an incoming request and if they don't already have session
variables set (cached via cookies for 48 hours) they are given a password
screen to log in with.

Around 13:00 Central time today a remote user was attempting to log into the
site. His profile in our database did not have him authorized to log in and
he was denied access as expected. While speaking with our Service Desk who
was attempting to log in as him locally his remote display brought up a page
that would only have been displayed to the local Service Desk technician.
To the best of my knowledge, there was no password information passed to the
remote user (he still wasn't authorized at that point in our profile
database.)

How could he possibly received a page from our server that belonged to our
internal technician? The remote user and the local tech are both situated
behind two different firewalls from the server.
I am at a total loss, and am hoping that someone may be able to shed some
light.
---


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



Re: Running custom tag

2002-11-06 Thread todd
That would be your problem. :)  CF_Sleep is specifically for CFMX.

~Todd

On Wed, 6 Nov 2002, FlashGuy wrote:

 I'm not running CFMX.
 
 
 On Wed, 6 Nov 2002 10:06:45 -0500 (EST), [EMAIL PROTECTED] wrote:
 
  Honestly, the sleep tag should be running just fine with the default cfmx 
  jvm, but you might want to contact the author of the sleep tag and ask him 
  questions.
  
  ~Todd
  
  On Wed, 6 Nov 2002 [EMAIL PROTECTED] wrote:
  
   er... you don't want this on the users PC, you want this on the server.
   
   ~Todd
   
   
   On Wed, 6 Nov 2002, FlashGuy wrote:
   
Thanks.

How can I have my interface install this on users PCs automatically?

On Wed, 6 Nov 2002 09:41:40 -0500 (EST), [EMAIL PROTECTED] wrote:

 java.sun.com:
 http://java.sun.com/j2se/1.4.1/index.html
 
 On Wed, 6 Nov 2002, FlashGuy wrote:
 
  OK...where can I download the JVM to install on the server? 
  
  On Wed, 06 Nov 2002 15:07:42 +0100, Zac Spitzer wrote:
  
   FlashGuy wrote:
Hi,

I downloaded the custom tag cf_sleep. I changed the path of my
custom tags directory to e:\inetpub\customtags and added the custom
tag path via CF Administrator and deleted the default path of
c:\cfusion\customtags. When I run my template with the cf_sleep I
get the following error. Why? What does it mean? I run CFX tags no 
problem.

Maybe CF only likes the custom tags to reside in
c:\cfusion\customtags directory?

Here is the error:


Error Occurred While Processing Request Error Diagnostic Information 
   
   here is your answer from your post :-) ...
   
The JVM library path is empty. To use Java objects or Java CFXs, you
need to install (if not already installed) the JDK or JRE and specify
the path of the JVM in the ColdFusion Administrator. Please read the
release notes regarding the version of the software that is needed.
   
   coz, cf_sleep most likey uses a java function to pause.. which needs a 
   jvm to run,
   
   cheers
   
   z
   
   
  
 

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



Re: Using CFDirectory on every page

2002-11-06 Thread Rick Root
Pete Ruckelshaus wrote:
 Why use CFDIRECTORY when you can use try/catch blocks?  Here's how I
 approached the is the include there problem in one of my apps:

That's another good solution... I've done something similar in the past 
but I think it generated a lot of errors in my error logs and I wasn't a 
fan of that :)

  - Rick



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



Re: Running custom tag

2002-11-06 Thread FlashGuy
Well...theres my problem. I'm running CF5

On Wed, 6 Nov 2002 10:19:06 -0500 (EST), [EMAIL PROTECTED] wrote:

 Are you running CFMX or CF5 ?  CF_SLEEP is a CFMX only tag.
 
 
 On Wed, 6 Nov 2002, FlashGuy wrote:
 
  OK...I just installed on the server first. Now when I go into the CF 
Administratorunder JVM settings and try to add the Java Virtual Machine Path to point 
to c:\cfusion
\java
  \jvm.dll it craps out. I even specified the initial dna mac heap size.
  
  Another error:
  
  Unabl eot set the registry key 
hkey_local_machine\software\allaire\coldfusion\currentversion\JVM
  
  A problem was encountered trying to access the system registry. Error number 2 
occurred - The specified registry key does not exist.
  
  What the heck is this all about
  
  
  
  
  On Wed, 6 Nov 2002 09:55:15 -0500 (EST), [EMAIL PROTECTED] wrote:
  
   er... you don't want this on the users PC, you want this on the server.
   
   ~Todd
   
   
   On Wed, 6 Nov 2002, FlashGuy wrote:
   
Thanks.

How can I have my interface install this on users PCs automatically?

On Wed, 6 Nov 2002 09:41:40 -0500 (EST), [EMAIL PROTECTED] wrote:

 java.sun.com:
 http://java.sun.com/j2se/1.4.1/index.html
 
 On Wed, 6 Nov 2002, FlashGuy wrote:
 
  OK...where can I download the JVM to install on the server? 
  
  On Wed, 06 Nov 2002 15:07:42 +0100, Zac Spitzer wrote:
  
   FlashGuy wrote:
Hi,

I downloaded the custom tag cf_sleep. I changed the path of my
custom tags directory to e:\inetpub\customtags and added the custom
tag path via CF Administrator and deleted the default path of
c:\cfusion\customtags. When I run my template with the cf_sleep I
get the following error. Why? What does it mean? I run CFX tags no 
problem.

Maybe CF only likes the custom tags to reside in
c:\cfusion\customtags directory?

Here is the error:


Error Occurred While Processing Request Error Diagnostic Information 
   
   here is your answer from your post :-) ...
   
The JVM library path is empty. To use Java objects or Java CFXs, you
need to install (if not already installed) the JDK or JRE and specify
the path of the JVM in the ColdFusion Administrator. Please read the
release notes regarding the version of the software that is needed.
   
   coz, cf_sleep most likey uses a java function to pause.. which needs a 
   jvm to run,
   
   cheers
   
   z
   
   
  
 

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



Re: MM advises against ListAppend and ListPrepend?

2002-11-06 Thread Randell B Adkins
Hmm thats intersting... Performance Issue??

Anyone have insight on this?

 [EMAIL PROTECTED] 11/06/02 09:57AM 
Just reading 'Reality ColdFusion MX: Intranets and Content Management',
came
across this curious bit:

Notice that Toshi builds this list by creating it as a string, not a
list,
since Macromedia now recommends that you avoid listAppend() and
listPrepend() if possible. (p. 231)

Is this true? Why so? Did I miss a meeting?!

I can't find any reference to this on the MM site or anywhere else.
Seems
like an odd way for MM to sneak in what would be quite an impactful
recommendation - and not give any reasoning.

Gyrus
[EMAIL PROTECTED] 
work: http://www.tengai.co.uk 
play: http://www.norlonto.net 
PGP key available


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



Re: ColdFusion 5 burping

2002-11-06 Thread Howie Hamlin
I restarted CF and this problem is still occurring.  Does anyone have any other 
thoughts?

Thanks,

Howie

- Original Message -
From: Kym Kovan [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, November 04, 2002 10:16 PM
Subject: Re: ColdFusion 5 burping


 Hi Howie,

 For the last week or so our CF5/Enterprise server goes into a state where
 processing a template only returns an error
 like:
 
 
 Error Diagnostic Information
 
 unknown exception condition
 
 CFMLInterpreterImp::writeEmergencyMessage
 

 This often happens if the server is running low on resources. It could be
 less obvious stuff too, like registry getting full, as well as just memory,
 etc.


 --

 Yours,

 Kym

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



using cfdirectory on every page

2002-11-06 Thread mynews
Is there a unacceptable performance hit if I were to use cfdirectory 
on every page of my site?

What I want to do is look in each directory for an include and 
if it isn't there look for that include in the parent directory. 
This will allow me to use the same include for an entire section 
but will give me the ability to overide that include for a sub-section 
if needed.

David Murphy
www.cfugcny.org

___
Sent by ePrompter, the premier email notification software.
Free download at http://www.ePrompter.com.

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



Re: MM advises against ListAppend and ListPrepend?

2002-11-06 Thread Jochem van Dieten
Gyrus wrote:

 Just reading 'Reality ColdFusion MX: Intranets and Content 
 Management', came across this curious bit:

 Notice that Toshi builds this list by creating it as a string, not a 
 list, since Macromedia now recommends that you avoid listAppend() and
 listPrepend() if possible. (p. 231)

 Is this true? Why so? Did I miss a meeting?!

 I can't find any reference to this on the MM site or anywhere else. 
 Seems like an odd way for MM to sneak in what would be quite an 
 impactful recommendation - and not give any reasoning.

I don't know if it is true, but from a performance point of view, *I* 
recommend against them. Use arrays, not lists.

Jochem

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



verity

2002-11-06 Thread Robert Orlini
Hello,

Anyway using CF scripting to schedule a delete of a collection and re-indexing without 
going through the CF Admin? Anyone already coded this that I can see or is the admin 
the only way?

Also, anyone out there using FP 200, IIS 4.0 w/CF's Verity? When I do a search at 
times the summary displays extraneous information which I see is coming from FP's vti 
directory such as:

vti_encoding:SR|utf8-nl vti_author:SR|Administrator vti_modifiedby:SR|rorlini 
vti_timecreated:TR|30 Mar 2001 19:17:33 - vti_timelastmodified:TR|01 Jul 2002 
17:59:50 - vti_title:SR|World Film Directors - Volumes 1 and 2 
vti_extenderversion:SR|4.0.2.5526 vti_backlinkinfo:VX|databases/amico/biobank.htm 
vti_nexttolasttimemodified:TR|07 Jun 2002 16:05:53 - 
vti_lineageid:SR|{36E099A3-85B4-11D5-B994-00609780A915} vti_filesize:IR|9027 
vti_metatags:VR|HTTP-EQUIV=Content-Type text/html;\\ ...

Any fix for this? or should I just leave out the summary altogether?

Thanks.

Robert O.
HWW

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



RE: Using CFDirectory on every page

2002-11-06 Thread mynews
Nice idea. Thanks!

= = = Original message = = =

Why not try catch a cfinclude instead?

CFTRY
~CFINCLUDE TEMPLATE=localtemplate.cfm
~CFCATCH
~~!--- file not found ---
~~CFINCLUDE TEMPLATE=../parentinclude.cfm
~.CFCATCH
/CFTRY


Or maybe 

CFIF FileExists(ExpandPath(include.cfm))
~CFINCLUDE TEMPLATE=include.cfm
CFELSE
~!--- include the parent file ---
~CFINCLUDE TEMPLATE=../parent.cfm
/CFIF

HTH



-Original Message-
From: [EMAIL PROTECTED] [mailto:mynews;twcny.rr.com] 
Sent: Wednesday, November 6, 2002 14:41
To: CF-Talk
Subject: Using CFDirectory on every page


Is there a unacceptable performance hit if I were to use cfdirectory 

on every page of my site?

What I want to do is look in each directory for an include and 

if it isn't there look for that include in the parent directory. 

This will allow me to use the same include for an entire section 

but will give me the ability to overide that include for a sub-section 

if needed.

David Murphy
www.cfugcny.org

___
Sent by ePrompter, the premier email notification software. Free
download at http://www.ePrompter.com.



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



RE: Verity Head Aches EMERGENCY

2002-11-06 Thread Timothy Heald
No K2.

Rebooted the machine yet again, it finally let me run a repair on the collections 
involved.

Really strange.

Tim

-Original Message-
From: Sean McCarthy [mailto:SMcCarthy;HealthObjects.com]
Sent: Wednesday, November 06, 2002 10:03 AM
To: CF-Talk
Subject: RE: Verity Head Aches EMERGENCY


Are you using k2?

If so is the port number correct? In the admin and in the ini file.  

sean


-Original Message-
From: Gaulin, Mark [mailto:mgaulin;globalspec.com]
Sent: Wednesday, November 06, 2002 9:17 AM
To: CF-Talk
Subject: RE: Verity Head Aches EMERGENCY


Did you try restarting CF? (and/or the Verity K2 service, if you are using
that?)
Mark

-Original Message-
From: Timothy Heald [mailto:healdt;dsmail.state.gov]
Sent: Wednesday, November 06, 2002 8:07 AM
To: CF-Talk
Subject: RE: Verity Head Aches EMERGENCY


Hey,
We just found out that all Verity on our production server is hosed
up.  We get the VdkSessionNew error no matter what we do.

Nothing we do seems to be helping.  Can't repair, delete, purge,
optimize or create new ones.

Anyone know anything about this?

Our setup:

NT 4 SP 6
CF 5 on IIS 4
Oracle 8.17i

Timothy Heald
Assistant Webmaster
Overseas Security Advisory Council
U.S. Department of State 

-Original Message-
From: Sean McCarthy [mailto:SMcCarthy;HealthObjects.com]
Sent: Tuesday, November 05, 2002 4:29 PM
To: CF-Talk
Subject: RE: Verity Head Aches


are you using k2? if so did you update your k2.ini?

did you try restarting the services?

try dumping it out to see if the contents are good

-Original Message-
From: Timothy Heald [mailto:healdt;dsmail.state.gov]
Sent: Tuesday, November 05, 2002 2:52 PM
To: CF-Talk
Subject: Verity Head Aches


Hi.

I have these verity collections that have 250,000 and 150,000 row
queries indexed in each.  We just moved them from our personal Win 2K dev
box, to our production NT box.  Now the search I built for them keeps
throwing errors like:

Error executing CFSEARCH.

Error # -125 [ff83] VdkSessionNew

Have any of you seen this before?  Any help would be much
appreciated.

Tim





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



RE: Using CFDirectory on every page

2002-11-06 Thread mynews
The Application.cfm is being used for many other things so I 
only want there to be the one I have in the root dir.

DM

= = = Original message = = =

 Is there a unacceptable performance hit if I were to use cfdirectory
 on every page of my site?

 What I want to do is look in each directory for an include 
and
 if it isn't there look for that include in the parent directory.
 This will allow me to use the same include for an entire section
 but will give me the ability to overide that include for a
 sub-section if needed.

Why can't you use application.cfm?

CF naturally walks the directory tree if it can't find one...

Philip Arnold
Technical Director
Certified ColdFusion Developer
ASP Multimedia Limited
Switchboard: +44 (0)20 8680 8099
Fax: +44 (0)20 8686 7911

www.aspmedia.co.uk
www.aspevents.net

An ISO9001 registered company.

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



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



Problems with dynamically generated images... (was Re: Resizing images under Linux)

2002-11-06 Thread Rick Root
Okay... so I'm using CF_MagickTag to generate my thumbnails, and it's 
doing an admirable job of it.

HOWEVER, the image doesn't appear properly the first time a thumbnail is 
generated... it's almost as if the page is loading BEFORE the thumbnail 
is completely generated.

For an example, go here:

http://www.rickroot.com/photo_gallery/test.cfm?WIDTH=200

Change the WIDTH attribute in the URL to something else... like
105 or 51 or 423...

If you load the page (and you're the first person to choose a certain 
dimension), you'll see a broken image.  Right click and choose Show 
Picture and the image shows up just fine.. or reload the page, and it 
shows up just fine.

Anyone here got any ideas what might be going on?

  - Rick

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



RE: Webserver software for NT 4.0

2002-11-06 Thread Douglas.Knudsen
Yup, it is on the option pack CD.  We use IIS for several of our
Intranets and internal apps.  I usually  patch up IIS and remove almost
all the extenstion mappings leaving only .asp and .cfm.  This makes me
feel it is secure enough for an Intranet that sits behind a big fat
firewall.  MS has an IIS lock down tool that is cool, but I think it is
only for IIS 5, not sure.

Doug

-Original Message-
From: Mark A. Kruger - CFG [mailto:mkruger;cfwebtools.com]
Sent: Wednesday, November 06, 2002 9:47 AM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


Doug,

Right - sorry.  But you can upgrade to IIS 4 - which (for this 
purpose) is
very similar to 5.  I believe you get it from the option pack. 
 Am I right?

-mk

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: Tuesday, November 05, 2002 5:19 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


IIS 5 is for Win2000 and AFAIK will not run on NT 4.0.  For 'normal' CF
apps, I haven't seen any difference betwix IS 4 or IIS 5.

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 6:12 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


Nothings wrong with IIS 4.0 or IIS 5.0... as a matter of fact
I'd rather
use that instead of learning Apache in two days... My web server
experience is limited developing CF with IIS 5.0 or PWS ... is the
upgrade to 5.0 downloadable from the net... I checked Microsoft's site
and didn't see it... or do you have to get it off a W2k server disk ?

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: Tuesday, November 05, 2002 5:32 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0

There is IIS4 for NT 4.0...what is wrong with that on an 
Intranet?  You
could use Apache which is free(as in beer).


Doug

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 5:25 PM
To: CF-Talk
Subject: SOT: Webserver software for NT 4.0


Hello. I have a client who wants to set up a small intranet with a NT
4.0 server (for future CF apps). I'm looking for recommendations for
good cheap webserver software for NT 4.0 other than the built in IIS
3.0.. any downloadables (upgrades or otherwise) free from 
Microsoft or
elsewhere would obviously be great :-)

Tim Laureska
1st-String Technolgies
443-496-1261









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



RE: Strange occurrence

2002-11-06 Thread todd
And, not killing the previous session variable correctly.

On Wed, 6 Nov 2002, S. Isaac Dealey wrote:

 incomplete / improper or generally poor locking of session variables would
 be my first guess...
 
  sessions?
 
  -Original Message-
  From: Mark A. Kruger - CFG [mailto:mkruger;cfwebtools.com]
  Sent: 06 November 2002 14:40
  To: CF-Talk
  Subject: Strange occurrence
 
 
  One of the guys in my user group works for a firm that is
  very concerned
  with security.  They recently ran across this situation.
  I've offered a
  couple of possible explanations, but I'm interested in any
  other possible
  explanation:
 
 
  -he wrote---
  I had an occurrence today that was very strange. I have a
  CF 4.5.1 Server
  running on NT 4.0 using IIS 4.0 with the latest service
  packs installed. My
  site looks at an incoming request and if they don't
  already have session
  variables set (cached via cookies for 48 hours) they are
  given a password
  screen to log in with.
 
  Around 13:00 Central time today a remote user was
  attempting to log into the
  site. His profile in our database did not have him
  authorized to log in and
  he was denied access as expected. While speaking with our
  Service Desk who
  was attempting to log in as him locally his remote display
  brought up a page
  that would only have been displayed to the local Service
  Desk technician.
  To the best of my knowledge, there was no password
  information passed to the
  remote user (he still wasn't authorized at that point in
  our profile
  database.)
 
  How could he possibly received a page from our server that
  belonged to our
  internal technician? The remote user and the local tech
  are both situated
  behind two different firewalls from the server.
  I am at a total loss, and am hoping that someone may be
  able to shed some
  light.
  ---
 
 
  I'm thinking he's not getting the full story from the help
  desk g
 
 
  Mark A. Kruger, MCSE, CFG
  www.cfwebtools.com
  www.necfug.com
  mxc.blogspot.com
  .no more brochures!
 
 
 
  ~~
  ~~~|
  Archives:
  http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
  Subscription: http://www.houseoffusion.com/cf_lists/index.
  cfm?method=subscribeforumid=4
  FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
  Signup for the Fusion Authority news alert and keep up
  with the latest news in ColdFusion and related topics.
  http://www.fusionauthority.com/signup.cfm
 
 
 Isaac
 Certified Advanced ColdFusion 5 Developer
 
 www.turnkey.to
 954-776-0046
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Get the mailserver that powers this list at http://www.coolfusion.com



Using Excel as datasource in CFMX

2002-11-06 Thread Bosky, Dave
Is it possible to use an Excel spreadsheet as a datasource in CFMX?
I didn't see an option for a driver like in CF 5.0. 

Dave


HTC Disclaimer:  The information contained in this message may be privileged and 
confidential and protected from disclosure. If the reader of this message is not the 
intended recipient, or an employee or agent responsible for delivering this message to 
the intended recipient, you are hereby notified that any dissemination, distribution 
or copying of this communication is strictly prohibited.  If you have received this 
communication in error, please notify us immediately by replying to the message and 
deleting it from your computer.  Thank you.
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: Webserver software for NT 4.0

2002-11-06 Thread Robertson-Ravo, Neil (REC)
there is a one file download... or you could always get out of the dark ages
and upgrade to 2000 :-)

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: 06 November 2002 15:09
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


Yes you're right ... I found the option pack files on microsoft's
site... they make it a pain though there are 52 files to be
downloaded individually

Tim

-Original Message-
From: Mark A. Kruger - CFG [mailto:mkruger;cfwebtools.com] 
Sent: Wednesday, November 06, 2002 9:47 AM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0

Doug,

Right - sorry.  But you can upgrade to IIS 4 - which (for this purpose)
is
very similar to 5.  I believe you get it from the option pack.  Am I
right?

-mk

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: Tuesday, November 05, 2002 5:19 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


IIS 5 is for Win2000 and AFAIK will not run on NT 4.0.  For 'normal' CF
apps, I haven't seen any difference betwix IS 4 or IIS 5.

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 6:12 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


Nothings wrong with IIS 4.0 or IIS 5.0... as a matter of fact
I'd rather
use that instead of learning Apache in two days... My web server
experience is limited developing CF with IIS 5.0 or PWS ... is the
upgrade to 5.0 downloadable from the net... I checked Microsoft's site
and didn't see it... or do you have to get it off a W2k server disk ?

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: Tuesday, November 05, 2002 5:32 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0

There is IIS4 for NT 4.0...what is wrong with that on an Intranet?  You
could use Apache which is free(as in beer).


Doug

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 5:25 PM
To: CF-Talk
Subject: SOT: Webserver software for NT 4.0


Hello. I have a client who wants to set up a small intranet with a NT
4.0 server (for future CF apps). I'm looking for recommendations for
good cheap webserver software for NT 4.0 other than the built in IIS
3.0.. any downloadables (upgrades or otherwise) free from Microsoft or
elsewhere would obviously be great :-)

Tim Laureska
1st-String Technolgies
443-496-1261










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



RE: ActivePDF (web grabber) and CFMX does not work.

2002-11-06 Thread Dave Carabetta
Its the web Grabber I need to use.

Thankfully I run under IIS so I created an ASP page to do the web capture.

Seems to be the easiest thing to do in the circumstances while MM get there
COM stuff sorted out.

I actually disagree with your last statement for a couple of reasons.

First, it's not a MM-specific problem; it's a Java issue. Java has never 
played well with COM, and, quite frankly, won't ever. I forget the name of 
the project (AXIS?), but there is an open source effort (which MM uses in 
CFMX) to integrate COM with Java.

Second, why pursue efforts to integrate COM with Java when Microsoft itself 
has said for a while that COM is going away in favor of .NET?

Third, I think the onus is on the ActivePDF people to keep up with the 
times in the sense that MM announced will over a year ago their intentions 
to shift CF from a C/C++ base to Java. It seems to me that if they wanted to 
keep their CF customers, they should have focused on a new version that 
would integrate with a Java-based application server.

Last, ActivePDF is a third-party tool, and, as such, MM should not be 
responsible for improving its integration with CFMX. That's the chance you 
take when you use third-party tools.

You may disagree with me, and that's fine. But I think your barking up the 
wrong tree by looking to MM fix your problem.

Regards,
Dave.


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



Re: MM advises against ListAppend and ListPrepend?

2002-11-06 Thread Jeffry Houser
  I don't know anything about the official Macromedia stance, however...

  Lists are (or at least were) stored Internally in ColdFusion as 
strings.  So, every time you performed a list operation, it was performing 
string manipulation.  Arrays and structures are (or were) more efficient 
than lists because of this.

  Let's say we have a list:

  cfset MyList = 1,2,3,4


  The question I ask is this:

  cfset MyList = 0,  MyList

  More efficient than this:

  cfset MyList = ListPrepend(MyList, 0,)


  Or does it not matter?  Each method adds a new item to the beginning of 
the list.

  It seems to me that it wouldn't make sense for Macromedia to recommend 
not using these functions, unless they were deprecated.


At 02:57 PM 11/6/2002 +, you wrote:
Just reading 'Reality ColdFusion MX: Intranets and Content Management', came
across this curious bit:

Notice that Toshi builds this list by creating it as a string, not a list,
since Macromedia now recommends that you avoid listAppend() and
listPrepend() if possible. (p. 231)

Is this true? Why so? Did I miss a meeting?!

I can't find any reference to this on the MM site or anywhere else. Seems
like an odd way for MM to sneak in what would be quite an impactful
recommendation - and not give any reasoning.

Gyrus
[EMAIL PROTECTED]
work: http://www.tengai.co.uk
play: http://www.norlonto.net
PGP key available



--
Jeffry Houser | mailto:jeff;farcryfly.com
DotComIt, Putting you on the web
AIM: Reboog711  | Phone: 1-203-379-0773
--
My CFMX Book: 
http://www.amazon.com/exec/obidos/ASIN/0072225564/instantcoldfu-20
My Books: http://www.instantcoldfusion.com
My Band: http://www.farcryfly.com 

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



Downside to disabling Maintain Database Connections

2002-11-06 Thread Paul Sinclair
I posted a note yesterday re several sites running veeey slow on a
server. I have a couple sites that are MS Access databases. I am in the
process of moving these to SQL but in the interim I need to keep the sites
up. I found that by disabling the Maintain Database Connections setting in
the ODBC configuration for these Access databases that it seems to take care
of the problem for the most part. I am just wondering what the downside is
to disabling that setting?

Thanks for advice.

Paul Sinclair

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



RE: Communicating FROM Flash Calendar Component

2002-11-06 Thread Russ
Hi Stacy,

Here's the issue with this--the Calendar would be a .swf in a modal
window, and the application itself is in CFMX.

That said, I'd have a button/icon that would pop-up the modal box, allow
a person to choose a date and then submit that value back down to the
CFMX form.

So, I sort of understand where you're coming from, but I'm still not too
clear on how to go about passing any value out of the calendar back to
the CFMX.  I've not had to do that before.

Any advices?

Thanks,

Russ

 -Original Message-
 From: Stacy Young [mailto:Stacy.Young;sfcommerce.com] 
 Sent: Wednesday, November 06, 2002 7:17 AM
 To: CF-Talk
 Subject: RE: Communicating FROM Flash Calendar Component
 
 
 Hey Russ,
 
 What I do normally is have a button with and changeHandler 
 function that reveals the calendar (unhides it and moves it 
 into position on the screen)Then assign another 
 changeHandler for the calendar component. That function is 
 called automatically when the date is selected on the 
 component...you can then use a method from the calendar to 
 grab the selected date and populate a variable with that date 
 for use later on.
 
 HTH!
 
 Stace
 
 -Original Message-
 From: Russ [mailto:russ;unrealisticexpectations.com] 
 Sent: Wednesday, November 06, 2002 2:07 AM
 To: CF-Talk
 Subject: Communicating FROM Flash Calendar Component
 
 This is my first effort at communicating between Flash and 
 ColdFusion. (Sorry, Ben, I'm not that far in your book just 
 yet, but it is a great, easy read and I applaud you and the 
 team on it!)
 
 I'll be using the Flash Calendar Component--quite simply so 
 that I can select a Start Date for an employee, and when 
 the date is selected, I'll submit and the information 
 (date) will be passed to a ColdFusion MX page that spawned 
 the calendar window.
 
 That value will, ideally, be populated into the form field on 
 the page without requiring an update of the CFMX page (I'll 
 figure that out).
 
 I'm pretty virginal with the communication of Flash 
 to-and-from CFMX, so I'm hoping I can get a little shove in 
 the right direction.  I'm not virginal to Flash, and I'm 
 still shaking some of the water out from behind my ears upon 
 occasion with CFMX, but I think I can manage with a little direction.
 
 Thanks in advance, and I appreciate any assistance.
 
 Kind regards,
 
 Russ Unger
 Managing Partner
 blueChrome design, LLC
 www.bluechromedesign.com
 312.593.4260 :office
 877.433.8427 :pager
 312.873.4033 :fax
 
 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Blogging

2002-11-06 Thread Jillian Carroll
Does anybody know of any blogging software written in CF?

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



RE: Any Public sites implemented - FlashMX Communication Server

2002-11-06 Thread Gary W. Sullivan II
I believe that Yahoo is going to use Flash Comm Server in the very near
future.

-Original Message-
From: siva girumala [mailto:girumala;yahoo.com] 
Sent: Wednesday, November 06, 2002 9:26 AM
To: CF-Talk
Subject: Any Public sites implemented - FlashMX Communication Server


Hi,

Any public sites implemented FlashMX Communication
Server? Lots of talk is going on the list about
FlashMX and ColdFusionMX. I would like to see both of
them in action.

Thank you.

--Siva Girumala

__
Do you Yahoo!?
HotJobs - Search new jobs daily now
http://hotjobs.yahoo.com/

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



Re: Using CFDirectory on every page

2002-11-06 Thread S . Isaac Dealey
 Pete Ruckelshaus wrote:
 Why use CFDIRECTORY when you can use try/catch blocks?  Here's how I
 approached the is the include there problem in one of my apps:

 That's another good solution... I've done something similar in the past
 but I think it generated a lot of errors in my error logs and I wasn't a
 fan of that :)

I thought the server was supposed to bypass the log entry for errors which
were caught and handled with cfcatch... Although ( and I missed the
beginning of the thread, so I don't have the full context ) it doesn't seem
like this is something you'd need to resort to try/catch for. If the include
doesn't exist, the try/catch block could create a lot of overhead and it
seems cfif fileexists() would likely be the best solution. Am I missing
something important from the previous thread?

S. Isaac Dealey
Certified Advanced ColdFusion 5 Developer

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



Re: MM advises against ListAppend and ListPrepend?

2002-11-06 Thread Gyrus
- Original Message -
From: Jochem van Dieten [EMAIL PROTECTED]
 I don't know if it is true, but from a performance point of view, *I*
 recommend against them. Use arrays, not lists.
---

I was asking about this issue recently, and the general consensus seemed to
be use whatever floats your boat, performance difference is negligible.

Naturally I'm confused now I find an obscure, unsupported reference to an
official MM recommendation against list function, albeit in an official MM
book title.

Gyrus
[EMAIL PROTECTED]
work: http://www.tengai.co.uk
play: http://www.norlonto.net
PGP key available

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



RE: Webserver software for NT 4.0

2002-11-06 Thread Robertson-Ravo, Neil (REC)
its aslo a real cumbersom too l with no real rollback. :-(

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: 06 November 2002 15:16
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


Yup, it is on the option pack CD.  We use IIS for several of our
Intranets and internal apps.  I usually  patch up IIS and remove almost
all the extenstion mappings leaving only .asp and .cfm.  This makes me
feel it is secure enough for an Intranet that sits behind a big fat
firewall.  MS has an IIS lock down tool that is cool, but I think it is
only for IIS 5, not sure.

Doug

-Original Message-
From: Mark A. Kruger - CFG [mailto:mkruger;cfwebtools.com]
Sent: Wednesday, November 06, 2002 9:47 AM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


Doug,

Right - sorry.  But you can upgrade to IIS 4 - which (for this 
purpose) is
very similar to 5.  I believe you get it from the option pack. 
 Am I right?

-mk

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: Tuesday, November 05, 2002 5:19 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


IIS 5 is for Win2000 and AFAIK will not run on NT 4.0.  For 'normal' CF
apps, I haven't seen any difference betwix IS 4 or IIS 5.

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 6:12 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


Nothings wrong with IIS 4.0 or IIS 5.0... as a matter of fact
I'd rather
use that instead of learning Apache in two days... My web server
experience is limited developing CF with IIS 5.0 or PWS ... is the
upgrade to 5.0 downloadable from the net... I checked Microsoft's site
and didn't see it... or do you have to get it off a W2k server disk ?

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: Tuesday, November 05, 2002 5:32 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0

There is IIS4 for NT 4.0...what is wrong with that on an 
Intranet?  You
could use Apache which is free(as in beer).


Doug

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 5:25 PM
To: CF-Talk
Subject: SOT: Webserver software for NT 4.0


Hello. I have a client who wants to set up a small intranet with a NT
4.0 server (for future CF apps). I'm looking for recommendations for
good cheap webserver software for NT 4.0 other than the built in IIS
3.0.. any downloadables (upgrades or otherwise) free from 
Microsoft or
elsewhere would obviously be great :-)

Tim Laureska
1st-String Technolgies
443-496-1261










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



Re: verity

2002-11-06 Thread Stephen Moretti
 Any fix for this? or should I just leave out the summary altogether?

I would skip Front Page instead..  Get a real editor. ;oD

Sorry Couldn't resist it :o)

That junk is extraneous stuff that FP puts on your server and in your web
pages, usually associated with the FP extensions.

If you've done the CFINDEX using the file type attribute, then you shouldn't
be getting all that junk in your summary.

Regards

Stephen



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



Form with tab stops

2002-11-06 Thread Paolo Cesana
What can I use to avoid/skip a field when a user presses TAB in a form?

Tks/Rgds




 
Paolo Cesana
IT Development Mgr.
Electricity is not the result of a series of upgrades to the candle
Auth. unknown


Miami International Forwarders (MIF)

Phone: (305)594-0038 Ext. 7326
Fax: (305)593-0431
mailto:paoloc;mif.com
http://www.mif.com/

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



RE: Webserver software for NT 4.0

2002-11-06 Thread Tim Laureska
My shop is out of the dark ages, but some of my clients enjoy
darkness Where is the one file download?


-Original Message-
From: Robertson-Ravo, Neil (REC)
[mailto:Neil.Robertson-Ravo;csd.reedexpo.com] 
Sent: Wednesday, November 06, 2002 10:30 AM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0

there is a one file download... or you could always get out of the dark
ages
and upgrade to 2000 :-)

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: 06 November 2002 15:09
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


Yes you're right ... I found the option pack files on microsoft's
site... they make it a pain though there are 52 files to be
downloaded individually

Tim

-Original Message-
From: Mark A. Kruger - CFG [mailto:mkruger;cfwebtools.com] 
Sent: Wednesday, November 06, 2002 9:47 AM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0

Doug,

Right - sorry.  But you can upgrade to IIS 4 - which (for this purpose)
is
very similar to 5.  I believe you get it from the option pack.  Am I
right?

-mk

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: Tuesday, November 05, 2002 5:19 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


IIS 5 is for Win2000 and AFAIK will not run on NT 4.0.  For 'normal' CF
apps, I haven't seen any difference betwix IS 4 or IIS 5.

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 6:12 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0


Nothings wrong with IIS 4.0 or IIS 5.0... as a matter of fact
I'd rather
use that instead of learning Apache in two days... My web server
experience is limited developing CF with IIS 5.0 or PWS ... is the
upgrade to 5.0 downloadable from the net... I checked Microsoft's site
and didn't see it... or do you have to get it off a W2k server disk ?

-Original Message-
From: [EMAIL PROTECTED] [mailto:Douglas.Knudsen;alltel.com]
Sent: Tuesday, November 05, 2002 5:32 PM
To: CF-Talk
Subject: RE: Webserver software for NT 4.0

There is IIS4 for NT 4.0...what is wrong with that on an Intranet?  You
could use Apache which is free(as in beer).


Doug

-Original Message-
From: Tim Laureska [mailto:hometeam;goeaston.net]
Sent: Tuesday, November 05, 2002 5:25 PM
To: CF-Talk
Subject: SOT: Webserver software for NT 4.0


Hello. I have a client who wants to set up a small intranet with a NT
4.0 server (for future CF apps). I'm looking for recommendations for
good cheap webserver software for NT 4.0 other than the built in IIS
3.0.. any downloadables (upgrades or otherwise) free from Microsoft or
elsewhere would obviously be great :-)

Tim Laureska
1st-String Technolgies
443-496-1261











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



RE: Downside to disabling Maintain Database Connections

2002-11-06 Thread Mosh Teitelbaum
Ironically, disabling persistent database connections should slow down
database access since every call would require the creation of a new
database connection.  Go figure.

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


 -Original Message-
 From: Paul Sinclair [mailto:lists;mail1.kingcrest.com]
 Sent: Wednesday, November 06, 2002 10:43 AM
 To: CF-Talk
 Subject: Downside to disabling Maintain Database Connections


 I posted a note yesterday re several sites running veeey slow on a
 server. I have a couple sites that are MS Access databases. I am in the
 process of moving these to SQL but in the interim I need to keep the sites
 up. I found that by disabling the Maintain Database Connections
 setting in
 the ODBC configuration for these Access databases that it seems
 to take care
 of the problem for the most part. I am just wondering what the downside is
 to disabling that setting?

 Thanks for advice.

 Paul Sinclair

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



Re: MM advises against ListAppend and ListPrepend?

2002-11-06 Thread Gyrus
- Original Message -
From: Jeffry Houser [EMAIL PROTECTED]
   The question I ask is this:

   cfset MyList = 0,  MyList

   More efficient than this:

   cfset MyList = ListPrepend(MyList, 0,)


   Or does it not matter?  Each method adds a new item to the beginning of
 the list.

   It seems to me that it wouldn't make sense for Macromedia to recommend
 not using these functions, unless they were deprecated.
---

My thoughts exactly. Is Ben Forta around? Assume he knows about this, being
an author of the book in question...

Gyrus
[EMAIL PROTECTED]
work: http://www.tengai.co.uk
play: http://www.norlonto.net
PGP key available

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



RE: Blogging

2002-11-06 Thread Dan Phillips
Livejournal.com let you create a blong on their site, then allows you to use
CFHTTP to imbed the blog into your site.

-Original Message-
From: Jillian Carroll [mailto:jillian;koskie.com]
Sent: Wednesday, November 06, 2002 10:48 AM
To: CF-Talk
Subject: Blogging


Does anybody know of any blogging software written in CF?

--
Jillian

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



RE: ActivePDF (web grabber) and CFMX does not work.

2002-11-06 Thread Jeffry Houser
At 10:34 AM 11/6/2002 -0500, you wrote:
 Its the web Grabber I need to use.
 
 Thankfully I run under IIS so I created an ASP page to do the web capture.
 
 Seems to be the easiest thing to do in the circumstances while MM get there
 COM stuff sorted out.

I actually disagree with your last statement for a couple of reasons.

First, it's not a MM-specific problem; it's a Java issue. Java has never
played well with COM, and, quite frankly, won't ever. I forget the name of
the project (AXIS?), but there is an open source effort (which MM uses in
CFMX) to integrate COM with Java.

  I think Axis is what they use with Web Services.  I'm not sure about COM 
Integration.


--
Jeffry Houser | mailto:jeff;farcryfly.com
DotComIt, Putting you on the web
AIM: Reboog711  | Phone: 1-203-379-0773
--
My CFMX Book: 
http://www.amazon.com/exec/obidos/ASIN/0072225564/instantcoldfu-20
My Books: http://www.instantcoldfusion.com
My Band: http://www.farcryfly.com 

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



CF_MAKETREE

2002-11-06 Thread ecreese
I have implemented the CF_MAKETREE tag. I would like to use the out put of that tage 
to display my results like the CF_TREE does. How do I do this?

...
Get your own free email account from
http://www.popmail.com

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



RE: Downside to disabling Maintain Database Connections

2002-11-06 Thread Mark A. Kruger - CFG
Paul,

The downside is that you are adding overhead to each request by making them
negotiate a connection rather than selecting from existing connections.
This is worth it in your case however, as it seems to solve your performance
problem on another level. Access has a connection threshold for stability
that I've heard is as low as 25 connections (i.e. more than 25 connections
and performance begins to degrade) and as high as 75.  Different folks say
different things - but everybody says this ... don't run your production
sites on access ha. It sounds like you are well on your way to solving
this problem by migrating to SQL.  The only other tip that some have made
regarding access is that the OLE DB drivers tend to perform better.

-mk

-Original Message-
From: Paul Sinclair [mailto:lists;mail1.kingcrest.com]
Sent: Wednesday, November 06, 2002 9:43 AM
To: CF-Talk
Subject: Downside to disabling Maintain Database Connections


I posted a note yesterday re several sites running veeey slow on a
server. I have a couple sites that are MS Access databases. I am in the
process of moving these to SQL but in the interim I need to keep the sites
up. I found that by disabling the Maintain Database Connections setting in
the ODBC configuration for these Access databases that it seems to take care
of the problem for the most part. I am just wondering what the downside is
to disabling that setting?

Thanks for advice.

Paul Sinclair


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



RE: ActivePDF (web grabber) and CFMX does not work.

2002-11-06 Thread Adam Reynolds
Dave,
It is more to do with what MM have promised and what they have delivered.

ActivePDF are very aware of the CF MX issue and have developers working on a
solution.

I believe MM do need to address this area as something that worked well in
5, should not just fail.

I can see MM and AP working at it from different ends and I hope they are
talking to each other.

In the meantime, the immediate solution is to cheat by using an ASP
solution. I need to get a job done. How I get there is irrelevant.

Adam

 -Original Message-
 From: Dave Carabetta [mailto:cbetta;hotmail.com]
 Sent: 06 November 2002 15:34
 To: CF-Talk
 Subject: RE: ActivePDF (web grabber) and CFMX does not work.


 Its the web Grabber I need to use.
 
 Thankfully I run under IIS so I created an ASP page to do the
 web capture.
 
 Seems to be the easiest thing to do in the circumstances while
 MM get there
 COM stuff sorted out.

 I actually disagree with your last statement for a couple of reasons.

 First, it's not a MM-specific problem; it's a Java issue. Java has never
 played well with COM, and, quite frankly, won't ever. I forget
 the name of
 the project (AXIS?), but there is an open source effort (which MM uses in
 CFMX) to integrate COM with Java.

 Second, why pursue efforts to integrate COM with Java when
 Microsoft itself
 has said for a while that COM is going away in favor of .NET?

 Third, I think the onus is on the ActivePDF people to keep up with the
 times in the sense that MM announced will over a year ago their
 intentions
 to shift CF from a C/C++ base to Java. It seems to me that if
 they wanted to
 keep their CF customers, they should have focused on a new version that
 would integrate with a Java-based application server.

 Last, ActivePDF is a third-party tool, and, as such, MM should not be
 responsible for improving its integration with CFMX. That's the
 chance you
 take when you use third-party tools.

 You may disagree with me, and that's fine. But I think your
 barking up the
 wrong tree by looking to MM fix your problem.

 Regards,
 Dave.


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



RE: Blogging

2002-11-06 Thread Robertson-Ravo, Neil (REC)
there is a CFMX one. cant remember who did it?

-Original Message-
From: Jillian Carroll [mailto:jillian;koskie.com]
Sent: 06 November 2002 15:48
To: CF-Talk
Subject: Blogging


Does anybody know of any blogging software written in CF?

--
Jillian

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



RE: Blogging

2002-11-06 Thread Russ
Hi Jillian--

I've seen one or two in my searches out there--and while that's probably
not the answer you're looking for, building something shoudn't be very
difficult to get started.

I've had my own at http://www.unrealisticexpectations.com that's been
done in .asp and Access, but we've also got quite a bit of
functionality.

For grins and giggles, I started a mock one, just to test functionality.
It's at:

http://www.uetest.com/blog  and the admin side is at:
http://www.uetest.com/blog/admin

It's very much a rough skeleton, but I'll happily give up what I've got
and also be happy to offer any advices from an old school blogger with
a homegrown set-up.

Kind regards,

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


 -Original Message-
 From: Jillian Carroll [mailto:jillian;koskie.com] 
 Sent: Wednesday, November 06, 2002 9:48 AM
 To: CF-Talk
 Subject: Blogging
 
 
 Does anybody know of any blogging software written in CF?
 
 --
 Jillian 
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: Downside to disabling Maintain Database Connections

2002-11-06 Thread Matt Robertson
As I understand it, disabling that setting is the recommended best
practice for Access.  Keeps things from crashing outright, so in this
narrow circumstance there is no downside.  An article on this was in the
KB somewhere.  It was entitled along the lines of ''using access in
production environments''.  I couldn't find it by searching for
access.  

Whatever happened to the plain ol' KB?  Did it get absorbed into
something?  I couldn't even find the thing on the MM site.

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



-Original Message-
From: Paul Sinclair [mailto:lists;mail1.kingcrest.com] 
Sent: Wednesday, November 06, 2002 7:43 AM
To: CF-Talk
Subject: Downside to disabling Maintain Database Connections


I posted a note yesterday re several sites running veeey slow on
a
server. I have a couple sites that are MS Access databases. I am in the
process of moving these to SQL but in the interim I need to keep the
sites
up. I found that by disabling the Maintain Database Connections
setting in
the ODBC configuration for these Access databases that it seems to take
care
of the problem for the most part. I am just wondering what the downside
is
to disabling that setting?

Thanks for advice.

Paul Sinclair


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



RE: ActivePDF (web grabber) and CFMX does not work.

2002-11-06 Thread Dave Wilson
Sorry I've not been following this thread so the following may be totally
inapplicable.

I've never used ActivePDF myself but it utilizes htmldoc which I have been
using for years. I can't see any reason why they're using COM at all.

I simply use cfhttp and cfexecute (or cfx_shellExce) when running htmldoc.

my 2c Dave

-Original Message-
From: Dave Carabetta [mailto:cbetta;hotmail.com]
Sent: 06 November 2002 15:34
To: CF-Talk
Subject: RE: ActivePDF (web grabber) and CFMX does not work.


Its the web Grabber I need to use.

Thankfully I run under IIS so I created an ASP page to do the web capture.

Seems to be the easiest thing to do in the circumstances while MM get there
COM stuff sorted out.

I actually disagree with your last statement for a couple of reasons.

First, it's not a MM-specific problem; it's a Java issue. Java has never
played well with COM, and, quite frankly, won't ever. I forget the name of
the project (AXIS?), but there is an open source effort (which MM uses in
CFMX) to integrate COM with Java.

Second, why pursue efforts to integrate COM with Java when Microsoft itself
has said for a while that COM is going away in favor of .NET?

Third, I think the onus is on the ActivePDF people to keep up with the
times in the sense that MM announced will over a year ago their intentions
to shift CF from a C/C++ base to Java. It seems to me that if they wanted to
keep their CF customers, they should have focused on a new version that
would integrate with a Java-based application server.

Last, ActivePDF is a third-party tool, and, as such, MM should not be
responsible for improving its integration with CFMX. That's the chance you
take when you use third-party tools.

You may disagree with me, and that's fine. But I think your barking up the
wrong tree by looking to MM fix your problem.

Regards,
Dave.



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



RE: Using Excel as datasource in CFMX

2002-11-06 Thread Dave Wilson
Dave,

Create the Excel datasource in Windows ODBC, then in CFMX use the ODBC
socket method for setting up the datasource for CF.

HTH
Dave

-Original Message-
From: Bosky, Dave [mailto:Dave.Bosky;htcinc.net]
Sent: 06 November 2002 15:31
To: CF-Talk
Subject: Using Excel as datasource in CFMX


Is it possible to use an Excel spreadsheet as a datasource in CFMX?
I didn't see an option for a driver like in CF 5.0.

Dave


HTC Disclaimer:  The information contained in this message may be privileged
and confidential and protected from disclosure. If the reader of this
message is not the intended recipient, or an employee or agent responsible
for delivering this message to the intended recipient, you are hereby
notified that any dissemination, distribution or copying of this
communication is strictly prohibited.  If you have received this
communication in error, please notify us immediately by replying to the
message and deleting it from your computer.  Thank you.

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



  1   2   3   >