Re: MySQL?

2001-10-27 Thread BT

I would check out MyODBC at http://www.mysql.com/downloads/api-myodbc.html
- Original Message -
From: Rich Tretola [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, October 26, 2001 3:09 PM
Subject: MySQL?


 How can I connect to a MySQL datasource through the CF 5 admin (Windows
 2000)?

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



Custom tag validation error in CF Studio 5

2001-10-27 Thread Tom Jacobs

When I insert a custom tag in CF Studio 5, I'm getting this error:
The tag name CF_TagName not found in currently active versions.
However, the tag is, in fact, being found by CF 5; the browser 
generates no errors and the code executes just fine. This problem 
apparently started happening when I installed CF Studio 5. Turning 
off Tag Validation eliminates the error. Any ideas?

Tom
-- 

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



RE: MySQL?

2001-10-27 Thread Lon Lentz

 
  Have you installed MyODBC?

-Original Message-
From: Rich Tretola [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 26, 2001 3:10 PM
To: CF-Talk
Subject: MySQL?


How can I connect to a MySQL datasource through the CF 5 admin (Windows
2000)?

Rich

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



Can this be done??

2001-10-27 Thread Yager, Brian T Contractor/NCCIM

I want to be able to run a file on one server that goes out to a page on another
server, run a query, grab the information, and put it into a DB on the first
server.  Has anyone done this before??



Brian Yager
President - North AL Cold Fusion Users Group
Sr. Systems Analyst
NCCIM/CIC
[EMAIL PROTECTED]
(256) 842-8342
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: How to interact between CF Macromedia Generator

2001-10-27 Thread one

Does anyone have any experience in working with CF  Generator or even the
open source jGenerator?

Am curious how one goes about interacting dynamically between the two. I
know CF can be used to send variables to Generator, but don't have the
foggies idea how that set up in Generator.
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Running Requests?

2001-10-27 Thread Kevin Gilchrist

Correct, it won't tell you what CF is currently chewing on.  It would be
brief, you would see the reads as it pages the file into memory and then
nothing after that.  You can set the file filter to *.cfm and see which
cfm files are accessed.

Also, you wouldn't see many file accesses if trusted cache was turned on
in the Administrator as the files aren't re-read from disk if they've
already been read into memory by the CFAS.

I just tried using Sys-Internals' Process Explorer there now which gives
you a list of open files for a process but it seems to be restricted to
DLL's and binaries.

To solve your problem though, you'd probably be better off writing some
debug code inside the problematic template.  The cf_debug tag is quite
handy for debugging iterative code as it displays a snapshot of
variables in a new pop-up every time it's called.

HTH,
Kevin

-Original Message-
From: Tony Schreiber [mailto:[EMAIL PROTECTED]] 
Sent: Friday, October 26, 2001 15:05
To: CF-Talk
Subject: RE: Running Requests?


Wouldn't the file only be accessed briefly and not show during the
length of the request? The file isn't open while it's being processed,
right?

 If your server is NT/W2K you could try the filemon tool at:

 http://www.sysinternals.com/ntw2k/source/filemon.shtml

 -Original Message-
 From: Tony Schreiber [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 26, 2001 12:34
 To: CF-Talk
 Subject: RE: Running Requests?


 Well, for one, I want to see what cf pages are being hit in real time,

 but mostly because if I have an errant template or something 
 spiralling out of control, I want to find out which one it is.

 I was writing one page not too long ago, can't remember what I was 
 doing, but as soon as it would run, cfas memory usage would skyrocket 
 until the server hung... It was immediately apparent which script was 
 causing the commotion...

 Is there any way to see what templates are currently being 
 processed?
   
I don't think this is exposed by any of the performance monitor 
data.
  
   Any other way?
 
  There's no way of which I'm aware that would give you real-time 
  access

  to that information. It might be useful to explain why you're 
  interested in that.
 
  Dave Watts, CTO, Fig Leaf Software
  http://www.figleaf.com/
  voice: (202) 797-5496
  fax: (202) 797-5444
 

 

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



RE: Running Requests?

2001-10-27 Thread Kevin Gilchrist

Correct, it won't tell you what CF is currently chewing on.  It would be
brief, you would see the reads as it pages the file into memory and then
nothing after that.  You can set the file filter to *.cfm and see which
cfm files are accessed.

Also, you wouldn't see many file accesses if trusted cache was turned on
in the Administrator as the files aren't re-read from disk if they've
already been read into memory by the CFAS.

I just tried using Sys-Internals' Process Explorer there now which gives
you a list of open files for a process but it seems to be restricted to
DLL's and binaries.

To solve your problem though, you'd probably be better off writing some
debug code inside the problematic template.  The cf_debug tag is quite
handy for debugging iterative code as it displays a snapshot of
variables in a new pop-up every time it's called.

HTH,
Kevin

-Original Message-
From: Tony Schreiber [mailto:[EMAIL PROTECTED]] 
Sent: Friday, October 26, 2001 15:05
To: CF-Talk
Subject: RE: Running Requests?


Wouldn't the file only be accessed briefly and not show during the
length of the request? The file isn't open while it's being processed,
right?

 If your server is NT/W2K you could try the filemon tool at:

 http://www.sysinternals.com/ntw2k/source/filemon.shtml

 -Original Message-
 From: Tony Schreiber [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 26, 2001 12:34
 To: CF-Talk
 Subject: RE: Running Requests?


 Well, for one, I want to see what cf pages are being hit in real time,

 but mostly because if I have an errant template or something 
 spiralling out of control, I want to find out which one it is.

 I was writing one page not too long ago, can't remember what I was 
 doing, but as soon as it would run, cfas memory usage would skyrocket 
 until the server hung... It was immediately apparent which script was 
 causing the commotion...

 Is there any way to see what templates are currently being 
 processed?
   
I don't think this is exposed by any of the performance monitor 
data.
  
   Any other way?
 
  There's no way of which I'm aware that would give you real-time 
  access

  to that information. It might be useful to explain why you're 
  interested in that.
 
  Dave Watts, CTO, Fig Leaf Software
  http://www.figleaf.com/
  voice: (202) 797-5496
  fax: (202) 797-5444
 

 

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



RE: Can this be done??

2001-10-27 Thread Joseph DeVore

Yes, I have done it a couple of ways but the fastest route I have found so
far is WDDX.
Check out the CFWDDX tag.


Joseph DeVore
VeloxWeb Technologies



-Original Message-
From: Yager, Brian T Contractor/NCCIM
[mailto:[EMAIL PROTECTED]]
Sent: Friday, October 26, 2001 12:46 PM
To: CF-Talk
Subject: Can this be done??


I want to be able to run a file on one server that goes out to a page on
another
server, run a query, grab the information, and put it into a DB on the first
server.  Has anyone done this before??



Brian Yager
President - North AL Cold Fusion Users Group
Sr. Systems Analyst
NCCIM/CIC
[EMAIL PROTECTED]
(256) 842-8342

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



RE: Why can't I buy JUST CFStudio 5?

2001-10-27 Thread Joshua Miller

Wow ... I looked all over that site and couldn't find anything. THANKS

Joshua Miller
Web Development::Programming
Eagle Technologies Group, Inc.
www.eagletgi.com
[EMAIL PROTECTED] 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 25, 2001 4:39 PM
To: CF-Talk
Subject: Re: Why can't I buy JUST CFStudio 5?


At 5:55 AM 10/25/1, Joshua Miller wrote:
 Why is it that Macromedia insists on bundling CFStudio5
 and UltraDev 4 together? Why can't I buy just CFStudio5?

Sure you can... check out the splash page:
http://www.macromedia.com/software/coldfusionstudio/

jd





John Dowdell, Macromedia Tech Support, San Francisco CA US
Search technotes: http://www.macromedia.com/support/search/
Offlist email risks capture by the spam filters. I may not see your
email if it's not on the list. Private one-on-one email options are
available via Priority Access: http://www.macromedia.com/support/


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



RE: Can this be done??

2001-10-27 Thread Raymond Camden

Sure, just use syndication. Have the machine on server 1 run foo.cfm.
Foo.cfm uses CFHTTP to hit server 2. The file on server 2 does a query,
uses WDDX to serialize it, and returns the packet to foo on box 1. Foo
can then deserialize it and enter it into the DB.

This is, of course, a high level description. Let me know if you need
additional details, and where.

===
Raymond Camden, Principal Spectra Compliance Engineer for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

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

 -Original Message-
 From: Yager, Brian T Contractor/NCCIM 
 [mailto:[EMAIL PROTECTED]] 
 Sent: Friday, October 26, 2001 3:46 PM
 To: CF-Talk
 Subject: Can this be done??
 
 
 I want to be able to run a file on one server that goes out 
 to a page on another
 server, run a query, grab the information, and put it into a 
 DB on the first
 server.  Has anyone done this before??
 
 
 
 Brian Yager
 President - North AL Cold Fusion Users Group
 Sr. Systems Analyst
 NCCIM/CIC
 [EMAIL PROTECTED]
 (256) 842-8342
 
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: MySQL?

2001-10-27 Thread Won Lee

First you need to DL the MyODBC drivers.  and then create a system DSN.

Wait a second, are you running CF server for windows or linux?

-Original Message-
From: Rich Tretola [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 26, 2001 3:10 PM
To: CF-Talk
Subject: MySQL?


How can I connect to a MySQL datasource through the CF 5 admin (Windows
2000)?

Rich

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



Re: MySQL?

2001-10-27 Thread Matt Robertson

In CF 4.5, all you have to do is use the Win2k ODBC Data Source
Administrator, rather than the CF admin interface.  First you have to have
mySQL and myODBC properly installed (visit http://mysql.com for the win
versions).  Then install them.  From there:

Settings / Control Panel / Administrative Tools / Data Sources (ODBC)

Select System DSN and click Add.
Select mySQL drivers from bottom of list.
Then typically all you need to fill out are the first 5 fields.
You may want to check 'use compressed protocol' for security's sake.
Save.

Then go into CF Administrator.  You can see the dsn in there now.  Adjust
existing settings as desired.

---
Matt Robertson[EMAIL PROTECTED]
MSB Designs, Inc., www.mysecretbase.com
---


-Original Message-
From: Rich Tretola [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 26, 2001 3:10 PM
To: CF-Talk
Subject: MySQL?


How can I connect to a MySQL datasource through the CF 5 admin (Windows
2000)?

Rich


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



Re: Why can't I buy JUST CFStudio 5?

2001-10-27 Thread Matt Robertson

I have a subscription and I haven't heard anything about a subscription
upgrade.  Am I the only one?  Did I miss something?

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

- Original Message -
From: Joshua Miller [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, October 26, 2001 1:23 PM
Subject: RE: Why can't I buy JUST CFStudio 5?


Wow ... I looked all over that site and couldn't find anything. THANKS

Joshua Miller
Web Development::Programming
Eagle Technologies Group, Inc.
www.eagletgi.com
[EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 25, 2001 4:39 PM
To: CF-Talk
Subject: Re: Why can't I buy JUST CFStudio 5?


At 5:55 AM 10/25/1, Joshua Miller wrote:
 Why is it that Macromedia insists on bundling CFStudio5
 and UltraDev 4 together? Why can't I buy just CFStudio5?

Sure you can... check out the splash page:
http://www.macromedia.com/software/coldfusionstudio/

jd





John Dowdell, Macromedia Tech Support, San Francisco CA US
Search technotes: http://www.macromedia.com/support/search/
Offlist email risks capture by the spam filters. I may not see your
email if it's not on the list. Private one-on-one email options are
available via Priority Access: http://www.macromedia.com/support/



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



RE: User Login

2001-10-27 Thread Bryan Love

Get in tight with a veteran CF developer and hit him/her up for a basic
security framework.  Anyone with experience could probably whip one up in an
hour or so.  Security models come in many shapes and sizes so have a good
grasp of what it will need to do before asking someone for help.

Here's a tip for getting started:

Learn the basics of FuseBox.  The details are less important than the
overall concept which can be bent and shaped to suit almost any need.  
Once you do that you can use Application.cfm (or app_globals.cfm if you're a
stickler to FB) to check for the existance of a security token such as
cookie.userID or client.userID.  If said token does not exist then set
url.action to login and drop through to the underlying fusebox where a
login page will be displayed.  After submitting the login page you'll have
an action page that checks for the existance of the form fields and queries
the DB.  If the query comes up blank you drop through again, if the query
comes back good then set the security token and relocate to a home page.
WARNING: in application.cfm if the user isn't logged in DO NOT use a
cflocation to any folders that will call that application.cfm again.  This
will result in an endless loop.

Good luck :)




 

Bryan Love Macromedia Certified Professional
Internet Application Developer / Database Analyst
Telecommunication Systems Inc.
[EMAIL PROTECTED]
 

What father would hesitate to say 'if there must be trouble let it be in my
day, that my child may have peace'?
- Thomas Paine, An American Crisis



-Original Message-
From: Avena Weddle [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 26, 2001 8:48 AM
To: CF-Talk
Subject: User Login


Hi there. I'm new to the list and am an absolute baby to the CF world. I
am trying to find the best way to learn CF. I work for a community
college, and my goal is to write our web site in CF giving the faculty
and staff the option of logging in and changing their own content. I
have read two (not so great) books on CF and done the skillbuilding CD.

I would like to take the Fast Track to CF course and then the Advanced,
but my boss is being stingy about springing the $ for the courses. He
thinks I should just keep reading the books and fumble around. (He is
not in IT by the way and has no clue what CF or even web development
are.)

I just feel like I'm stubbling along learning this stuff, and I'd really
like to get going on it with some confidence. Any suggestions at all
would be greatly appreciated.

Thanks
Avena

--
Avena Weddle
Web Content  Design Specialist
Southwestern Oregon Community College

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



RE: Escaping Quotes

2001-10-27 Thread Bryan Love

try the HTMLEditFormat() function


 

Bryan Love Macromedia Certified Professional
Internet Application Developer / Database Analyst
Telecommunication Systems Inc.
[EMAIL PROTECTED]
 

What father would hesitate to say 'if there must be trouble let it be in my
day, that my child may have peace'?
- Thomas Paine, An American Crisis



-Original Message-
From: Ray Bujarski [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 26, 2001 12:25 PM
To: CF-Talk
Subject: Escaping Quotes


I am outputting a string into a form field where the contents contains a 
set of quotes.  But escaping them doesn't work can someone help with this?

The Code
cfoutput query=getCurrReports
input class=boxes type=text value=#replace(Job_Name, chr(34), 
chr(92)  chr(34), all)# name=JobName#ii#
/cfoutput


when I view the sorce code I see
GSM \KOVU\

I have also tried
GSM quote;KOVUquote;

but the input box will only read
GSM \   for the first example
and
GSM   for the last example

How can I escape these characters?
Thanks,
Ray

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



re: mySQL?

2001-10-27 Thread Matt Robertson

In CF 4.5, all you have to do is use the Win2k ODBC Data Source Administrator, rather 
than the CF admin interface.  First you have to have mySQL and myODBC properly 
installed.  Then

Settings / Control Panel / Administrative Tools / Data Sources (ODBC)

Select System DSN and click Add.  
Select mySQL drivers from bottom of list.  
Then typically all you need to fill out are the first 5 fields.  
You may want to check 'use compressed protocol' for security's sake.
Save.

Then go into CF Administrator.  You can see the dsn in there now.  Adjust existing 
settings as desired.

---
Matt Robertson[EMAIL PROTECTED]
MSB Designs, Inc., www.mysecretbase.com
---
 
 

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



Studio subscription upgr to CFS 5?

2001-10-27 Thread Matt Robertson

I have a subscription to Studio and am using 4.5.2.  Does anyone know if Macromedia is 
honoring subscription updates? I haven't heard a thing, but maybe I just missed the 
notification?  I don't see anything about this on the ALLR/MACR sites.

---
Matt Robertson[EMAIL PROTECTED]
MSB Designs, Inc., www.mysecretbase.com
---
 
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Escaping Quotes

2001-10-27 Thread Kwang Suh

Use the function HTMLEditFormat.  This function will automatically replace
all the dangerous characters for you.

-Original Message-
From: Ray Bujarski [mailto:[EMAIL PROTECTED]]
Sent: October 26, 2001 1:25 PM
To: CF-Talk
Subject: Escaping Quotes


I am outputting a string into a form field where the contents contains a
set of quotes.  But escaping them doesn't work can someone help with this?

The Code
cfoutput query=getCurrReports
input class=boxes type=text value=#replace(Job_Name, chr(34),
chr(92)  chr(34), all)# name=JobName#ii#
/cfoutput


when I view the sorce code I see
GSM \KOVU\

I have also tried
GSM quote;KOVUquote;

but the input box will only read
GSM \   for the first example
and
GSM   for the last example

How can I escape these characters?
Thanks,
Ray

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



Re: convert .tif to .pdf

2001-10-27 Thread Stephen M Aylor

you may need www.pdflib.com

Steve

- Original Message -
From: Chris Giminez [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, October 26, 2001 11:35 AM
Subject: convert .tif to .pdf


 Can anyone recommend a custom tag that can open a .tif file (that's the
primary need, but ideally it
 could also open .doc and .xls) and then convert to .pdf on the fly?

 I have heard of activepdf, but cannot get any info from their web site at
the moment. will this
 work?

 Thanks,

 Chris

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



CF Sessions and NT Authentication

2001-10-27 Thread Michael T. Tangorre

Hey everyone.

I am outlining a project I am doing in Cold Fusion for my school in 
which each student has an account on the NT domain, and I need to use NT 
authentication to allow access to the app, but at the same time, I need 
to set some session vars. Is it possible to authenticate using 
challenge response (if that is what it is called) and then set a 
session to say the user is loged into the app and thus allowed to view 
all the pages within the app?  I am using the fusebox methodology for 
this in case that needs to be taken into account.

Thanks in advance for any help.

Mike Tangorre

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



Cold Fusion Sever 4.5 and Windows XP Professional

2001-10-27 Thread Double Down, Inc.

Does anyone know of any problems with running Cold Fusion Server 4.5 and
Windows XP Professional?

Sincerely,

HB

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



Re: Studio subscription upgr to CFS 5?

2001-10-27 Thread David Schmidt

Hi,

At 03:31 PM 10/26/2001 -0700, Matt Robertson wrote:
I have a subscription to Studio and am using 4.5.2.  Does anyone know if 
Macromedia is honoring subscription updates? I haven't heard a thing, but 
maybe I just missed the notification?  I don't see anything about this on 
the ALLR/MACR sites.
Yes, they are honouring the subscriptions. They just haven't sent out the 
CFStudio notices yet.

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



grab text from an email, insert to a record????

2001-10-27 Thread Jeff Fongemie

Hello cf-talk,

  Is there a way to capture text (all text is fine) from an email and
  have it go into a record in the database? So, essentially someone
  can send an email, and it will automaticly get inserted into a
  record.

  Example: Ski areas will send conditions reports daily by email. I
  want to have those reports go into a record to we can use it on the
  site of a local ski shop. Not, by the guy taking his email and
  pasting into a form.


Best regards,
 Jeff Fongemie  mailto:[EMAIL PROTECTED]
 
Internet Guns For Hire
(603) 356-0768
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Running Requests?

2001-10-27 Thread Dave Watts

  If your server is NT/W2K you could try the filemon tool at:
 
  http://www.sysinternals.com/ntw2k/source/filemon.shtml

 Wouldn't the file only be accessed briefly and not show during 
 the length of the request? The file isn't open while it's 
 being processed, right?

No, you're right, that tool wouldn't be especially useful for what you're
trying to do.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
~~
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CF connect to MS Word

2001-10-27 Thread Paige Chandler

Hello All,

How to connect form CF to MS Word. My CF app lists files from a 
particular directory (CFDirectory). They are now links. I want the user 
to be able to click on a file name (link) a bring it up in MS Word.  Is 
this doable? Would it require JS?   TIA.

Regards,

Paige

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



RE: grab text from an email, insert to a record????

2001-10-27 Thread Pete Freitag

CFPOP will do the trick.  You give it a pop3 server, username, and password
to connect to and it will return a query of all the messages.


++
Pete Freitag ([EMAIL PROTECTED])
CFDEV.COM
ColdFusion Developer Resources
http://www.cfdev.com/


-Original Message-
From: Jeff Fongemie [mailto:[EMAIL PROTECTED]]
Sent: Saturday, October 27, 2001 9:30 AM
To: CF-Talk
Subject: grab text from an email, insert to a record


Hello cf-talk,

  Is there a way to capture text (all text is fine) from an email and
  have it go into a record in the database? So, essentially someone
  can send an email, and it will automaticly get inserted into a
  record.

  Example: Ski areas will send conditions reports daily by email. I
  want to have those reports go into a record to we can use it on the
  site of a local ski shop. Not, by the guy taking his email and
  pasting into a form.


Best regards,
 Jeff Fongemie  mailto:[EMAIL PROTECTED]

Internet Guns For Hire
(603) 356-0768

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