problem installing CF5 and Windows XP Pro

2002-06-11 Thread Sharon Fling

Hi, has anyone had problems installing CF5 under Windows XP Pro? I've tried CF4.5 and 
CF5 and neither of them install completely. CF4.5 seems to install, but gets hung at 
the very end on updating registry settings -- no matter how long I wait it never 
finishes. CF5 does the same thing. I've re-installed XP, IIS, and CF numerous times 
and nothing works, can't get CF Admin to come up or anything else. Has anyone had a 
problem like this? Thanks.

Sharon

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



Re: OT: DIV question

2002-06-11 Thread Jann VanOver

Yes!  I just checked the DTD to be sure, but a DIV can contain any other
block or inline element.

On 6/10/02 12:16 PM, Bruce, Rodney S HQISEC/SIGNAL
[EMAIL PROTECTED] wrote:

 Hello all
 
 Was wondering if it was possible for divs to be subs to each other.
 
 Like if the main div is hidden the subs will be as well without having to
 hide each one.
 
 example:
 
 DIV name=main1
 DIV name=sub1main1/div
 DIV name=sub2main1/div
 /div
 
 Div name=main2
 DIV name=sub1main2/div
 DIV name=sub2main2/div
 /div
 
 
 currently I can hide all three:
 
 function hide(){
 
 document.all.main1.style.visibility= 'hidden';
 document.all.sub1main1.style.visibility= 'hidden';
 document.all.sub2main1.style.visibility= 'hidden';
 
 document.all.main2.style.visibility= 'visible';
 document.all.sub1main2.style.visibility= 'visible';
 document.all.sub2main2.style.visibility= 'visible';
 }
 
 
 but I was hoping it might be possible to hide the subs just by hiding the
 main.
 
 
 Thanks for any help
 Rodney
 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFX Image

2002-06-11 Thread Robert Obreczarek

Hi Gang,

Just wondering if anybody can hook me up with
a zip with CFMImage? It seems that gafware.com
is down. Has it been down for long? Maybe it's 
been long gone, though I hope not. Please email
me off list. Thanx.

Robert

__
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: Getting Physical Path from Mapped Path

2002-06-11 Thread Adrian Lynch

Have a look at ExpandPath()

-Original Message-
From: Jared Stark [mailto:[EMAIL PROTECTED]]
Sent: 10 June 2002 23:43
To: CF-Talk
Subject: Getting Physical Path from Mapped Path


Given that I know a Cold Fusion mapping for a site on my server, how can
I extract what the physical path (i.e. f:\inetpub\wwwroot\mysite) is?
Is it even possible?
 
I can't use GetBaseTemplatePath(), or GetCurrentTemplatePath() because I
am trying to do something from within a Custom Tag that is given the CF
mapping as an attribute,
and I need to be able to open a file based on that mapping?
 
Any suggestions?
 
Jared


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



Re: CFX Image

2002-06-11 Thread Zac Spitzer

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

from the author's website

http://www.kolumbus.fi/jukka.manner/

zac
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6-2 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAj0F2CwACgkQm98oI6K7h0hrMACfSaNQBEhnSDYecvcKm6sM67Wi
jbsAn05BaMphlktlSW6Od1gN5pbyjr0r
=vq9u
-END PGP SIGNATURE-

__
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



JS Select Box Value Question :: help

2002-06-11 Thread Paul Ihrig

Hello
quick question on grabbing a specific result from a select box

Right Now i have this select:

select name='Print_Type_ID'
onChange='PrintPrice(this);TotalNum_Origionals();TotalPrintPrice();'
onFocus='if(isDis())blur();'
 cfloop query='rs_Print_Type'
  option value='cfoutput#rs_Print_Type.Print_Type_ID#/cfoutput' 
  cfoutput
#NumberFormat(rs_Print_Type.Print_Type_Price, '.999')# 
:: #rs_Print_Type.Print_Type_Width#'/
#rs_Print_Type.Print_Type_Height#' 
:: #rs_Print_Type.Print_Type_Color#
/cfoutput/option
 /cfloop
/select 

the JS i have:

function PrintPrice(obj)// this from below gets passed as obj
{
var total2 = 0;

if ((obj)) {//once this is passed, calculate totals
amt3 = obj.options[obj.selectedIndex].text; //grabs the text
label instead of the value
PriPri = amt3;
}

document.all('PrintPri').innerHTML = PriPri;
document.all('PrintPri1').value = PriPri;
}   

grabs:
#NumberFormat(rs_Print_Type.Print_Type_Price, '.999')#  ::
#rs_Print_Type.Print_Type_Width#'/ #rs_Print_Type.Print_Type_Height#'  ::
#rs_Print_Type.Print_Type_Color#

form the select box
i want it only to grab #NumberFormat(rs_Print_Type.Print_Type_Price,
'.999')#
the first value.

but want to be able to display the other values.

any ideas?

-paul
__
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



Stored procedures, action = commit in cftransaction tag

2002-06-11 Thread Earl, George

We are using CF 5.0 to call stored procedures in mainframe DB2.

Here is the code:

cftransaction
cfstoredproc datasource=#datasource#
procedure=#listingDataSource#

cfprocparam type=IN
cfsqltype=CF_SQL_VARCHAR
value=#listingQueryString#
dbvarname=@PARM-RZSTR-INPUT
  
CFPROCPARAM TYPE=OUT
cfsqltype=CF_SQL_VARCHAR
VARIABLE=code 
DBVARNAME=@PARM-RETURN-CODE
CFPROCPARAM TYPE=OUT
cfsqltype=CF_SQL_VARCHAR
VARIABLE=message 
DBVARNAME=@PARM-RETURN-MSG

CFPROCRESULT NAME = RS1
CFPROCRESULT NAME = RS2 resultset=2

/cfstoredproc
/cftransaction

This works fine except that under load we get abends on the stored procedure
unless we turn off the 'stay resident' parameter in DB2 that keeps the
stored procedure code resident in memory. Of course this affects
performance.

IBM seems to think this is a commit problem, so we are playing around with
the nested cftransaction action=commit / tag to see if it helps us to
avoid the abends.

How would you use the action=commit parameter with our code shown above?
Where would you insert this code?

Thanks!

George
[EMAIL PROTECTED]

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



RE: problem installing CF5 and Windows XP Pro

2002-06-11 Thread Matthew R. Small

Hi Sharon,
I've installed CF4.5 on XP Pro with no problems.  It was on a
Packard Bell PII 233MMX 128 Mb for that matter.
You're saying that a completely clean install of XP with a
completely clean install of CF won't work for you?   Have you done a
scandisk on your hard drive?  It sounds like a weird hardware error to
me.  The software will definitely work.

- Matt Small

-Original Message-
From: Sharon Fling [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, June 11, 2002 2:22 AM
To: CF-Talk
Subject: problem installing CF5 and Windows XP Pro

Hi, has anyone had problems installing CF5 under Windows XP Pro? I've
tried CF4.5 and CF5 and neither of them install completely. CF4.5 seems
to install, but gets hung at the very end on updating registry
settings -- no matter how long I wait it never finishes. CF5 does the
same thing. I've re-installed XP, IIS, and CF numerous times and nothing
works, can't get CF Admin to come up or anything else. Has anyone had a
problem like this? Thanks.

Sharon


__
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: Examples of Inheritance?

2002-06-11 Thread Raymond Camden

I have some code samples, but they are a bit complex? Would a simple
description of one example help?

Imagine a magazine web site. The site's main content are articles, but
there are different types of articles. You have your vanilla-generic
Article, you have Reviews, you have Interviews, etc. Each type, though,
shares certain basic characteristics. This would be a good place to use
inheritance. You could create a simple base class Article, then create
specific types that extend it.

===
Raymond Camden, ColdFusion Jedi Master for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

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

 -Original Message-
 From: Stacy Young [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, June 10, 2002 3:34 PM
 To: CF-Talk
 Subject: Examples of Inheritance?
 
 
 Any examples kickin' around folks on desiging CFC's w/ 
 inheritance? Checked
 on the MM dev site but not much on this topic unless my eyes 
 deceive me. ;)
 
 Thx!
 
 

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



RE: CF Cache size

2002-06-11 Thread Philip Arnold - ASP

 What's a good rough formula for setting the cache size in the CF
 administrator? We've got a server with 1 gig of RAM, but the
 cache is only set to 2048 kb

Don't forget that the cache is only used when it needs to be, so you
could set it to 512Mb, and CF would just keep on expanding the cache as
much as it needed it

Watch the server and see if it does any Cache Pops, if it does, then
keep on increasing the number

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.
**


__
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: Examples of Inheritance?

2002-06-11 Thread Neil Clark - =TMM=

Types, Inheritance.. what next objects?

hhh, maybe MM should write an app based in this, maybe a content
management, personlization and syndication type thingy

grin/











-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]] 
Sent: 11 June 2002 14:09
To: CF-Talk
Subject: RE: Examples of Inheritance?

I have some code samples, but they are a bit complex? Would a simple
description of one example help?

Imagine a magazine web site. The site's main content are articles, but
there are different types of articles. You have your vanilla-generic
Article, you have Reviews, you have Interviews, etc. Each type, though,
shares certain basic characteristics. This would be a good place to use
inheritance. You could create a simple base class Article, then create
specific types that extend it.

===
Raymond Camden, ColdFusion Jedi Master for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

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

 -Original Message-
 From: Stacy Young [mailto:[EMAIL PROTECTED]] 
 Sent: Monday, June 10, 2002 3:34 PM
 To: CF-Talk
 Subject: Examples of Inheritance?
 
 
 Any examples kickin' around folks on desiging CFC's w/ 
 inheritance? Checked
 on the MM dev site but not much on this topic unless my eyes 
 deceive me. ;)
 
 Thx!
 
 


__
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: Examples of Inheritance?

2002-06-11 Thread todd

Yeah, I understand that.  A co-worker and I were discussing something like 
this today as an example as well.  We have an article application we did 
for a client (a over-complicated news system).  As I said, I understand 
everything, I'm just thinking of where and when to apply it.  It's that 
thing that you mentioned, knowing when to make a seperate table in the 
database, etc.  That's exactly it.  It took time to hone my data modelling 
skills, but ... I think I'm pretty competent in it now. =)  I'll get 
there. ;)

~Todd

On Tue, 11 Jun 2002, Raymond Camden wrote:

 I have some code samples, but they are a bit complex? Would a simple
 description of one example help?
 
 Imagine a magazine web site. The site's main content are articles, but
 there are different types of articles. You have your vanilla-generic
 Article, you have Reviews, you have Interviews, etc. Each type, though,
 shares certain basic characteristics. This would be a good place to use
 inheritance. You could create a simple base class Article, then create
 specific types that extend it.
 
 ===
 Raymond Camden, ColdFusion Jedi Master for Macromedia
 
 Email: [EMAIL PROTECTED]
 Yahoo IM : morpheus
 
 My ally is the Force, and a powerful ally it is. - Yoda 
 
  -Original Message-
  From: Stacy Young [mailto:[EMAIL PROTECTED]] 
  Sent: Monday, June 10, 2002 3:34 PM
  To: CF-Talk
  Subject: Examples of Inheritance?
  
  
  Any examples kickin' around folks on desiging CFC's w/ 
  inheritance? Checked
  on the MM dev site but not much on this topic unless my eyes 
  deceive me. ;)
  
  Thx!
  
  
 
 
__
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: Examples of Inheritance?

2002-06-11 Thread todd

Eeeks, sorry, my bad.. Raymond and I were just chatting about this 
off-list... when I saw Raymond's response, I thought he was talking to me. 
;)

~Todd

On Tue, 11 Jun 2002 [EMAIL PROTECTED] wrote:

 
 Yeah, I understand that.  A co-worker and I were discussing something like 
 this today as an example as well.  We have an article application we did 
 for a client (a over-complicated news system).  As I said, I understand 
 everything, I'm just thinking of where and when to apply it.  It's that 
 thing that you mentioned, knowing when to make a seperate table in the 
 database, etc.  That's exactly it.  It took time to hone my data modelling 
 skills, but ... I think I'm pretty competent in it now. =)  I'll get 
 there. ;)
 
 ~Todd
 
 On Tue, 11 Jun 2002, Raymond Camden wrote:
 
  I have some code samples, but they are a bit complex? Would a simple
  description of one example help?
  
  Imagine a magazine web site. The site's main content are articles, but
  there are different types of articles. You have your vanilla-generic
  Article, you have Reviews, you have Interviews, etc. Each type, though,
  shares certain basic characteristics. This would be a good place to use
  inheritance. You could create a simple base class Article, then create
  specific types that extend it.
  
  ===
  Raymond Camden, ColdFusion Jedi Master for Macromedia
  
  Email: [EMAIL PROTECTED]
  Yahoo IM : morpheus
  
  My ally is the Force, and a powerful ally it is. - Yoda 
  
   -Original Message-
   From: Stacy Young [mailto:[EMAIL PROTECTED]] 
   Sent: Monday, June 10, 2002 3:34 PM
   To: CF-Talk
   Subject: Examples of Inheritance?
   
   
   Any examples kickin' around folks on desiging CFC's w/ 
   inheritance? Checked
   on the MM dev site but not much on this topic unless my eyes 
   deceive me. ;)
   
   Thx!
   
   
  
  
__
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: Examples of Inheritance?

2002-06-11 Thread Neil Clark - =TMM=

Take this for example..  Say I wanted to cookup a new 'object' of
Type : ColdFusion Coder As Ray suggested, there are a certain
amount of general vanilla parameters, in this case, fname, lname and
age.




So we have 1 class - a superclass called human.cfc which looks like
this : 

cfcomponent name=human

cffunction name=createhuman returntype=struct access=package
cfargument name=fname default= type=string
cfargument name=lname default= type=string
cfargument name=age default=-1 type=numeric
cfscript
this.fname = arguments.fname;
this.lname = arguments.lname;
this.age = arguments.age;
/cfscript

cfreturn this
/cffunction

/cfcomponent



We also have a CFC named coder .cfc which is extending/inheriting the
human.cfc method  properties..it is adding a coding discipline :
Language

cfcomponent name=coder extends=human

cffunction name=create returntype=struct
cfargument name=language default= type=string
cfscript
createhuman(argumentCollection=duplicate(arguments));
/cfscript
cfset this.language = arguments.language
cfreturn this
/cffunction

/cfcomponent


We can either now, call human.cfc to create a simple human with default
params, or we can call the coder.cfc to add instance variables to
human.cfc thus (from a standard .cfm page) :

cfset stArgs = structNew()
cfset stArgs.fname = Neil
cfset stArgs.lname = Clark
cfset stArgs.age = 29
cfset stArgs.language = ColdFusion

cfinvoke component=com.macromedia.coder method=create
argumentcollection=#stArgs# returnvariable=coder /

cfoutput#coder.lname#, #coder.fname#, #coder.age#/cfoutput

This is displays fairly simple inheritance with ColdFusion and CFCs -
yes it may not be what you determine as true inheritance, but its
ingeritance nonetheless.


Hope this helps.




Neil



Neil Clark
Team Macromedia
http://www.macromedia.com/go/team

Announcing Macromedia MX!! 
-- http://www.macromedia.com/software/trial/.


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



Getting datasources from CF 4.5 into a CF 5.0 box

2002-06-11 Thread Timothy Heald

Hey,
We run Solaris 8 and we are adding a new box to our cluster.  I am
wondering if there is an easier way to get all of the existing datasources
from CF 4.5 so we can just add them all at once to the CF 5.0 box.

Thanks,

Tim Heald
ACP/CCFD :)
Application Development
www.schoollink.net

__
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



Tabbed menu

2002-06-11 Thread Kris Pilles

I need to duplicate a tabbed menu much like the ones you are able to
develop in with oracle's form builder.  Does anyone know of an effective
way to achieve this? I was thinking Flahs might be my best way but I
figured I would float it out here anyways...  We are attempting to
duplicate the functionality of one of our Oracle applications with
Coldfusion and possibly flash to determine which is a better development
tool for our needs.  Any thoughts or ideas would be appreciated.

Thanks

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



Re: CF 5 and CFMX

2002-06-11 Thread Earl, George

Dave said:

.. snipped ...
 I was wondering mainly about COM. I have a very large app that I am
developing using  VB6 COM and CF 5. I have noticed that this is very slow
with CF 5. The average page with a COM object on it loads in about 800-900
milliseconds. Which is very slow when compared to straight CF. 
.. snipped ...
I wanted to
know if CFMX was better or worse with COM.
.. snipped ...
end of Dave


From page 25 of Migrating ColdFusion 5 Applications:

COM objects

ColdFusion MX uses the Java Native Interface (JNI) to call COM objects,
which results
in slower performance than in ColdFusion 5. How much slower depends on the
application and COM, but in the Macromedia tests of the same code,
ColdFusion 5
completed in 50 milliseconds and ColdFusion MX completed in 2-3 seconds.

HTH,

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



RE: CF 5 and CFMX

2002-06-11 Thread Neil Clark - =TMM=

It is supposedly faster and enhanced.











Neil Clark
Team Macromedia
http://www.macromedia.com/go/team

Announcing Macromedia MX!! 
http://www.macromedia.com/software/trial/




-Original Message-
From: Earl, George [mailto:[EMAIL PROTECTED]] 
Sent: 11 June 2002 15:00
To: CF-Talk
Subject: Re: CF 5 and CFMX

Dave said:

. snipped ...
 I was wondering mainly about COM. I have a very large app that I am
developing using  VB6 COM and CF 5. I have noticed that this is very
slow
with CF 5. The average page with a COM object on it loads in about
800-900
milliseconds. Which is very slow when compared to straight CF. 
. snipped ...
I wanted to
know if CFMX was better or worse with COM.
. snipped ...
end of Dave


From page 25 of Migrating ColdFusion 5 Applications:

COM objects

ColdFusion MX uses the Java Native Interface (JNI) to call COM objects,
which results
in slower performance than in ColdFusion 5. How much slower depends on
the
application and COM, but in the Macromedia tests of the same code,
ColdFusion 5
completed in 50 milliseconds and ColdFusion MX completed in 2-3
seconds.

HTH,

George
[EMAIL PROTECTED]

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



Re: Getting datasources from CF 4.5 into a CF 5.0 box

2002-06-11 Thread Critz

oi Timothy!!

wellif ya's usin Win2k, you could just export/import the registry, eh? silly
solaris ppl


-- 
Critz
Certified Adv. ColdFusion Developer

Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion

Tuesday, June 11, 2002, 9:53:39 AM, you wrote:

TH Hey,
TH We run Solaris 8 and we are adding a new box to our cluster.  I am
TH wondering if there is an easier way to get all of the existing datasources
TH from CF 4.5 so we can just add them all at once to the CF 5.0 box.

TH Thanks,

TH Tim Heald
TH ACP/CCFD :)
TH Application Development
TH www.schoollink.net

TH 
__
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



CFGRID examples?

2002-06-11 Thread Brook Davies

It was my experience in the past that CFGRID was limited and somewhat 
unreliable. Has this changed any? Does any one have a slick implementation 
of CFGRID they could share?

Thanx!

bd


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



Re: CFX Image

2002-06-11 Thread Lewis Sellers

On Tue, 11 Jun 2002 12:59:56 +0200, in cf-talk you wrote:

from the author's website

http://www.kolumbus.fi/jukka.manner/

I have a question... Is this tag at gafware.com actually made by jukka
as well?

--min

__
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



Mac form submission file upload

2002-06-11 Thread Valerie L. Criswell

I must admit, I'm stupified (okay, maybe just stupid) by this problem.  I've
been beating my head on my desk for a good long while trying to solve this
same problem.  I've browsed the Macromedia CF Forum and TEK TIPS forum and
found quite a bit of info on this subject.  However, I've tried the TRIM()
thing on all received form fields, but now my PC upload isn't working.  I've
seen a few other tidbits of stuff to try, but before I waste any time trying
those, does anyone have a definitive solution in their pocket for this
silliness?

Here's the deal.

Without the TRIM(), my entire form (which contains an upload field and is
enctype multipart/form-data) works perfectly on the PC, but the Mac just
totally ignores my form submission.  No errors, just a clean blank page.  If
I use the TRIM(), the form works on the PC until I put a file in the file
input (for upload).  Thus, I'm in a catch22 atm.

TIA to anyone with any advice.  I'm just aching to get this done so I can
check out of here and go on vacation!

~Val

- Original Message -
From: Michael Dorr [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, June 10, 2002 4:58 PM
Subject: RE: MAC file upload


 Just worked through this problem about a month ago.  The
enctype=multipart/form-data on IE 5.0 does a strange thing - it inserts a
blank space at the end of every single form input inside the form.  Major
pain.  Anyway, on the receiving end, you need to Trim() your form variables,
especially from input type=file.



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



CF Administrator now wants to DOWNLOAD?

2002-06-11 Thread Lee Fuller

We installed CFMX on a box, then went back to CF5.  Now, whenever we try
to open the CF Administator pages, it wants to download the index.cfm
pages to us.  Ok.. So first thing is to check to make sure mime-types
are set properly, etc... Did that.  All other CF pages are delivering
fine.  So it's not that.

Any suggestions?


__
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: Getting datasources from CF 4.5 into a CF 5.0 box

2002-06-11 Thread Dave Watts

 We run Solaris 8 and we are adding a new box to our 
 cluster. I am wondering if there is an easier way to 
 get all of the existing datasources from CF 4.5 so we 
 can just add them all at once to the CF 5.0 box.

Yes, you can. If I recall correctly, CF 4.5.1 on Solaris uses a text file
for its registry, instead of the Bristol WindU registry emulator. If
that's the case, you can simply copy the relevant portions of the
cf.registry file, as well as the odbc.ini file, and you should be all set.
However, you'll still need to configure any native database clients
appropriately.

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



Re: Getting datasources from CF 4.5 into a CF 5.0 box

2002-06-11 Thread Stephen Moretti

 We run Solaris 8 and we are adding a new box to our cluster.  I am
 wondering if there is an easier way to get all of the existing datasources
 from CF 4.5 so we can just add them all at once to the CF 5.0 box.


CF uses a psuedo registry on Solaris, which is basically a text file.  The
datasource information is all stored in there.
In theory, if you're going from solaris to solaris and the datasource
entries are staying the same, you should be able to copy the entries in the
registry from CF4.5 to CF5.  A restart of CF5 should make the DSN available
straight away.

I say a restart - this isn't something I wouldn't attempt with CF
running.  Also I have to say that all I've said about is theoretical -
if you try this then you do so at your own risk, so don't forget to take a
back-up! ;o)

Regards

Stephen


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



RE: CF Administrator now wants to DOWNLOAD?

2002-06-11 Thread Dave Watts

 We installed CFMX on a box, then went back to CF5. Now, 
 whenever we try to open the CF Administator pages, it 
 wants to download the index.cfm pages to us. Ok.. So 
 first thing is to check to make sure mime-types are set 
 properly, etc... Did that.  All other CF pages are 
 delivering fine. So it's not that.

Basically, as you're probably already aware, the root cause of this is that,
for whatever reason, files within that directory aren't being processed by
CF, because the web server isn't passing them to the CF server. So, make
sure you don't have a virtual directory for CFIDE that's configured
differently from the virtual server that contains it.

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: CFExecute creating hung processes ( Verity K2)

2002-06-11 Thread Dave Watts

 here's my sample batch files:
 
 vspider.bat (this is the file that the scheduler actually uses)

 ...

 Echo Rebooting k2 server  C:\batch\spider_output.txt
 PATH = c:\cfusion\verity\_nti40\bin
 
 k2server.exe -ntservice 0
 
 k2server.exe -inifile 
 c:\cfusion\verity\_nti40\bin\k2server.ini -ntservice 1

Out of curiosity, why are you uninstalling and reinstalling the NT service
interface for Verity? If you just want to restart Verity after setting it up
as a service, you could just do this:

net stop k2server
net start k2server

I think that if you want to change the location of the ini file, you might
then have to uninstall the service, but I'm not even sure about that.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Problems with Client Variables

2002-06-11 Thread Brian Eckerman

Hello, I am having a problem with Client Variables (Stored on the Server
in SQL Server).

I am setting the users permissions to a list called client.permissions,
Later I test it and it is indeed getting set, but I am also getting the
following error, apon which I go to the home page.  Built into the home
page is a test, if the client variables exist then go directly to the
user link click.

For some reason they are sent to the login page, which means the client
vars are getting trashed somehow

..does this error have something to do with it.

I checked the Server, the tables CDATA, and CGLOBAL do exist.

Any insight appreciated.



---
Error Occurred While Processing Request
Error Diagnostic Information
ODBC Error Code = S0002 (Base table not found)

[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name
'CGLOBAL'.



Date/Time: 06/11/02 10:06:18
Browser: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
Remote Address: 10.14.1.134
HTTP Referer: http://fmnet/plus/index.cfm?fuseaction=getlogindest=ar
Query String: fuseaction=validateuserdest=ar

---
__
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: Verity K2 having problems with PDFs?

2002-06-11 Thread Dave Watts

 The setup process was really, really messed up -- we had 
 to switch out the style guide and kind of fly by the seat 
 of our pants.

A lot of this stuff has been addressed in CF MX, I think. Also, the
documentation seems a bit better.

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



Re: Problems with Client Variables

2002-06-11 Thread Brook Davies

Make sure your data source is being referenced correctly. You say the 
tables exist, you should verify this and that you have the correct data 
source set in your cfapplication tag. SQL server is tellingt you the table 
does not exist. If you say it does exist then the chances are good you are 
referencing the wrong datasource somewhere. Either in the CFadmin or in 
your cfapplication tag.

  At 10:16 AM 11/06/02 -0400, you wrote:
Hello, I am having a problem with Client Variables (Stored on the Server
in SQL Server).

I am setting the users permissions to a list called client.permissions,
Later I test it and it is indeed getting set, but I am also getting the
following error, apon which I go to the home page.  Built into the home
page is a test, if the client variables exist then go directly to the
user link click.

For some reason they are sent to the login page, which means the client
vars are getting trashed somehow

..does this error have something to do with it.

I checked the Server, the tables CDATA, and CGLOBAL do exist.

Any insight appreciated.



---
Error Occurred While Processing Request
Error Diagnostic Information
ODBC Error Code = S0002 (Base table not found)

[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name
'CGLOBAL'.



Date/Time: 06/11/02 10:06:18
Browser: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
Remote Address: 10.14.1.134
HTTP Referer: http://fmnet/plus/index.cfm?fuseaction=getlogindest=ar
Query String: fuseaction=validateuserdest=ar

---

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



RE: Mac form submission file upload

2002-06-11 Thread Axiomatique (Vincent)

I don't know if this is related to your problem, but I noticed that on the
MAC, if you have a file upload field and that you don't select a file to
upload (field supposely empty), the MAC doesn't see the field as empty, thus
forcing you to trap the error in the cffile as cfif form.filefield neq 
won't work on the MAC.

Vincent

-Message d'origine-
De : Valerie L. Criswell [mailto:[EMAIL PROTECTED]]
Envoyé : Tuesday, June 11, 2002 4:06 PM
À : CF-Talk
Objet : Mac form submission  file upload


I must admit, I'm stupified (okay, maybe just stupid) by this problem.  I've
been beating my head on my desk for a good long while trying to solve this
same problem.  I've browsed the Macromedia CF Forum and TEK TIPS forum and
found quite a bit of info on this subject.  However, I've tried the TRIM()
thing on all received form fields, but now my PC upload isn't working.  I've
seen a few other tidbits of stuff to try, but before I waste any time trying
those, does anyone have a definitive solution in their pocket for this
silliness?

Here's the deal.

Without the TRIM(), my entire form (which contains an upload field and is
enctype multipart/form-data) works perfectly on the PC, but the Mac just
totally ignores my form submission.  No errors, just a clean blank page.  If
I use the TRIM(), the form works on the PC until I put a file in the file
input (for upload).  Thus, I'm in a catch22 atm.

TIA to anyone with any advice.  I'm just aching to get this done so I can
check out of here and go on vacation!

~Val

- Original Message -
From: Michael Dorr [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, June 10, 2002 4:58 PM
Subject: RE: MAC file upload


 Just worked through this problem about a month ago.  The
enctype=multipart/form-data on IE 5.0 does a strange thing - it inserts a
blank space at the end of every single form input inside the form.  Major
pain.  Anyway, on the receiving end, you need to Trim() your form variables,
especially from input type=file.




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



RE: CFX Image

2002-06-11 Thread Ryan Kime

Hehehenow that's funny. I haven't seen Glenn (owner of gafware.com) in
over two years. I used to work with him at pennNET and he wrote CFMImage
while he was there. What a blast from the past when you put his URL in your
email.

The site looks like it is working now. 

-Original Message-
From: Robert Obreczarek [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, June 11, 2002 3:31 AM
To: CF-Talk
Subject: CFX Image


Hi Gang,

Just wondering if anybody can hook me up with
a zip with CFMImage? It seems that gafware.com
is down. Has it been down for long? Maybe it's 
been long gone, though I hope not. Please email
me off list. Thanx.

Robert


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



RE: CF Cache size

2002-06-11 Thread Dave Watts

   What's a good rough formula for setting the cache size in 
   the CF administrator? We've got a server with 1 gig of RAM, 
   but the cache is only set to 2048 kb
  
  In CF 5, the typical best practices recommendation is to 
  find the total file size of all .cfm files you want to cache 
  (typically, all that'll be run by that server) and multiply 
  by 3-5. Usually, memory isn't much of an issue, so I tend to 
  multiply by five and round up.

 The answer is just a command-line away.
 
   find /opt/coldfusionmx/wwwroot -name *.cf | wc -l

Wouldn't I want to find the number of bytes, rather than the number of
lines? (wc -c) Keep in mind that I'm a dumb Windows guy, so I could be
wrong.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Read or delivery receipts for CF and Exchange

2002-06-11 Thread LANCASTER, STEVEN M. (JSC-OL) (BAR)

Is there A way if I use the CFMAIL tag to get a read or delivery receipt
from the Exchange server?

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

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



RE: Problems with Client Variables

2002-06-11 Thread Dave Watts

 I checked the Server, the tables CDATA, and CGLOBAL do exist.

Make sure that within your datasource, you've specified the correct database
name. If you create a SQL Server datasource, but omit the database name,
you'll use the default database (which is often master unless you've
configured your user account to use a different default).

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Problems with Client Variables

2002-06-11 Thread Ian Lurie

When this started happening to us, we had to recreate the client var store.
That fixed the issue and we haven't seen it since

-Original Message-
From: Brook Davies [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 7:36 AM
To: CF-Talk
Subject: Re: Problems with Client Variables


Make sure your data source is being referenced correctly. You say the
tables exist, you should verify this and that you have the correct data
source set in your cfapplication tag. SQL server is tellingt you the table
does not exist. If you say it does exist then the chances are good you are
referencing the wrong datasource somewhere. Either in the CFadmin or in
your cfapplication tag.

  At 10:16 AM 11/06/02 -0400, you wrote:
Hello, I am having a problem with Client Variables (Stored on the Server
in SQL Server).

I am setting the users permissions to a list called client.permissions,
Later I test it and it is indeed getting set, but I am also getting the
following error, apon which I go to the home page.  Built into the home
page is a test, if the client variables exist then go directly to the
user link click.

For some reason they are sent to the login page, which means the client
vars are getting trashed somehow

..does this error have something to do with it.

I checked the Server, the tables CDATA, and CGLOBAL do exist.

Any insight appreciated.



---
Error Occurred While Processing Request
Error Diagnostic Information
ODBC Error Code = S0002 (Base table not found)

[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name
'CGLOBAL'.



Date/Time: 06/11/02 10:06:18
Browser: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
Remote Address: 10.14.1.134
HTTP Referer: http://fmnet/plus/index.cfm?fuseaction=getlogindest=ar
Query String: fuseaction=validateuserdest=ar

---


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



RE: CF 5 and CFMX

2002-06-11 Thread Dave Watts

 It is supposedly faster and enhanced.

COM support? There's no way that the COM support of CF MX is faster than CF
5, which, after all, was a native Win32 application. COM support in CF MX
uses a third-party Java-to-COM bridge from JIntegra. I'm amazed it works
at all, but it's not going to be faster by a long shot.

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: CFExecute creating hung processes ( Verity K2)

2002-06-11 Thread jon

Ahh... didn't realize that. (Copied that part of my script from somewhere
else...)

Thanks, dave.
-- jon

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 10:21 AM
To: CF-Talk
Subject: RE: CFExecute creating hung processes ( Verity K2)


 here's my sample batch files:

 vspider.bat (this is the file that the scheduler actually uses)

 ...

 Echo Rebooting k2 server  C:\batch\spider_output.txt
 PATH = c:\cfusion\verity\_nti40\bin

 k2server.exe -ntservice 0

 k2server.exe -inifile
 c:\cfusion\verity\_nti40\bin\k2server.ini -ntservice 1

Out of curiosity, why are you uninstalling and reinstalling the NT service
interface for Verity? If you just want to restart Verity after setting it up
as a service, you could just do this:

net stop k2server
net start k2server

I think that if you want to change the location of the ini file, you might
then have to uninstall the service, but I'm not even sure about that.

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

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



RE: Problems with Client Variables

2002-06-11 Thread Kevan . Windle

I'd check that you havn't got a different/wrong client variable store set
somewhere. Maybe you've got a rogue application.cfm somewhere. It's possible
you've got an application tag with an invalid store, or no data store
specified and it's defaulting to the value in Cf admin and that data store
is invalid. 

-Original Message-
From: Brian Eckerman [mailto:[EMAIL PROTECTED]]
Sent: 11 June 2002 15:17
To: CF-Talk
Subject: Problems with Client Variables


Hello, I am having a problem with Client Variables (Stored on the Server
in SQL Server).

I am setting the users permissions to a list called client.permissions,
Later I test it and it is indeed getting set, but I am also getting the
following error, apon which I go to the home page.  Built into the home
page is a test, if the client variables exist then go directly to the
user link click.

For some reason they are sent to the login page, which means the client
vars are getting trashed somehow

.does this error have something to do with it.

I checked the Server, the tables CDATA, and CGLOBAL do exist.

Any insight appreciated.



---
Error Occurred While Processing Request
Error Diagnostic Information
ODBC Error Code = S0002 (Base table not found)

[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name
'CGLOBAL'.



Date/Time: 06/11/02 10:06:18
Browser: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
Remote Address: 10.14.1.134
HTTP Referer: http://fmnet/plus/index.cfm?fuseaction=getlogindest=ar
Query String: fuseaction=validateuserdest=ar

---

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



Call a variable in a Custom Tag?

2002-06-11 Thread Dave Carabetta

I know that, within a custom tag, I can set/update a variables on the 
calling page using the caller scope. However, is there a way to do the 
opposite? On the calling page, I'd like to reach in to the custom tag and 
pull out a variable that gets set.

The reason why I'd like to do it this was is that it seems that my custom 
tag would be a bit more modular in that if the tag is called from another 
application using a different variable name, I'm not dependant on the 
variable name I've used in the custom tag.

Thanks,
Dave.


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



RE: CF 5 and CFMX

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

hehe... yeah - I was amazed I got any COM to work on CFMX.  It's really very
quirky, especially when setting properties.  I'm guessing the type matching
isn't quite right. And it isn't going to be faster under any circumstances
as far as I can see - since there is a middle layer now setting in between
the constructor code and the actual instance. If you have a lot of COM
centric code, I'd consider either sticking with CF 5 or minimizing it as
much as possible.

-mk

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 9:38 AM
To: CF-Talk
Subject: RE: CF 5 and CFMX


 It is supposedly faster and enhanced.

COM support? There's no way that the COM support of CF MX is faster than CF
5, which, after all, was a native Win32 application. COM support in CF MX
uses a third-party Java-to-COM bridge from JIntegra. I'm amazed it works
at all, but it's not going to be faster by a long shot.

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

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



RE: CF 5 and CFMX

2002-06-11 Thread Debbie Dickerson

TechNote 22921 (ColdFusion MX: Using Application Scope to improve COM Performance) 
was pushed live this morning, so it might help. 
http://www.macromedia.com/v1/Handlers/index.cfm?ID=22921Method=Full

There are a couple more COM TechNotes in the works, but they're still going through 
the edit/review process. 

Deb


-Original Message-
From: Earl, George [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 10:00 AM
To: CF-Talk
Subject: Re: CF 5 and CFMX


Dave said:

. snipped ...
 I was wondering mainly about COM. I have a very large app that I am
developing using  VB6 COM and CF 5. I have noticed that this is very slow
with CF 5. The average page with a COM object on it loads in about 800-900
milliseconds. Which is very slow when compared to straight CF. 
. snipped ...
I wanted to
know if CFMX was better or worse with COM.
. snipped ...
end of Dave


From page 25 of Migrating ColdFusion 5 Applications:

COM objects

ColdFusion MX uses the Java Native Interface (JNI) to call COM objects,
which results
in slower performance than in ColdFusion 5. How much slower depends on the
application and COM, but in the Macromedia tests of the same code,
ColdFusion 5
completed in 50 milliseconds and ColdFusion MX completed in 2-3 seconds.

HTH,

George
[EMAIL PROTECTED]

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



RE: Mac form submission file upload

2002-06-11 Thread Lon Lentz

  Using a little JS, you could assign the value of the file field into another
 field in the submission template and test that value for eq  in the action
 template.


 -Original Message-
 From: Axiomatique (Vincent) [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 11, 2002 10:21 AM
 To: CF-Talk
 Subject: RE: Mac form submission  file upload
 
 
 I don't know if this is related to your problem, but I noticed that on the
 MAC, if you have a file upload field and that you don't select a file to
 upload (field supposely empty), the MAC doesn't see the field as 
 empty, thus
 forcing you to trap the error in the cffile as cfif 
 form.filefield neq 
 won't work on the MAC.
 

__
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: Call a variable in a Custom Tag?

2002-06-11 Thread Dave Watts

 I know that, within a custom tag, I can set/update a 
 variables on the calling page using the caller scope. 
 However, is there a way to do the opposite? On the 
 calling page, I'd like to reach in to the custom tag 
 and pull out a variable that gets set.
 
 The reason why I'd like to do it this was is that it 
 seems that my custom tag would be a bit more modular 
 in that if the tag is called from another application 
 using a different variable name, I'm not dependant on 
 the variable name I've used in the custom tag.

No, to the best of my knowledge, the internal local scope of the custom tag
isn't exposed to the calling page - after all, that would defeat the purpose
of having a separate local scope, and anyway, the custom tag has finished
executing (and its local scope no longer exists) by the time that you get
back to the calling page in most cases.

However, the problem that you're trying to solve can be approached another
way, by simply passing to the custom tag the variable name that you want to
create:

cf_foo return=myvar

Then, within the custom tag, you can use the SetVariable function to create
a variable in the calling page with the name myvar:

cfset valuetoreturn = 42
cfset rs = SetVariable(Caller.  Attributes.return, valuetoreturn)

In addition, you can use this syntax instead of SetVariable:

cfset Caller.#Attributes.return# = valuetoreturn

While I prefer the SetVariable syntax for reasons I won't bother explaining
now, either will work.

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: Call a variable in a Custom Tag?

2002-06-11 Thread Philip Arnold - ASP

 I know that, within a custom tag, I can set/update a variables on the
 calling page using the caller scope. However, is there a
 way to do the opposite? On the calling page, I'd like to reach in
 to the custom tag and pull out a variable that gets set.

 The reason why I'd like to do it this was is that it seems that my
 custom tag would be a bit more modular in that if the tag is
 called from another application using a different variable name,
 I'm not dependant on the  variable name I've used in the custom tag.

Since Custom Tags (CF_ and CFMODULE) are effectively destroyed once
they've finished, you must set a variable on the outside before it's
killed

Use one of the scopes that's visible everywhere, such as Request

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.
**


__
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: Call a variable in a Custom Tag?

2002-06-11 Thread Ian Lurie

Try CFSET SetVariable(Caller.#variable#, VALUE)

Ben Forta's basic CF 5.0 book has a great section on this - page 632 or so.

Ian

-Original Message-
From: Dave Carabetta [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 7:38 AM
To: CF-Talk
Subject: Call a variable in a Custom Tag?


I know that, within a custom tag, I can set/update a variables on the
calling page using the caller scope. However, is there a way to do the
opposite? On the calling page, I'd like to reach in to the custom tag and
pull out a variable that gets set.

The reason why I'd like to do it this was is that it seems that my custom
tag would be a bit more modular in that if the tag is called from another
application using a different variable name, I'm not dependant on the
variable name I've used in the custom tag.

Thanks,
Dave.



__
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: Problems with Client Variables

2002-06-11 Thread Brian Eckerman

We appear to be doing everything else right(even tried cookie...worked
perfect) and recheck to be sure it can only be what you have had happen
to you...will try it...odd behavior for a store though.

-Original Message-
From: Ian Lurie [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 10:27 AM
To: CF-Talk
Subject: RE: Problems with Client Variables


When this started happening to us, we had to recreate the client var
store.
That fixed the issue and we haven't seen it since

-Original Message-
From: Brook Davies [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 7:36 AM
To: CF-Talk
Subject: Re: Problems with Client Variables


Make sure your data source is being referenced correctly. You say the
tables exist, you should verify this and that you have the correct data
source set in your cfapplication tag. SQL server is tellingt you the
table
does not exist. If you say it does exist then the chances are good you
are
referencing the wrong datasource somewhere. Either in the CFadmin or in
your cfapplication tag.

  At 10:16 AM 11/06/02 -0400, you wrote:
Hello, I am having a problem with Client Variables (Stored on the
Server
in SQL Server).

I am setting the users permissions to a list called client.permissions,
Later I test it and it is indeed getting set, but I am also getting the
following error, apon which I go to the home page.  Built into the home
page is a test, if the client variables exist then go directly to the
user link click.

For some reason they are sent to the login page, which means the client
vars are getting trashed somehow

..does this error have something to do with it.

I checked the Server, the tables CDATA, and CGLOBAL do exist.

Any insight appreciated.


---
-
---
Error Occurred While Processing Request
Error Diagnostic Information
ODBC Error Code = S0002 (Base table not found)

[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name
'CGLOBAL'.



Date/Time: 06/11/02 10:06:18
Browser: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)
Remote Address: 10.14.1.134
HTTP Referer: http://fmnet/plus/index.cfm?fuseaction=getlogindest=ar
Query String: fuseaction=validateuserdest=ar
---
-
---



__
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: Call a variable in a Custom Tag?

2002-06-11 Thread Ben Johnson

 The reason why I'd like to do it this was is that it seems that my custom
 tag would be a bit more modular in that if the tag is called from
another
 application using a different variable name, I'm not dependant on the
 variable name I've used in the custom tag.

Dave,
Try passing in an attribute called VARIABLE or something and then use:

SetVariable(caller.  attributes.variable, valueToSet)

or a cfset to set it.



Ben Johnson
Hostworks, Inc.

__
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: Call a variable in a Custom Tag?

2002-06-11 Thread Raymond Camden

The basic answer to your question is no. You can't 'reach into' a tag
and grab a variable. However, it sounds to me like you are saying that
you need a way for the custom tag to return a dynamic variable name.

A good example of why this is needed: Imagine a custom tag that returns
a variable to caller scope called Result. If you wanted to do this:

cf_tag x=1
cf_tag x=2

You would 'lose' the Result variable when you called cf_tag the second
time.

There is an easy way around this. Simply tell the tag to return a
dynamic variable name. Add an attribute to your custom tag called r_Var
(or whatever you want). Then, at the end of your tag, do:

cfset caller.#attributes.r_Var# = whatever

Or

cfset setVariable(caller.#attributes.r_Var#,whatever)

Then you can do:

cf_tag x=1 r_Var=result1
cf_tag x=2 r_Var=result2
cfoutput#result1# and #result2#/cfoutput

If you use cfparam for r_Var, you can even add validation that a valid
variable name was passed - just use type=variableName

===
Raymond Camden, ColdFusion Jedi Master for Macromedia

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

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

 -Original Message-
 From: Dave Carabetta [mailto:[EMAIL PROTECTED]] 
 Sent: Tuesday, June 11, 2002 10:38 AM
 To: CF-Talk
 Subject: Call a variable in a Custom Tag?
 
 
 I know that, within a custom tag, I can set/update a variables on the 
 calling page using the caller scope. However, is there a 
 way to do the 
 opposite? On the calling page, I'd like to reach in to the 
 custom tag and 
 pull out a variable that gets set.
 
 The reason why I'd like to do it this was is that it seems 
 that my custom 
 tag would be a bit more modular in that if the tag is 
 called from another 
 application using a different variable name, I'm not dependant on the 
 variable name I've used in the custom tag.
 
 Thanks,
 Dave.
 
 
 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Call a variable in a Custom Tag?

2002-06-11 Thread Michael Dorr

The best way I know to do this is to use request scoped variables.

!---Set request scoped variable - in custom tag, or wherever---
cfset request.myVar = 1000

!---Get variable value---
cfoutput#request.myVar#/cfoutput

Whenever you set a request scoped variable, you are able to call that variable in 
every subsequent module or include following it, throughout a single HTTP request.  
Kind of think of it as a super variation of the normal variable scope.  It's all 
over my code.

Mike

Michael B. Dorr
eLab Web Application Developer
Owen @ Vanderbilt University
[EMAIL PROTECTED]


-Original Message-
From: Dave Carabetta [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, June 11, 2002 9:38 AM
To: CF-Talk
Subject: Call a variable in a Custom Tag?

I know that, within a custom tag, I can set/update a variables on the 
calling page using the caller scope. However, is there a way to do the 
opposite? On the calling page, I'd like to reach in to the custom tag and 
pull out a variable that gets set.

The reason why I'd like to do it this was is that it seems that my custom 
tag would be a bit more modular in that if the tag is called from another 
application using a different variable name, I'm not dependant on the 
variable name I've used in the custom tag.

Thanks,
Dave.



__
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: Read or delivery receipts for CF and Exchange

2002-06-11 Thread Mike Connolly

I suspect you'll need to use CFPOP to connect to your mail servers inbox to
locate your read receipts.

-Original Message-
From: LANCASTER, STEVEN M. (JSC-OL) (BAR)
[mailto:[EMAIL PROTECTED]]
Sent: 11 June 2002 15:26
To: CF-Talk
Subject: Read or delivery receipts for CF and Exchange


Is there A way if I use the CFMAIL tag to get a read or delivery receipt
from the Exchange server?

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

 

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



RE: Read or delivery receipts for CF and Exchange

2002-06-11 Thread LANCASTER, STEVEN M. (JSC-OL) (BAR)

I have looked in the archives and can not find an answer to this subject. I
have also looked a Macromedia Exchange. Has nobody ever wanted to do this?

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

 

-Original Message-
From: LANCASTER, STEVEN M. (JSC-OL) (BAR) 
Sent: Tuesday, June 11, 2002 9:26 AM
To: CF-Talk
Subject: Read or delivery receipts for CF and Exchange


Is there A way if I use the CFMAIL tag to get a read or delivery receipt
from the Exchange server?

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

 

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



RE: Call a variable in a Custom Tag?

2002-06-11 Thread Dave Carabetta

No, to the best of my knowledge, the internal local scope of the custom tag
isn't exposed to the calling page - after all, that would defeat the 
purpose
of having a separate local scope, and anyway, the custom tag has finished
executing (and its local scope no longer exists) by the time that you get
back to the calling page in most cases.

However, the problem that you're trying to solve can be approached another
way, by simply passing to the custom tag the variable name that you want to
create:

cf_foo return=myvar

Then, within the custom tag, you can use the SetVariable function to create
a variable in the calling page with the name myvar:

cfset valuetoreturn = 42
cfset rs = SetVariable(Caller.  Attributes.return, valuetoreturn)

In addition, you can use this syntax instead of SetVariable:

cfset Caller.#Attributes.return# = valuetoreturn

While I prefer the SetVariable syntax for reasons I won't bother explaining
now, either will work.


Thanks all. I didn't think you could do it, and your explanations make 
sense. I'm going to go the SetVariable() to solve my problem.

Regards,
Dave.


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



Re: CFExecute creating hung processes ( Verity K2)

2002-06-11 Thread Jamie Jackson

Okay, good answers, thanks. Problem should be solved.

Thanks,
Jamie

On Mon, 10 Jun 2002 16:52:37 -0400, in cf-talk you wrote:

I've experienced the cfexecute problem where if you:
 (1) Don't specify an output file
 (2) Get a long output (4K, I think) from your executable
then you get a hung process on your server, requiring the kill
(process) command.

Does this problem still occur if you *do* write an output file? Any
workarounds either way?

I ask, because I'm trying to determine the best way to schedule Verity
K2 indexing jobs (through cfschedule or AT).

CF5, BTW.

Thanks,
Jamie

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



RE: CF 5 and CFMX

2002-06-11 Thread David Jones

Has anyone had a chance to try any of this yet?  Do you think this will
increase speed on CF 5 also? I'll more than likely try this tonight or
tomorrow I was just curious if it was worth the effort for CF 5.

Thanks,

Dave

-Original Message-
From: Debbie Dickerson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 10:39 AM
To: CF-Talk
Subject: RE: CF 5 and CFMX


TechNote 22921 (ColdFusion MX: Using Application Scope to improve COM
Performance) was pushed live this morning, so it might help.
http://www.macromedia.com/v1/Handlers/index.cfm?ID=22921Method=Full

There are a couple more COM TechNotes in the works, but they're still going
through the edit/review process.

Deb


-Original Message-
From: Earl, George [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 10:00 AM
To: CF-Talk
Subject: Re: CF 5 and CFMX


Dave said:

 snipped ...
 I was wondering mainly about COM. I have a very large app that I am
developing using  VB6 COM and CF 5. I have noticed that this is very slow
with CF 5. The average page with a COM object on it loads in about 800-900
milliseconds. Which is very slow when compared to straight CF.
 snipped ...
I wanted to
know if CFMX was better or worse with COM.
 snipped ...
end of Dave


From page 25 of Migrating ColdFusion 5 Applications:

COM objects

ColdFusion MX uses the Java Native Interface (JNI) to call COM objects,
which results
in slower performance than in ColdFusion 5. How much slower depends on the
application and COM, but in the Macromedia tests of the same code,
ColdFusion 5
completed in 50 milliseconds and ColdFusion MX completed in 2-3 seconds.

HTH,

George
[EMAIL PROTECTED]


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



RE: Call a variable in a Custom Tag?

2002-06-11 Thread Philip Arnold - ASP

 Thanks all. I didn't think you could do it, and your
 explanations make sense. I'm going to go the SetVariable()
 to solve my problem.

It's not the use of SetVariable() that will solve your problems, but the
scope you use on the variable

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.
**


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



RE: Mac form submission file upload

2002-06-11 Thread Axiomatique (Vincent)

Yep ! Good point ! 

Vincent

-Message d'origine-
De : Lon Lentz [mailto:[EMAIL PROTECTED]]
Envoyé : Tuesday, June 11, 2002 4:51 PM
À : CF-Talk
Objet : RE: Mac form submission  file upload


  Using a little JS, you could assign the value of the file field into
another
 field in the submission template and test that value for eq  in the
action
 template.


 -Original Message-
 From: Axiomatique (Vincent) [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 11, 2002 10:21 AM
 To: CF-Talk
 Subject: RE: Mac form submission  file upload
 
 
 I don't know if this is related to your problem, but I noticed that on the
 MAC, if you have a file upload field and that you don't select a file to
 upload (field supposely empty), the MAC doesn't see the field as 
 empty, thus
 forcing you to trap the error in the cffile as cfif 
 form.filefield neq 
 won't work on the MAC.
 


__
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: Outlook Calendar

2002-06-11 Thread Costas Piliotis

True, but if he just wants to pull information from Outlook, is it even in
an exchange box?  You're right, LDAP is a great solution, assuming the
calendars are stored on an Exchange server.  If they are just client only
calendars, which I doubt, then his question is worder wrong. 

He should have asked:
I would like a custom tag or some code to import some ones mail server
here calendar from his or her mailbox on a(n) Mail Server Here Server...

Cfcomet also has a great reference section on integrating with Exchange
too...  

-Original Message-
From: Sicular, Alexander [mailto:[EMAIL PROTECTED]] 
Sent: Monday, June 10, 2002 7:41 PM
To: CF-Talk
Subject: RE: Outlook Calendar


lol.

indeed, cfcomet is a great resource in working with various third party
products.  the key to this is ldap.

gl,

alexander

-Original Message-
From: Costas Piliotis [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 10, 2002 8:45 PM
To: CF-Talk
Subject: RE: Outlook Calendar


I would like a bucket of chicken with potato salad served to me on a silver
platter by a topless waitress.  We all don't get exactly what we want ;-)

Go to www.cfcomet.com.  They show a few examples on dealing with Outlook.
You may have to combine the sample code on the web site with the msdn
reference library and you shouldn't have too much difficulty.

Alas, you can't though download someones calendar from their computer
without an activeX control though.  You need an exchange server with their
calendar information stored there, or conversely the client has to upload
their calendar somehow, like through an ActiveX control or a Java Applet.
Imagine the damage one could do if a web server could access a client's
outlook mailbox.



-Original Message-
From: Joshua Tipton [mailto:[EMAIL PROTECTED]] 
Sent: Monday, June 10, 2002 4:36 PM
To: CF-Talk
Subject: Outlook Calendar


I would like a custom tag or some code to import some ones outlook calendar
from his or her machine and show it on the screen for any particular day.

 

 

Josh






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



jave config for verisign PayFlow Pro

2002-06-11 Thread Jeff Beer

Hello all,

I'm trying to get our dev server to use the Verisign PayFlow Pro java
component, and it's kicking my butt...

I don't know if it's the Java settings in CF administrator or the
Verisign installation, or a combination of both.

Here's the error:

Error Diagnostic Information
java.lang.NoClassDefFoundError: cfxpayflowpro (wrong name:
CFXPayFlowPro). Java exception occurred in call to method.

The error occurred while processing an element with a general identifier
of (CFX_PAYFLOWPRO), occupying document position (5:1) to (19:1).

Date/Time: 06/11/02 08:16:51
Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461)

Any help would be hugely appreciated!

Thanks,
 

Jeff Beer
Director of Application Development
Digital Stormfront, Inc
http://www.digitalstormfront.com http://www.digitalstormfront.com  


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



Re: CFX Image

2002-06-11 Thread Jason Miller

Before I download for the heck of it.. I am not familair with CFX Image 
- but am always looking for anything relevant to images.. can some one 
give me a quick brief?
thanks


Zac Spitzer wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

from the author's website

http://www.kolumbus.fi/jukka.manner/

zac
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6-2 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAj0F2CwACgkQm98oI6K7h0hrMACfSaNQBEhnSDYecvcKm6sM67Wi
jbsAn05BaMphlktlSW6Od1gN5pbyjr0r
=vq9u
-END PGP SIGNATURE-


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



Client variable storage

2002-06-11 Thread JS

I set up a new SQL7 database.  Registered it as an
ODBC datasource in the CF Administrator.  Added as a
client variable store.  Selected the new datasource as
the default datastore.

No matter what I do my applications are using the
'master' database as client storage.  Even if I use
the clientstorage parameter in the cfapplication tag
to specify the new datasource.  If I specify a
datasource that does not exist as a client storage the
template errors stating that the datasource is not set
to store client variables.

What is causing this?

JS

__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: jave config for verisign PayFlow Pro

2002-06-11 Thread Jeff Beer

I made some setting changes and am now getting this error:

Error Diagnostic Information
unknown exception condition

TagCFX::execute

The error occurred while processing an element with a general identifier
of (CFX_PAYFLOWPRO), occupying document position (4:1) to (18:1) in the
template file
d:\inetpub\wwwroot\southwestcellular\site\PFProCFXtest.cfm.


Date/Time: 06/11/02 11:29:00
Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461)


-Original Message-
From: Jeff Beer [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, June 11, 2002 11:20 AM
To: CF-Talk
Subject: jave config for verisign PayFlow Pro


Hello all,

I'm trying to get our dev server to use the Verisign PayFlow Pro java
component, and it's kicking my butt...

I don't know if it's the Java settings in CF administrator or the
Verisign installation, or a combination of both.

Here's the error:

Error Diagnostic Information
java.lang.NoClassDefFoundError: cfxpayflowpro (wrong name:
CFXPayFlowPro). Java exception occurred in call to method.

The error occurred while processing an element with a general identifier
of (CFX_PAYFLOWPRO), occupying document position (5:1) to (19:1).

Date/Time: 06/11/02 08:16:51
Browser: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; T312461)

Any help would be hugely appreciated!

Thanks,
 

Jeff Beer
Director of Application Development
Digital Stormfront, Inc
http://www.digitalstormfront.com http://www.digitalstormfront.com  



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



Re: Verity K2 having problems with PDFs?

2002-06-11 Thread Jamie Jackson

Thanks for the confirmation. I'll bet those same errors were coming
up with the non-K2 Verity indexes, but I wasn't aware of them.

I'll ignore them if there's nothing I can do (and if MX has fixed the
problems, as Dave stated).

Thanks,
Jamie

On Tue, 11 Jun 2002 00:03:58 -0400, in cf-talk you wrote:

I see those too from time to time, but I'm not sure how much that affects
the indexing process.

Over all, we've achieved pretty good results with the K2 system, but I can't
help but wonder why it doesn't work as well as something like htdig:// in
the linux world. The setup process was really, really messed up -- we had to
switch out the style guide and kind of fly by the seat of our pants.

I haven't really heard how this is addressed in MX, though. Maybe someone at
CFUN this weekend will be able to shed some light on it.

   -- jon

-Original Message-
From: Jamie Jackson [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 10, 2002 5:05 PM
To: CF-Talk
Subject: Verity K2 having problems with PDFs?


Can anyone shed light on my Verity 2K spider command-prompt output?

I'm getting loads and loads of the following (it only shows in the
verbose indexing output, not in the logs):

Error extracting text on page 1 of
C:\WINNT\Profiles\jacksonj\LOCALS~1\Temp\PDF9
Acrobat exception: A font contains a bad CMap /Encoding.
Error extracting text on page 6 of
C:\WINNT\Profiles\jacksonj\LOCALS~1\Temp\PDF9
Acrobat exception: A font contains a bad CMap /Encoding.
Error extracting text on page 10 of
C:\WINNT\Profiles\jacksonj\LOCALS~1\Temp\PDF9
Acrobat exception: A font contains a bad CMap /Encoding.

It looks like the VK2 Acrobat engine can't extract text from certain
pages in my PDFs. It's using goofy PDF file names (PDF9, PDF10), so
I can't easily figure out which file/page is failing. (If indeed they
are actually failing.)

The A font contains a bad CMap /Encoding message usually means that
the PDF is in a newer format than the reader, but since it's failing
only on certain pages, I guess that's not what's happening.

Any insight?

Thanks,
Jamie


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



RE: Examples of Inheritance?

2002-06-11 Thread Stacy Young

Thanks Neil...I'm certainly no stranger to basic OO concepts...it's the
first few real world examples I've been struggling with...and I think that's
because of the complexities I've been trying to deal with...well I guess
they always feel *complex* the first few times...feels as though I could
inherit properties in either direction. I know that may sound strange but
here's an example:

I have a reporting object which has generic functionalities like
extracting the data in different formats i.e. HTML, XML, CSV.

Then there's 3 different types of reports which I guess would each extend
the reporting object. The reports reflect financial transaction data.

Here's the tricky part (for me). Each of these three reports could be
applied to 4 different types of transactions...One kind is an authorization
another is a credit etc..

So...I'm torn between extending each report TYPE to have a sub-classes of
auth,settle,credit and failed OR having AUTH,SETTLE,CREDIT and FAILED
objects which are then extended based on the type of report it is...

Report Object - Report Type - Transaction Type

Or

Report Object - Transaction Type - Report Type

Going forward I'm sure there will be additional report types but very rarely
would there be additional transaction types added to the equation.

Any comments, suggestions?

Thanks all,

Stace


-Original Message-
From: Neil Clark - =TMM= [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, June 11, 2002 9:34 AM
To: CF-Talk
Subject: RE: Examples of Inheritance?

Take this for example..  Say I wanted to cookup a new 'object' of
Type : ColdFusion Coder As Ray suggested, there are a certain
amount of general vanilla parameters, in this case, fname, lname and
age.




So we have 1 class - a superclass called human.cfc which looks like
this : 

cfcomponent name=human

cffunction name=createhuman returntype=struct access=package
cfargument name=fname default= type=string
cfargument name=lname default= type=string
cfargument name=age default=-1 type=numeric
cfscript
this.fname = arguments.fname;
this.lname = arguments.lname;
this.age = arguments.age;
/cfscript

cfreturn this
/cffunction

/cfcomponent



We also have a CFC named coder .cfc which is extending/inheriting the
human.cfc method  properties..it is adding a coding discipline :
Language

cfcomponent name=coder extends=human

cffunction name=create returntype=struct
cfargument name=language default= type=string
cfscript
createhuman(argumentCollection=duplicate(arguments));
/cfscript
cfset this.language = arguments.language
cfreturn this
/cffunction

/cfcomponent


We can either now, call human.cfc to create a simple human with default
params, or we can call the coder.cfc to add instance variables to
human.cfc thus (from a standard .cfm page) :

cfset stArgs = structNew()
cfset stArgs.fname = Neil
cfset stArgs.lname = Clark
cfset stArgs.age = 29
cfset stArgs.language = ColdFusion

cfinvoke component=com.macromedia.coder method=create
argumentcollection=#stArgs# returnvariable=coder /

cfoutput#coder.lname#, #coder.fname#, #coder.age#/cfoutput

This is displays fairly simple inheritance with ColdFusion and CFCs -
yes it may not be what you determine as true inheritance, but its
ingeritance nonetheless.


Hope this helps.




Neil



Neil Clark
Team Macromedia
http://www.macromedia.com/go/team

Announcing Macromedia MX!! 
-- http://www.macromedia.com/software/trial/.



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



RE: Outlook Calendar

2002-06-11 Thread Joshua Tipton

Actually I found a tag look for cf_outlook in MM Exchange pulls the data
CLIENT side from OUTLOOK on the CLIENT machine.


Josh

-Original Message-
From: Costas Piliotis [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 11:17 AM
To: CF-Talk
Subject: RE: Outlook Calendar


True, but if he just wants to pull information from Outlook, is it even in
an exchange box?  You're right, LDAP is a great solution, assuming the
calendars are stored on an Exchange server.  If they are just client only
calendars, which I doubt, then his question is worder wrong.

He should have asked:
I would like a custom tag or some code to import some ones mail server
here calendar from his or her mailbox on a(n) Mail Server Here Server...

Cfcomet also has a great reference section on integrating with Exchange
too...

-Original Message-
From: Sicular, Alexander [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 10, 2002 7:41 PM
To: CF-Talk
Subject: RE: Outlook Calendar


lol.

indeed, cfcomet is a great resource in working with various third party
products.  the key to this is ldap.

gl,

alexander

-Original Message-
From: Costas Piliotis [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 10, 2002 8:45 PM
To: CF-Talk
Subject: RE: Outlook Calendar


I would like a bucket of chicken with potato salad served to me on a silver
platter by a topless waitress.  We all don't get exactly what we want ;-)

Go to www.cfcomet.com.  They show a few examples on dealing with Outlook.
You may have to combine the sample code on the web site with the msdn
reference library and you shouldn't have too much difficulty.

Alas, you can't though download someones calendar from their computer
without an activeX control though.  You need an exchange server with their
calendar information stored there, or conversely the client has to upload
their calendar somehow, like through an ActiveX control or a Java Applet.
Imagine the damage one could do if a web server could access a client's
outlook mailbox.



-Original Message-
From: Joshua Tipton [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 10, 2002 4:36 PM
To: CF-Talk
Subject: Outlook Calendar


I would like a custom tag or some code to import some ones outlook calendar
from his or her machine and show it on the screen for any particular day.





Josh







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



RE: CFX Image

2002-06-11 Thread Brad Roberts

This is from the docs.

HTH,

Brad


Tag Actions  
ACQUIRE 
ANIMATE 
ARC 
CAPTURE 
CHART 
COLORBALANCE 
CONTRAST 
CONVERT 
COPY 
CREATE 
ELLIPSE 
EXISTS 
FLIP 
FLOOD 
IPTC 
LINE 
OVAL 
PASTE 
PASTE_COMMENT 
PASTE_TEXT 
PIXEL 
READ 
RECTANGLE 
REDIMENSION 
REMOVE 
RENAME 
RESIZE 
ROTATE 
XML 
 
CFXImage Variables  
ATIME 
BITCOUNT 
COLORS 
COMMENT 
CTIME 
EXISTS 
FILE 
HEIGHT 
INTERLACED 
IPTC 
MTIME 
PROCESSTIME 
SIZE 
TRANSPARENT 
TYPE 
WIDTH 
 
Supported File Types  
Jpeg 
Graphics Interchange Format v87a 
Graphics Interchange Format v89a 
Windows Bitmap 
OS/2 Bitmap 
X-Bitmap 
Portable Network Graphics 
Portable Image Map Plus 
Targa 
Gd 
Gd2 
Tagged Image File Format 
Zsoft PC Paintbrush 
Borland Graphics Interface 
Windows Icon 
Windows Cursor 
Mac Paint 
Quicktime Picture 
Class 3 Fax 
Gem 
Red Storm Bitmap 
Summus Wavelet 
Black Isle MOS 
Black Isle PLT 
Wireless Bitmap 
 

 -Original Message-
 From: Jason Miller [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 11, 2002 2:28 PM
 To: CF-Talk
 Subject: Re: CFX Image
 
 
 Before I download for the heck of it.. I am not familair with CFX Image 
 - but am always looking for anything relevant to images.. can some one 
 give me a quick brief?
 thanks
 
 
 Zac Spitzer wrote:
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 from the author's website
 
 http://www.kolumbus.fi/jukka.manner/
 
 zac
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.0.6-2 (MingW32)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
 
 iEYEARECAAYFAj0F2CwACgkQm98oI6K7h0hrMACfSaNQBEhnSDYecvcKm6sM67Wi
 jbsAn05BaMphlktlSW6Od1gN5pbyjr0r
 =vq9u
 -END PGP SIGNATURE-
 
 
 
__
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: Call a variable in a Custom Tag?

2002-06-11 Thread Jamie Jackson

Use the variable name as an attribute within the custom tag call, then
set that (dynamic) variable to the caller scope in the tag.

cf_myTag att1=blah1 att2=blah2 var=myVar!--- tag sets
caller.myVar, for later use ---

cfoutput#myVar#/cfoutput

Jamie

On Tue, 11 Jun 2002 10:38:21 -0400, in cf-talk you wrote:

I know that, within a custom tag, I can set/update a variables on the 
calling page using the caller scope. However, is there a way to do the 
opposite? On the calling page, I'd like to reach in to the custom tag and 
pull out a variable that gets set.

The reason why I'd like to do it this was is that it seems that my custom 
tag would be a bit more modular in that if the tag is called from another 
application using a different variable name, I'm not dependant on the 
variable name I've used in the custom tag.

Thanks,
Dave.



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



RE: Client variable storage

2002-06-11 Thread Jim Curran

did you specify the database name in administrator as well?

- j

-Original Message-
From: JS [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 11:30 AM
To: CF-Talk
Subject: Client variable storage


I set up a new SQL7 database.  Registered it as an
ODBC datasource in the CF Administrator.  Added as a
client variable store.  Selected the new datasource as
the default datastore.

No matter what I do my applications are using the
'master' database as client storage.  Even if I use
the clientstorage parameter in the cfapplication tag
to specify the new datasource.  If I specify a
datasource that does not exist as a client storage the
template errors stating that the datasource is not set
to store client variables.

What is causing this?

JS

__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com

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



RE: CF 5 and CFMX

2002-06-11 Thread Dave Watts

 Has anyone had a chance to try any of this yet? Do you think 
 this will increase speed on CF 5 also? I'll more than likely 
 try this tonight or tomorrow I was just curious if it was 
 worth the effort for CF 5.

I don't think either will make a positive difference with CF 5. You'll face
locking issues when putting COM objects in the Application scope in CF 5,
and you don't need to make Java stubs with CF 5 since CF 5 doesn't use
Java to call COM objects.

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



ColdFusion and NAS

2002-06-11 Thread Yves Arsenault

Can anyone help us with this problem?

I am running a Windows 2000 Server with IIS 5 and Coldfusion v5.0.  I have
the files on a shared network drive on a Procom NetFORCE 1700 Network
Attached Storage box.  I am using Active Directory internally for
authentication and both the NAS box and the IIS server are part of the same
domain.  There is a user created that has access to the shared drives that
the IIS is using to connect to the NAS box.  I have several HTML and ASP
sites that are also being hosted in this way with no problems.

 I am getting the following error when I try to get Coldfusion to run web
pages from  the  networked drive on the  remote machine:

Error Occured While Processing Request
Error Diagnostic Information
An error has occured.
HTTP/1.0 404 Object Not Found

Will Coldfusion support networked drives and if so what needs to be done to
get this working?

I appreciate any help that you can provide.

Peter
Yves Arsenault
Carrefour Infotech
5,promenade Acadian
Charlottetown, IPE
C1C 1M2
[EMAIL PROTECTED]
(902)368-1895 ext.242
ICQ #117650823


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



RE: Stored procedures, action = commit in cftransaction tag

2002-06-11 Thread Dave Watts

 We are using CF 5.0 to call stored procedures in mainframe 
 DB2.

 ... 

 This works fine except that under load we get abends on the 
 stored procedure unless we turn off the 'stay resident' 
 parameter in DB2 that keeps the stored procedure code 
 resident in memory. Of course this affects performance.
 
 IBM seems to think this is a commit problem, so we are 
 playing around with the nested cftransaction action=commit /
 tag to see if it helps us to avoid the abends.
 
 How would you use the action=commit parameter with our code 
 shown above? Where would you insert this code?

I don't see why this would make any difference at all, since the closing
CFTRANSACTION tag marks the end of the transaction, at which time all
changes should automatically be committed if the transaction succeeded, but
stranger things have happened.

You might try putting it right before your closing CFTRANSACTION tag:

cftransaction
cfstoredproc ...
...
/cfstoredproc
cftransaction action=commit /
/cftransaction

However, I don't see why this would even be a commit problem, although
admittedly, I can't be sure what's going on in that stored procedure. I'm
guessing that it's just selecting data, right? If so, why would that be a
commit problem?

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



How do Client Var Behave

2002-06-11 Thread Brian Eckerman

Hello again.
Got a problem.
I declare an Application context(say APP1) with cfapplication.
then I set some client variables...

I then cflocation to anouther directory, with..
anouther declared Application context(say COOLAPP2)

then I try to reference the client variables I set in APP1.
--This Doesn't work-- :(


My understanding is the whole point of Client varialbes is that they
span application contexts.
The above situation doesn't work...Is my understanding wrong?
__
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



Upgrading from 4.5 SP2 to 5 or MX

2002-06-11 Thread Shawn Kernes

Im looking for the easiest upgrade from 4.5 SP2 to either 5 or MX. Can
anyone share there upgrade experiences so I can get an idea of what to
expect...


Thanks,
Shawn

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



Re: How do Client Var Behave

2002-06-11 Thread Randell B Adkins

The client variables are unique to the application.
Thus the client vars in APP1 are ONLY available to APP1



 [EMAIL PROTECTED] 06/11/02 11:57AM 
Hello again.
Got a problem.
I declare an Application context(say APP1) with cfapplication.
then I set some client variables...

I then cflocation to anouther directory, with..
anouther declared Application context(say COOLAPP2)

then I try to reference the client variables I set in APP1.
--This Doesn't work-- :(


My understanding is the whole point of Client varialbes is that they
span application contexts.
The above situation doesn't work...Is my understanding wrong?

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



RE: How do Client Var Behave

2002-06-11 Thread Brian Eckerman

How would I declare a var that would span applications?

-Original Message-
From: Randell B Adkins [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 12:00 PM
To: CF-Talk
Subject: Re: How do Client Var Behave


The client variables are unique to the application.
Thus the client vars in APP1 are ONLY available to APP1



 [EMAIL PROTECTED] 06/11/02 11:57AM 
Hello again.
Got a problem.
I declare an Application context(say APP1) with cfapplication.
then I set some client variables...

I then cflocation to anouther directory, with..
anouther declared Application context(say COOLAPP2)

then I try to reference the client variables I set in APP1.
--This Doesn't work-- :(


My understanding is the whole point of Client varialbes is that they
span application contexts.
The above situation doesn't work...Is my understanding wrong?


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



RE: How do Client Var Behave

2002-06-11 Thread Rob Baxter

The Client variables are specific to each application. Notice how the
application name is stored along with the cfid and token in the database.

/rob

-Original Message-
From: Brian Eckerman [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 11:58 AM
To: CF-Talk
Subject: How do Client Var Behave


Hello again.
Got a problem.
I declare an Application context(say APP1) with cfapplication.
then I set some client variables...

I then cflocation to anouther directory, with..
anouther declared Application context(say COOLAPP2)

then I try to reference the client variables I set in APP1.
--This Doesn't work-- :(


My understanding is the whole point of Client varialbes is that they
span application contexts.
The above situation doesn't work...Is my understanding wrong?

__
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: Getting Physical Path from Mapped Path

2002-06-11 Thread Adrian Lynch

ExpandPath()

-Original Message-
From: Jared Stark [mailto:[EMAIL PROTECTED]]
Sent: 10 June 2002 23:43
To: CF-Talk
Subject: Getting Physical Path from Mapped Path


Given that I know a Cold Fusion mapping for a site on my server, how can
I extract what the physical path (i.e. f:\inetpub\wwwroot\mysite) is?
Is it even possible?
 
I can't use GetBaseTemplatePath(), or GetCurrentTemplatePath() because I
am trying to do something from within a Custom Tag that is given the CF
mapping as an attribute,
and I need to be able to open a file based on that mapping?
 
Any suggestions?
 
Jared



__
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: Getting Physical Path from Mapped Path

2002-06-11 Thread cfhelp

I use 

cfset Path = #expandPath('../../../Images/Banners')#

The ../../../
is from my site root.

Rick


-Original Message-
From: Jared Stark [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 10, 2002 5:43 PM
To: CF-Talk
Subject: Getting Physical Path from Mapped Path


Given that I know a Cold Fusion mapping for a site on my server, how can
I extract what the physical path (i.e. f:\inetpub\wwwroot\mysite) is?
Is it even possible?
 
I can't use GetBaseTemplatePath(), or GetCurrentTemplatePath() because I
am trying to do something from within a Custom Tag that is given the CF
mapping as an attribute,
and I need to be able to open a file based on that mapping?
 
Any suggestions?
 
Jared



__
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 do Client Var Behave

2002-06-11 Thread Kreig Zimmerman

Use the SERVER scope.
  - Original Message - 
  From: Brian Eckerman 
  To: CF-Talk 
  Sent: Tuesday, June 11, 2002 12:04 PM
  Subject: RE: How do Client Var Behave


  How would I declare a var that would span applications?

  -Original Message-
  From: Randell B Adkins [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, June 11, 2002 12:00 PM
  To: CF-Talk
  Subject: Re: How do Client Var Behave


  The client variables are unique to the application.
  Thus the client vars in APP1 are ONLY available to APP1



   [EMAIL PROTECTED] 06/11/02 11:57AM 
  Hello again.
  Got a problem.
  I declare an Application context(say APP1) with cfapplication.
  then I set some client variables...

  I then cflocation to anouther directory, with..
  anouther declared Application context(say COOLAPP2)

  then I try to reference the client variables I set in APP1.
  --This Doesn't work-- :(


  My understanding is the whole point of Client varialbes is that they
  span application contexts.
  The above situation doesn't work...Is my understanding wrong?


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



RE: CF 5 and CFMX

2002-06-11 Thread Cravens, Billy

Also, Microsoft recommends against putting objects in ASP's application
scope, since the object is sucking resources the entire time (it's
actually more efficient to instantiate and release multiple times).
However, CF works a bit differently - it typically releases the objects
at the end of each request; I can't see how putting it in the
application scope would make any difference. (I haven't reviewed the
article yet, however)

---
Billy Cravens
 

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, June 11, 2002 10:52 AM
To: CF-Talk
Subject: RE: CF 5 and CFMX

 Has anyone had a chance to try any of this yet? Do you think 
 this will increase speed on CF 5 also? I'll more than likely 
 try this tonight or tomorrow I was just curious if it was 
 worth the effort for CF 5.

I don't think either will make a positive difference with CF 5. You'll
face
locking issues when putting COM objects in the Application scope in CF
5,
and you don't need to make Java stubs with CF 5 since CF 5 doesn't use
Java to call COM objects.

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

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



RE: Examples of Inheritance?

2002-06-11 Thread Raymond Camden

Why not make transaction a type - and report a property. The property
would be of type Foo, which is one of the three type reports. Don't
forget that a CFC property can also be a CFC itself.

-ray


 
 Here's the tricky part (for me). Each of these three reports could be
 applied to 4 different types of transactions...One kind is an 
 authorization
 another is a credit etc..
 
 So...I'm torn between extending each report TYPE to have a 
 sub-classes of
 auth,settle,credit and failed OR having AUTH,SETTLE,CREDIT and FAILED
 objects which are then extended based on the type of report it is...
 
 Report Object - Report Type - Transaction Type
 
 Or
 
 Report Object - Transaction Type - Report Type
 
 Going forward I'm sure there will be additional report types 
 but very rarely
 would there be additional transaction types added to the equation.
 

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



RE: CF 5 and CFMX

2002-06-11 Thread Dave Watts

 Also, Microsoft recommends against putting objects in ASP's 
 application scope, since the object is sucking resources 
 the entire time (it's actually more efficient to instantiate 
 and release multiple times).

You're right about MS recommending against storing COM objects persistently
in ASP Applications or Sessions, but I think that the best solution for this
in classic ASP is to use MTS to manage those objects, rather than simply
creating and destroying the objects from ASP as needed. MTS will manage the
creation and destruction of COM objects more efficiently than the ASP app
can by itself, although the COM objects have to be written so that they can
be managed in MTS.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Client variable storage

2002-06-11 Thread JS

Yes, I added it as a client variable store in the
administrator.  I'm using CF5.

JS

did you specify the database name in administrator as
well?

- j

__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.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



OT Project Management

2002-06-11 Thread Deanna Schneider

Hi Folks,
This is OT, but does anyone have any recommendations for a web-based project
management system? We were using one we wrote in-house, but we're starting
to outgrow it, and I'm supposed to do some research on commercial options.

(Doesn't have to be in CF, either.)

-d



Deanna Schneider
Interactive Media Developer
[EMAIL PROTECTED]


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



Re: OT Project Management

2002-06-11 Thread todd

http://www.synergyanywhere.com/

On Tue, 11 Jun 2002, Deanna Schneider wrote:

 Hi Folks,
 This is OT, but does anyone have any recommendations for a web-based project
 management system? We were using one we wrote in-house, but we're starting
 to outgrow it, and I'm supposed to do some research on commercial options.
 
 (Doesn't have to be in CF, either.)
 
 -d
 
 
 
 Deanna Schneider
 Interactive Media Developer
 [EMAIL PROTECTED]
 
 
 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFENCRYPT Files

2002-06-11 Thread LANCASTER, STEVEN M. (JSC-OL) (BAR)

We had someone leave and before they left they encrypted all of one site
using cfencrypt. Is there any way to decrypt them? If not We are in some
serious trouble!!

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

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



RE: Examples of Inheritance?

2002-06-11 Thread Stacy Young

Hi Ray,

Any examples handy? My procedural mindset is hindering my brain's ability to
get my head around this approach. :(

Stace


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, June 11, 2002 12:25 PM
To: CF-Talk
Subject: RE: Examples of Inheritance?

Why not make transaction a type - and report a property. The property
would be of type Foo, which is one of the three type reports. Don't
forget that a CFC property can also be a CFC itself.

-ray


 
 Here's the tricky part (for me). Each of these three reports could be
 applied to 4 different types of transactions...One kind is an 
 authorization
 another is a credit etc..
 
 So...I'm torn between extending each report TYPE to have a 
 sub-classes of
 auth,settle,credit and failed OR having AUTH,SETTLE,CREDIT and FAILED
 objects which are then extended based on the type of report it is...
 
 Report Object - Report Type - Transaction Type
 
 Or
 
 Report Object - Transaction Type - Report Type
 
 Going forward I'm sure there will be additional report types 
 but very rarely
 would there be additional transaction types added to the equation.
 


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



RE: Mac form submission file upload

2002-06-11 Thread BEN MORRIS

Forms on a mac can put extra whitespace into fields, so when testing for no value, it 
is best to use

cfif Len(Trim(form.filefield))


 Lon Lentz [EMAIL PROTECTED] 06/11/02 10:50AM 
  Using a little JS, you could assign the value of the file field into another
 field in the submission template and test that value for eq  in the action
 template.


 -Original Message-
 From: Axiomatique (Vincent) [mailto:[EMAIL PROTECTED]] 
 Sent: Tuesday, June 11, 2002 10:21 AM
 To: CF-Talk
 Subject: RE: Mac form submission  file upload
 
 
 I don't know if this is related to your problem, but I noticed that on the
 MAC, if you have a file upload field and that you don't select a file to
 upload (field supposely empty), the MAC doesn't see the field as 
 empty, thus
 forcing you to trap the error in the cffile as cfif 
 form.filefield neq 
 won't work on the MAC.
 


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



ColdFusion MX for development purposes

2002-06-11 Thread Waldemiro Junior

Hi all.

When ColdFusion 5 was released, Macromedia let us download it in a special version 
for development and learning purposes.
Anyone of this group know if the same will happen with ColdFusion MX ?

Regards.
W.Junior


__
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



problem with studio 5 single server wrecking IE browser

2002-06-11 Thread Bonnie E. Betts

I am having a terrible problem with the single server that came with
CFStudio 5.  My IE browser is wrecked when the server is loaded in startup
or if it's loaded before IE is loaded.  The browser opens, but many pages
won't show styles or javascript or images.  I called Macromedia and they
said they would help me for $250 by phone or I can email.  I used their
email, and that tech refused to help me! I've searched for a patch but can't
find one.  I'm appalled at Macromedia's disgraceful treatment, but I
supposed that's a story for another day.

I've rigged things to work by putting IE into startup and removing CF from
startup and load that manually.  My computer is win98, browser is IE6, using
PWS from the NT pack.  I used to have CF 4.5 on this machine and everything
worked fine then.  CF 4.5 was uninstalled before installing 5.  Any help on
this would be appreciated.

Bonnie E. Betts
[EMAIL PROTECTED]
www.bettsit.com


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



RE: ColdFusion and NAS

2002-06-11 Thread Rob Baxter

Both IIS and CF will have to be able to access the NAS device.

For CF this means that the user running the Cold Fusion Application Server
needs read access to your networked drive (I'd suggest using a UNC path
instead of a drive mapping).

In IIS I think that you have to allow the anonymous user to read the network
location. By default this user is  %MACHINENAME%_Anonymous or something. I
believe you can change that on the virtual site settings on the IIS admin.

/rob

-Original Message-
From: Yves Arsenault [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 11:52 AM
To: CF-Talk
Subject: ColdFusion and NAS


Can anyone help us with this problem?

I am running a Windows 2000 Server with IIS 5 and Coldfusion v5.0.  I have
the files on a shared network drive on a Procom NetFORCE 1700 Network
Attached Storage box.  I am using Active Directory internally for
authentication and both the NAS box and the IIS server are part of the same
domain.  There is a user created that has access to the shared drives that
the IIS is using to connect to the NAS box.  I have several HTML and ASP
sites that are also being hosted in this way with no problems.

 I am getting the following error when I try to get Coldfusion to run web
pages from  the  networked drive on the  remote machine:

Error Occured While Processing Request
Error Diagnostic Information
An error has occured.
HTTP/1.0 404 Object Not Found

Will Coldfusion support networked drives and if so what needs to be done to
get this working?

I appreciate any help that you can provide.

Peter
Yves Arsenault
Carrefour Infotech
5,promenade Acadian
Charlottetown, IPE
C1C 1M2
[EMAIL PROTECTED]
(902)368-1895 ext.242
ICQ #117650823



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



Re: ColdFusion MX for development purposes

2002-06-11 Thread todd

Yup, download the trial version, the same.


On Tue, 11 Jun 2002, Waldemiro Junior wrote:

 Hi all.
 
 When ColdFusion 5 was released, Macromedia let us download it in a special version 
for development and learning purposes.
 Anyone of this group know if the same will happen with ColdFusion MX ?
 
 Regards.
 W.Junior
 
 
 
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: ColdFusion MX for development purposes

2002-06-11 Thread Dave Watts

 When ColdFusion 5 was released, Macromedia let us 
 download it in a special version for development 
 and learning purposes. Anyone of this group know if 
 the same will happen with ColdFusion MX ?

You can simply download the trial version. After the trial period expires,
it will turn into the developers edition, which works fine for local
development but not for real hosting.

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



RE: CFENCRYPT Files

2002-06-11 Thread Robert Everland

Just do a search in google for cfencrypt, you'll come up with some things to
help you out.

Robert Everland III
Dixon Ticonderoga
Web Developer Extraordinaire

-Original Message-
From: LANCASTER, STEVEN M. (JSC-OL) (BAR)
[mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 12:55 PM
To: CF-Talk
Subject: CFENCRYPT Files


We had someone leave and before they left they encrypted all of one site
using cfencrypt. Is there any way to decrypt them? If not We are in some
serious trouble!!

Steven Lancaster
Barrios Technology
NASA/JSC
281-244-2444 (voice)
[EMAIL PROTECTED] 

 

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



RE: ColdFusion MX for development purposes

2002-06-11 Thread Vernon Viehe

It's already there:
http://www.macromedia.com/software/trial_download/

This is the trial, enterprise edition, and it reverts to single-IP mode after 30 days.

Vernon Viehe
ColdFusion Community Manager
Developer Relations
Macromedia, Inc.
Online diary: http://vvmx.blogspot.com/ 

 -Original Message-
 From: Waldemiro Junior [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 11, 2002 9:41 AM
 To: CF-Talk
 Subject: ColdFusion MX for development purposes
 
 
 Hi all.
 
 When ColdFusion 5 was released, Macromedia let us download it 
 in a special version for development and learning purposes.
 Anyone of this group know if the same will happen with ColdFusion MX ?
 
 Regards.
 W.Junior
 
 
 
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How do Client Var Behave

2002-06-11 Thread Brian Eckerman

.That are specific to a user..(Honestly this is really what client
variables should do!!)

-Original Message-
From: Kreig Zimmerman [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 12:19 PM
To: CF-Talk
Subject: Re: How do Client Var Behave


Use the SERVER scope.
  - Original Message - 
  From: Brian Eckerman 
  To: CF-Talk 
  Sent: Tuesday, June 11, 2002 12:04 PM
  Subject: RE: How do Client Var Behave


  How would I declare a var that would span applications?

  -Original Message-
  From: Randell B Adkins [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, June 11, 2002 12:00 PM
  To: CF-Talk
  Subject: Re: How do Client Var Behave


  The client variables are unique to the application.
  Thus the client vars in APP1 are ONLY available to APP1



   [EMAIL PROTECTED] 06/11/02 11:57AM 
  Hello again.
  Got a problem.
  I declare an Application context(say APP1) with cfapplication.
  then I set some client variables...

  I then cflocation to anouther directory, with..
  anouther declared Application context(say COOLAPP2)

  then I try to reference the client variables I set in APP1.
  --This Doesn't work-- :(


  My understanding is the whole point of Client varialbes is that they
  span application contexts.
  The above situation doesn't work...Is my understanding wrong?


  

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



RE: Macromedia.com

2002-06-11 Thread Vernon Viehe

Got it: Here's how to find it: www.macromedia.com  Designer  Developer Center 
(www.macromedia.com/desdev)

Left column: Topics  Macromedia.com which takes you to:
http://www.macromedia.com/desdev/topics/mm_new_look.html

It's listed there as The new Macromedia Flash navigation on macromedia.com

and the specific URL is:
http://www.macromedia.com/desdev/articles/fma_interview.html

I hope this is what you were looking for!

Vernon Viehe
ColdFusion Community Manager
Developer Relations
Macromedia, Inc.
Online diary: http://vvmx.blogspot.com/ 

 -Original Message-
 From: Kris Pilles [mailto:[EMAIL PROTECTED]]
 Sent: Monday, June 10, 2002 12:37 PM
 To: CF-Talk
 Subject: Macromedia.com
 
 
 Anyone have a copy of the tutorial that was on macromedia.com that
 explained how they created their menus??? I cant find it on the site
 anymore... I think it was there??  
 
__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFENCRYPT Files

2002-06-11 Thread Brad Roberts

You might have better luck searching for cfdecrypt ;)

http://www.google.com/search?q=cfdecrypt

-Brad

 -Original Message-
 From: Robert Everland [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 11, 2002 1:00 PM
 To: CF-Talk
 Subject: RE: CFENCRYPT Files
 
 
 Just do a search in google for cfencrypt, you'll come up with 
 some things to
 help you out.
 
 Robert Everland III
 Dixon Ticonderoga
 Web Developer Extraordinaire
 
 -Original Message-
 From: LANCASTER, STEVEN M. (JSC-OL) (BAR)
 [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, June 11, 2002 12:55 PM
 To: CF-Talk
 Subject: CFENCRYPT Files
 
 
 We had someone leave and before they left they encrypted all of one site
 using cfencrypt. Is there any way to decrypt them? If not We are in some
 serious trouble!!
 
 Steven Lancaster
 Barrios Technology
 NASA/JSC
 281-244-2444 (voice)
 [EMAIL PROTECTED] 
 
  
 
 
__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: How do Client Var Behave

2002-06-11 Thread Tony_Petruzzi

word to the wise. just be careful about what you put into the server scope
if you are on a shared server. do not put any sensitive information in any
of the variables as they can be read by any application on the server.

Anthony Petruzzi
Webmaster
954-321-4703
[EMAIL PROTECTED]
http://www.sheriff.org


-Original Message-
From: Brian Eckerman [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 1:14 PM
To: CF-Talk
Subject: RE: How do Client Var Behave


That are specific to a user..(Honestly this is really what client
variables should do!!)

-Original Message-
From: Kreig Zimmerman [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 11, 2002 12:19 PM
To: CF-Talk
Subject: Re: How do Client Var Behave


Use the SERVER scope.
  - Original Message - 
  From: Brian Eckerman 
  To: CF-Talk 
  Sent: Tuesday, June 11, 2002 12:04 PM
  Subject: RE: How do Client Var Behave


  How would I declare a var that would span applications?

  -Original Message-
  From: Randell B Adkins [mailto:[EMAIL PROTECTED]]
  Sent: Tuesday, June 11, 2002 12:00 PM
  To: CF-Talk
  Subject: Re: How do Client Var Behave


  The client variables are unique to the application.
  Thus the client vars in APP1 are ONLY available to APP1



   [EMAIL PROTECTED] 06/11/02 11:57AM 
  Hello again.
  Got a problem.
  I declare an Application context(say APP1) with cfapplication.
  then I set some client variables...

  I then cflocation to anouther directory, with..
  anouther declared Application context(say COOLAPP2)

  then I try to reference the client variables I set in APP1.
  --This Doesn't work-- :(


  My understanding is the whole point of Client varialbes is that they
  span application contexts.
  The above situation doesn't work...Is my understanding wrong?


  


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



RE: Macromedia.com

2002-06-11 Thread todd

Of course tho, the interview doesn't actually explain HOW the menu is 
created, but the concepts / workings behind it.

~Todd

On Tue, 11 Jun 2002, Vernon Viehe wrote:

 Got it: Here's how to find it: www.macromedia.com  Designer  Developer Center 
(www.macromedia.com/desdev)
 
 Left column: Topics  Macromedia.com which takes you to:
 http://www.macromedia.com/desdev/topics/mm_new_look.html
 
 It's listed there as The new Macromedia Flash navigation on macromedia.com
 
 and the specific URL is:
 http://www.macromedia.com/desdev/articles/fma_interview.html
 
 I hope this is what you were looking for!
 
 Vernon Viehe
 ColdFusion Community Manager
 Developer Relations
 Macromedia, Inc.
 Online diary: http://vvmx.blogspot.com/ 
 
  -Original Message-
  From: Kris Pilles [mailto:[EMAIL PROTECTED]]
  Sent: Monday, June 10, 2002 12:37 PM
  To: CF-Talk
  Subject: Macromedia.com
  
  
  Anyone have a copy of the tutorial that was on macromedia.com that
  explained how they created their menus??? I cant find it on the site
  anymore... I think it was there??  
  
 
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



  1   2   3   >