cfhttp posting XML problem

2005-04-07 Thread Duncan
I have a problem - I am creating an XML doc and using cfhttp post to
send it to a server.

Problem is that the server is responding as if I havent sent any XML
at all. I have tried all combinations of port and timeouts, but I cant
seem to get the right output. It should be responding with XML Success
in the return body and a status code of 200..

Can someone cast fresh eyes over this please:

cfxml variable=request.xm
cfoutput
?xml version=1.0 encoding=UTF-8?
OFI
  PropertyID23722/PropertyID
  UserIDmplusm00308/UserID
  Passwordk34bsd7ts2/Password
  OFIs
OFI Date=02/09/2004 EndTime=13:45 StartTime=13:00/
OFI Date=02/09/2004 EndTime=18:45 StartTime=18:00/
  /OFIs
/OFI
/cfoutput
/cfxml

cfset request.xm = Trim(request.xm)

CFHTTP URL=http://stage.campaigntrack.com.au:8080/CtXml/Post.aspx;
port=8080 USERAGENT=McGrath/1.0 method=post
cfhttpparam type=xml value=#request.xm#/
/cfhttp

-- 
Duncan I Loxton
www.sixfive.co.uk
[EMAIL PROTECTED]

I can only please one person per day. Today is not looking good. 
Tomorrow  isn't looking much better. Dilbert

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201822
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Async CFML (demo on damons blog)

2005-04-07 Thread Sean Corfield
On Apr 6, 2005 10:24 PM, dcooper @ macromedia. com dcooper @
macromedia. com [EMAIL PROTECTED] wrote:
 Client variables work GREAT with CFMX7 Gateways.  All good, no worries.  No 
 cookies (obviously), but we made sure they work in the context of Gateway 
 apps, as with session variables.

Since client variables rely on a cookie to identify a user, could you
clarify how that works with event gateways since they don't have
cookies? Presumably if an asynch CFML gateway CFC wants to access the
same client scope variables that the originally requested page can
access, some magic has to be done so that the event gateway knows how
to access the same client variables?

 I believe the error Tony was getting was because he was he was running in 
 Developer Edition mode, which enforces limits on the number of Event Gateway 
 requests, threads and originator ID's.  Evaluation mode and Enterprise 
 Edition obviously don't have these restrictions.

So he got a database deadlock on client storage because of that?
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

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

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201823
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Async CFML (demo on damons blog)

2005-04-07 Thread Jochem van Dieten
Tony Weeg wrote:
 that was what fueled my original WTF and it was/is consistently
 happening... without fail.

Does MS SQL Server offer a facility to log all queries? I would 
be interested in seeing what queries are really executed that 
could cause a deadlock inside MS SQL Server. If it is long, just 
send it offlist.

Jochem

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201824
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cfhttp posting XML problem

2005-04-07 Thread Guy Rish
Duncan,

I ran into a similar problem a while back.  Using a shareware proxy that
Dave Watts suggested (in reference to a different problem that someone was
having), Charles (http://www.xk72.com/charles/), I found that ColdFusion was
actually receiving the content back but was discarding it for some unknown
reason.  In fact, despite what I saw in the proxy, cfhttp would actually
report back a Connection Failure.
Interestingly enough this problem did *not* manifest for me on CF5.

The solution I used was to specify utf-8 in cfhttp's charset attribute.
I initially tried to specify it with a cfhttpparam but that didn't seem to
work for me but the attribute worked smoothly.

rish

 -Original Message-
 From: Duncan [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, April 07, 2005 1:00 AM
 To: CF-Talk
 Subject: cfhttp posting XML problem
 
 I have a problem - I am creating an XML doc and using cfhttp 
 post to send it to a server.
 
 Problem is that the server is responding as if I havent sent 
 any XML at all. I have tried all combinations of port and 
 timeouts, but I cant seem to get the right output. It should 
 be responding with XML Success in the return body and a 
 status code of 200..
 
 Can someone cast fresh eyes over this please:
 
 cfxml variable=request.xm
 cfoutput
 ?xml version=1.0 encoding=UTF-8?
 OFI
   PropertyID23722/PropertyID
   UserIDmplusm00308/UserID
   Passwordk34bsd7ts2/Password
   OFIs
   OFI Date=02/09/2004 EndTime=13:45 StartTime=13:00/
   OFI Date=02/09/2004 EndTime=18:45 StartTime=18:00/
   /OFIs
 /OFI
 /cfoutput
 /cfxml
 
 cfset request.xm = Trim(request.xm)
 
 CFHTTP URL=http://stage.campaigntrack.com.au:8080/CtXml/Post.aspx;
 port=8080 USERAGENT=McGrath/1.0 method=post
   cfhttpparam type=xml value=#request.xm#/ /cfhttp
 
 --
 Duncan I Loxton
 www.sixfive.co.uk
 [EMAIL PROTECTED]
 
 I can only please one person per day. Today is not looking good. 
 Tomorrow  isn't looking much better. Dilbert
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201825
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Sending Mail through IIS

2005-04-07 Thread Jochem van Dieten
Brad Roberts wrote:
 I'm having trouble sending email on my dedicated server.  CF sends the
 email, but it's never delivered, and doesn't bounce back.  I tried sending
 an email through Outlook Express and it worked fine.  I'm using the SMTP
 server provided by the hosting company.

If you set CF not to spool the messages, do you get an error? 
What is in the logfiles? Do you mean Outlook running on your 
dedicated server, or somewhere else?


 The hosting co. recommended sending through localhost and relaying it to
 their smtp server.  My questions are:
 
 Does this sound like it would fix the problem?

Insufficient information, but I am skeptical.

Jochem

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201826
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: cfhttp posting XML problem

2005-04-07 Thread Duncan
nice, I put in the utf-8 also I discovered I wasnt putting name into
the cfhttpparam.

Then after consulting the company that owns the webservice, I
discovered they wanted the xml as a post in a form field, so heres
what I have now:


CFHTTP URL=http://stage.campaigntrack.com.au:8080/CtXml/Post.aspx;
port=8080 USERAGENT=McGrath/1.0 method=post
cfhttpparam name=XML type=formfield value=#request.xm#/
/cfhttp

Problem solved.

Long day now over. TFFT.

On Apr 7, 2005 4:13 PM, Guy Rish [EMAIL PROTECTED] wrote:
 Duncan,
 
 I ran into a similar problem a while back.  Using a shareware proxy that
 Dave Watts suggested (in reference to a different problem that someone was
 having), Charles (http://www.xk72.com/charles/), I found that ColdFusion was
 actually receiving the content back but was discarding it for some unknown
 reason.  In fact, despite what I saw in the proxy, cfhttp would actually
 report back a Connection Failure.
 Interestingly enough this problem did *not* manifest for me on CF5.
 
 The solution I used was to specify utf-8 in cfhttp's charset attribute.
 I initially tried to specify it with a cfhttpparam but that didn't seem to
 work for me but the attribute worked smoothly.
 
 rish
 
  -Original Message-
  From: Duncan [mailto:[EMAIL PROTECTED]
  Sent: Thursday, April 07, 2005 1:00 AM
  To: CF-Talk
  Subject: cfhttp posting XML problem
 
  I have a problem - I am creating an XML doc and using cfhttp
  post to send it to a server.
 
  Problem is that the server is responding as if I havent sent
  any XML at all. I have tried all combinations of port and
  timeouts, but I cant seem to get the right output. It should
  be responding with XML Success in the return body and a
  status code of 200..
 
  Can someone cast fresh eyes over this please:
 
  cfxml variable=request.xm
  cfoutput
  ?xml version=1.0 encoding=UTF-8?
  OFI
PropertyID23722/PropertyID
UserIDmplusm00308/UserID
Passwordk34bsd7ts2/Password
OFIs
OFI Date=02/09/2004 EndTime=13:45 StartTime=13:00/
OFI Date=02/09/2004 EndTime=18:45 StartTime=18:00/
/OFIs
  /OFI
  /cfoutput
  /cfxml
 
  cfset request.xm = Trim(request.xm)
 
  CFHTTP URL=http://stage.campaigntrack.com.au:8080/CtXml/Post.aspx;
  port=8080 USERAGENT=McGrath/1.0 method=post
cfhttpparam type=xml value=#request.xm#/ /cfhttp
 
  --
  Duncan I Loxton
  www.sixfive.co.uk
  [EMAIL PROTECTED]
 
  I can only please one person per day. Today is not looking good.
  Tomorrow  isn't looking much better. Dilbert
 
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201827
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How to disconnect from an Access datasource under CFMX 6?

2005-04-07 Thread Jochem van Dieten
Claude Schneegans wrote:
 
 Under CF 5, it was easy to have CF disconnect from an Access datasource 
 by just making some dummy query on an unexisting table.
 Now it seems that this doesn't work anymore under CFMX.
 Is there some other trick for CMFX?

There is a way, but it is so ugly I would urge you to redesign 
your application. And check with your host, I know somebody got 
kicked from a server for pulling this stunt: 
http://spike.oli.tudelft.nl/jochemd/index.cfm?PageID=12

Jochem

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201828
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: cfhttp posting XML problem

2005-04-07 Thread Guy Rish
Duncan,

Ahh, I misunderstood you a bit.  
I thought you had meant that you were also receiving back a packet which you
weren't getting.  My suggestion is probably not even applicable to your
situation.

*shrug*
Sorry for not reading more carefully.

rish

 -Original Message-
 From: Duncan [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, April 07, 2005 1:23 AM
 To: CF-Talk
 Subject: Re: cfhttp posting XML problem
 
 nice, I put in the utf-8 also I discovered I wasnt putting 
 name into the cfhttpparam.
 
 Then after consulting the company that owns the webservice, I 
 discovered they wanted the xml as a post in a form field, so 
 heres what I have now:
 
 
 CFHTTP URL=http://stage.campaigntrack.com.au:8080/CtXml/Post.aspx;
 port=8080 USERAGENT=McGrath/1.0 method=post
   cfhttpparam name=XML type=formfield 
 value=#request.xm#/ /cfhttp
 
 Problem solved.
 
 Long day now over. TFFT.
 
 On Apr 7, 2005 4:13 PM, Guy Rish [EMAIL PROTECTED] wrote:
  Duncan,
  
  I ran into a similar problem a while back.  Using a shareware proxy 
  that Dave Watts suggested (in reference to a different problem that 
  someone was having), Charles 
 (http://www.xk72.com/charles/), I found 
  that ColdFusion was actually receiving the content back but was 
  discarding it for some unknown reason.  In fact, despite 
 what I saw in 
  the proxy, cfhttp would actually report back a Connection Failure.
  Interestingly enough this problem did *not* manifest for me on CF5.
  
  The solution I used was to specify utf-8 in cfhttp's 
 charset attribute.
  I initially tried to specify it with a cfhttpparam but that didn't 
  seem to work for me but the attribute worked smoothly.
  
  rish
  
   -Original Message-
   From: Duncan [mailto:[EMAIL PROTECTED]
   Sent: Thursday, April 07, 2005 1:00 AM
   To: CF-Talk
   Subject: cfhttp posting XML problem
  
   I have a problem - I am creating an XML doc and using 
 cfhttp post to 
   send it to a server.
  
   Problem is that the server is responding as if I havent 
 sent any XML 
   at all. I have tried all combinations of port and timeouts, but I 
   cant seem to get the right output. It should be 
 responding with XML 
   Success in the return body and a status code of 200..
  
   Can someone cast fresh eyes over this please:
  
   cfxml variable=request.xm
   cfoutput
   ?xml version=1.0 encoding=UTF-8? OFI
 PropertyID23722/PropertyID
 UserIDmplusm00308/UserID
 Passwordk34bsd7ts2/Password
 OFIs
 OFI Date=02/09/2004 EndTime=13:45 StartTime=13:00/
 OFI Date=02/09/2004 EndTime=18:45 StartTime=18:00/
 /OFIs
   /OFI
   /cfoutput
   /cfxml
  
   cfset request.xm = Trim(request.xm)
  
   CFHTTP 
 URL=http://stage.campaigntrack.com.au:8080/CtXml/Post.aspx;
   port=8080 USERAGENT=McGrath/1.0 method=post
 cfhttpparam type=xml value=#request.xm#/ /cfhttp
  
   --
   Duncan I Loxton
   www.sixfive.co.uk
   [EMAIL PROTECTED]
  
   I can only please one person per day. Today is not looking good.
   Tomorrow  isn't looking much better. Dilbert
  
  
  
  
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201829
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Async CFML (demo on damons blog)

2005-04-07 Thread Jochem van Dieten
Sean Corfield wrote:
 On Apr 6, 2005 10:24 PM, dcooper @ macromedia. com wrote:
 
I believe the error Tony was getting was because he was he was running in 
Developer Edition mode, which enforces limits on the number of Event Gateway 
requests, threads and originator ID's.  Evaluation mode and Enterprise 
Edition obviously don't have these restrictions.
 
 So he got a database deadlock on client storage because of that?

I'm having a hard time believing that too. A thread limit would 
be inside CF, not inside the database. Contention, delays are all 
fine, but not a deadlock.

Jochem

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201830
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Async CFML (demo on damons blog)

2005-04-07 Thread Micha Schopman
Yes, MS SQL Server offers developers the SQL Profiler, which enables you
to log and output all information regarding a query. It starts from
basic information like commands executed, time taken, etc. , to
extensive internal information about the query like table scans used,
execution plan statistics etc. 


Micha Schopman

Does MS SQL Server offer a facility to log all queries? I would 
be interested in seeing what queries are really executed that 
could cause a deadlock inside MS SQL Server. If it is long, just 
send it offlist.

Jochem

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201831
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CF - phpBB integration

2005-04-07 Thread Neil Middleton
Guys,

I've just launched my site http://www.ismycarhotornot.co.uk which is running 
CF on the front end and a phpBB installation for the forum software.

Thing is, I think it would be cool if people could leave comments directly 
on an image, but I think that requires some sort of login system in order to 
help create a community/identity.
So, really the question is, has anyone had any experience with intergrating 
CF with phpBB so I can have a single login for the entire site?

I'm happy to use the registration system that is used in phpBB and use the 
users tables/user administration tools that that produces, but can I login 
to the phpBB via CF from a CF page so the user won't have to re-login when 
they get to the forums? As far as I can see everything else is quite easy 
unless you lot can think of anything.


TIA
-- 
Neil
http://www.ismycarhotornot.co.uk


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201832
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF - phpBB integration

2005-04-07 Thread Jochem van Dieten
Neil Middleton wrote:
 
 I've just launched my site http://www.ismycarhotornot.co.uk which is running 
 CF on the front end and a phpBB installation for the forum software.
 
 Thing is, I think it would be cool if people could leave comments directly 
 on an image, but I think that requires some sort of login system in order to 
 help create a community/identity.
 So, really the question is, has anyone had any experience with intergrating 
 CF with phpBB so I can have a single login for the entire site?
 
 I'm happy to use the registration system that is used in phpBB and use the 
 users tables/user administration tools that that produces, but can I login 
 to the phpBB via CF from a CF page so the user won't have to re-login when 
 they get to the forums?

It is probably easiest to use HTTP Authentication for this. In CF 
this will be automatically picked up by cflogin (use the code 
from http://www.vandieten.net/jochem/coldfusion/customtags/login/ 
if you use an older version of CF). A cursory glance at the phpBB 
source shows you need to extend login.php to pick up the 
Authorization header. See RFC 2617 and the CF code for details on 
HTTP Authentication.

Jochem

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201833
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF - phpBB integration

2005-04-07 Thread Neil Middleton
I was thinking along the lines of phpBB maintaining a login state via a 
cookie which I can then replicate via CF. Unfortunately, my php is shocking 
so I'm not sure if this is the case or not.

On Apr 7, 2005 10:21 AM, Jochem van Dieten [EMAIL PROTECTED] wrote:
 
 
 It is probably easiest to use HTTP Authentication for this. In CF
 this will be automatically picked up by cflogin (use the code
 from http://www.vandieten.net/jochem/coldfusion/customtags/login/
 if you use an older version of CF). A cursory glance at the phpBB
 source shows you need to extend login.php to pick up the
 Authorization header. See RFC 2617 and the CF code for details on
 HTTP Authentication.
 

-- 
Neil
http://www.ismycarhotornot.co.uk


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201834
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Renaming a GIF - CFFILE

2005-04-07 Thread Robertson-Ravo, Neil (RX)
Could do, but that still doesn't explain why it is AOK for JPG but not GIF?!
;-)



-Original Message-
From: JediHomer [mailto:[EMAIL PROTECTED] 
Sent: 05 April 2005 19:34
To: CF-Talk
Subject: Re: Renaming a GIF - CFFILE

The file could be locked?

Try performing a Copy, then a delete on the original.. It may give the
call enough time to release the lock?

HTH

On Apr 5, 2005 2:43 PM, Robertson-Ravo, Neil (RX)
[EMAIL PROTECTED] wrote:
 Anyone seen the following error/oddity..
 
 All Files upload OK, and FileExists() confirms that CF can see them, but
it
 always gives a tag validation error when trying to rename the GIF files.
I
 have tried uploading GIF and JPG versions of the same file, and the JPG
will
 rename, but the GIF won't.
 
 completely bonkers...
 
 This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
 Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
 Registered in England, Number 678540.  It contains information which is
 confidential and may also be privileged.  It is for the exclusive use of
the
 intended recipient(s).  If you are not the intended recipient(s) please
note
 that any form of distribution, copying or use of this communication or the
 information in it is strictly prohibited and may be unlawful.  If you have
 received this communication in error please return it to the sender or
call
 our switchboard on +44 (0) 20 89107910.  The opinions expressed within
this
 communication are not necessarily those expressed by Reed Exhibitions.
 Visit our website at http://www.reedexpo.com
 
 



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201835
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Renaming a GIF - CFFILE

2005-04-07 Thread Jochem van Dieten
Robertson-Ravo, Neil (RX) wrote:
 Could do, but that still doesn't explain why it is AOK for JPG but not GIF?!

Misbehaving virus scanner?

Jochem

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201836
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Renaming a GIF - CFFILE

2005-04-07 Thread Robertson-Ravo, Neil (RX)
Hmmm, never thought of that...lemme check that out...



-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: 07 April 2005 10:55
To: CF-Talk
Subject: Re: Renaming a GIF - CFFILE

Robertson-Ravo, Neil (RX) wrote:
 Could do, but that still doesn't explain why it is AOK for JPG but not
GIF?!

Misbehaving virus scanner?

Jochem



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201837
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF - phpBB integration

2005-04-07 Thread Jochem van Dieten
Neil Middleton wrote:
 I was thinking along the lines of phpBB maintaining a login state via a 
 cookie which I can then replicate via CF. Unfortunately, my php is shocking 
 so I'm not sure if this is the case or not.

phpBB maintains a session through a session identifier in either 
a cookie or the URL. You could collect that session identifier in 
CF, do a request from CF to phpBB to get the userID that it 
represents and start a CF session in which you store that userID. 
Problem there is that you will need to sync session state, i.e. 
if the user logs out from phpBB you need to log him out from CF too.
If you use HTTP Authentication, the user will simply send his 
username with every request. There is no need for communication 
between CF and phpBB.

Jochem

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201838
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF - phpBB integration

2005-04-07 Thread Neil Middleton
I'll take a look at phpBB and HTTP methinks.. 

Thanks

On Apr 7, 2005 11:07 AM, Jochem van Dieten [EMAIL PROTECTED] wrote:
 
 
 phpBB maintains a session through a session identifier in either
 a cookie or the URL. You could collect that session identifier in
 CF, do a request from CF to phpBB to get the userID that it
 represents and start a CF session in which you store that userID.
 Problem there is that you will need to sync session state, i.e.
 if the user logs out from phpBB you need to log him out from CF too.
 If you use HTTP Authentication, the user will simply send his
 username with every request. There is no need for communication
 between CF and phpBB.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201839
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


checking for vars

2005-04-07 Thread Daniel Kessler
It seems to me, that to use a url variable (or any type really) that 
I have to check for the variable before I can use it, otherwise I 
receive an error saying that it doesn't exist.  In the example, I 
can't just  do the interior IF so wherever I use this as a decision 
point, there's always  two sets of IFs and indents.

Is there a better way?

cfif StructKeyExists(URL,'group')

cfif url.group NEQ 'me'do something here/cfif

/cfif


thanks.

if'n along

-- 
Daniel Kessler

Department of Public and Community Health
University of Maryland
Suite 2387 Valley Drive
College Park, MD  20742-2611
301-405-2545 Phone
www.phi.umd.edu

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201840
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: checking for vars

2005-04-07 Thread Robertson-Ravo, Neil (RX)
Yes you will need to do this... (or set a cfparam default)

You can also perform...

cfif isDefined(url.group)
   Do this
cfelse
   Do that
/cfif



-Original Message-
From: Daniel Kessler [mailto:[EMAIL PROTECTED] 
Sent: 07 April 2005 11:59
To: CF-Talk
Subject: checking for vars

It seems to me, that to use a url variable (or any type really) that 
I have to check for the variable before I can use it, otherwise I 
receive an error saying that it doesn't exist.  In the example, I 
can't just  do the interior IF so wherever I use this as a decision 
point, there's always  two sets of IFs and indents.

Is there a better way?

cfif StructKeyExists(URL,'group')

cfif url.group NEQ 'me'do something here/cfif

/cfif


thanks.

if'n along

-- 
Daniel Kessler

Department of Public and Community Health
University of Maryland
Suite 2387 Valley Drive
College Park, MD  20742-2611
301-405-2545 Phone
www.phi.umd.edu



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201841
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: checking for vars

2005-04-07 Thread JediHomer
cfif StructKeyExists(URL,'group') AND url.group NEQ 'me'
do something here/cfif

/cfif

On Apr 7, 2005 11:59 AM, Daniel Kessler [EMAIL PROTECTED] wrote:
 It seems to me, that to use a url variable (or any type really) that
 I have to check for the variable before I can use it, otherwise I
 receive an error saying that it doesn't exist.  In the example, I
 can't just  do the interior IF so wherever I use this as a decision
 point, there's always  two sets of IFs and indents.
 
 Is there a better way?
 
 cfif StructKeyExists(URL,'group')
 
 cfif url.group NEQ 'me'do something here/cfif
 
 /cfif
 
 thanks.
 
 if'n along
 
 --
 Daniel Kessler
 
 Department of Public and Community Health
 University of Maryland
 Suite 2387 Valley Drive
 College Park, MD  20742-2611
 301-405-2545 Phone
 www.phi.umd.edu
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201843
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: checking for vars

2005-04-07 Thread JediHomer
cfif StructKeyExists(URL,'group') AND url.group NEQ 'me'

do something here

/cfif

On Apr 7, 2005 11:59 AM, Daniel Kessler [EMAIL PROTECTED] wrote:
 It seems to me, that to use a url variable (or any type really) that
 I have to check for the variable before I can use it, otherwise I
 receive an error saying that it doesn't exist.  In the example, I
 can't just  do the interior IF so wherever I use this as a decision
 point, there's always  two sets of IFs and indents.
 
 Is there a better way?
 
 cfif StructKeyExists(URL,'group')
 
 cfif url.group NEQ 'me'do something here/cfif
 
 /cfif
 
 thanks.
 
 if'n along
 
 --
 Daniel Kessler
 
 Department of Public and Community Health
 University of Maryland
 Suite 2387 Valley Drive
 College Park, MD  20742-2611
 301-405-2545 Phone
 www.phi.umd.edu
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201842
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Password management Best Practices

2005-04-07 Thread Mark Leder
Hi all,
 
I've been pondering the problem of password storage in a db and its
retrievability, and was wondering what other people have done in the
following situations:
 
1) What method(s) used for password encryption (salt and hash).  What tag(s)
do you use?
 
2) When someone forgets their password, how would an encrypted password be
de-salted/de-hashed and displayed on a screen?  (I would display the
password when the userenters their emal AND correctly responds to a
challenge question - I never send passwords via email, as I have seen done
on many ecommerce sites).
 
Thanks,
Mark




~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201844
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Password management Best Practices

2005-04-07 Thread Jochem van Dieten
Mark Leder wrote:
  
 I've been pondering the problem of password storage in a db and its
 retrievability, and was wondering what other people have done in the
 following situations:
  
 1) What method(s) used for password encryption (salt and hash).  What tag(s)
 do you use?

Salt: username
Hash: MD5


 2) When someone forgets their password, how would an encrypted password be
 de-salted/de-hashed and displayed on a screen?

Depends on requirements, but obviously you can not decrypt a 
hashed pasword. I prefer to provide a new password out-of-band 
after their identity has been established out-of-band. SMS / 
(e)mail / telephone could all be options depending on the scenario.

Jochem

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201845
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Password management Best Practices

2005-04-07 Thread Robertson-Ravo, Neil (RX)
wouldn't it be:

username: text
password: salt + hash (hashing of your choosing)

?



-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: 07 April 2005 12:42
To: CF-Talk
Subject: Re: Password management Best Practices

Mark Leder wrote:
  
 I've been pondering the problem of password storage in a db and its
 retrievability, and was wondering what other people have done in the
 following situations:
  
 1) What method(s) used for password encryption (salt and hash).  What
tag(s)
 do you use?

Salt: username
Hash: MD5


 2) When someone forgets their password, how would an encrypted password be
 de-salted/de-hashed and displayed on a screen?

Depends on requirements, but obviously you can not decrypt a 
hashed pasword. I prefer to provide a new password out-of-band 
after their identity has been established out-of-band. SMS / 
(e)mail / telephone could all be options depending on the scenario.

Jochem



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201846
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Password management Best Practices

2005-04-07 Thread Andy Ousterhout
I use MD5 hash available on http://www.cflib.org.  When someone forgets a
password, I email them a temporary password that must be changed immediately
upon use.  I also email them whenever anything on their profile, including
password, is changed.  When someone calls in, we do the same thing on their
behalf.  No one but the User ever sees their password

Andy

-Original Message-
From: Mark Leder 


Hi all,
 
I've been pondering the problem of password storage in a db and its
retrievability, and was wondering what other people have done in the
following situations:
 
1) What method(s) used for password encryption (salt and hash).  What tag(s)
do you use?
 
2) When someone forgets their password, how would an encrypted password be
de-salted/de-hashed and displayed on a screen?  (I would display the
password when the userenters their emal AND correctly responds to a
challenge question - I never send passwords via email, as I have seen done
on many ecommerce sites).
 
Thanks,
Mark






~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201847
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: checking for vars

2005-04-07 Thread daniel kessler
That worked, but I'm surprised that it worked.  I guess it checks one, then the 
other. 

thanks!

cfif StructKeyExists(URL,'group') AND url.group NEQ 'me'
do something here/cfif

/cfif

On Apr 7, 2005 11:59 AM, Daniel Kessler [EMAIL PROTECTED] wrote:


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201848
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Password management Best Practices

2005-04-07 Thread James Holmes
There is no such thing as de-hashing (which is why we hash). Decrypting can
be done if the encryption key is known, but I prefer hashing passwords.

-Original Message-
From: Mark Leder [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 7 April 2005 7:25 
To: CF-Talk
Subject: Password management Best Practices

Hi all,
 
I've been pondering the problem of password storage in a db and its
retrievability, and was wondering what other people have done in the
following situations:
 
1) What method(s) used for password encryption (salt and hash).  What tag(s)
do you use?
 
2) When someone forgets their password, how would an encrypted password be
de-salted/de-hashed and displayed on a screen?  (I would display the
password when the userenters their emal AND correctly responds to a
challenge question - I never send passwords via email, as I have seen done
on many ecommerce sites).
 
Thanks,
Mark






~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201849
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Password management Best Practices

2005-04-07 Thread Kerry
just wondering:
is there any particular reason why you dont just use CF's built in hash()
function?

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED]
Sent: 07 April 2005 13:02
To: CF-Talk
Subject: RE: Password management Best Practices


I use MD5 hash available on http://www.cflib.org.  When someone forgets a
password, I email them a temporary password that must be changed immediately
upon use.  I also email them whenever anything on their profile, including
password, is changed.  When someone calls in, we do the same thing on their
behalf.  No one but the User ever sees their password

Andy

-Original Message-
From: Mark Leder


Hi all,

I've been pondering the problem of password storage in a db and its
retrievability, and was wondering what other people have done in the
following situations:

1) What method(s) used for password encryption (salt and hash).  What tag(s)
do you use?

2) When someone forgets their password, how would an encrypted password be
de-salted/de-hashed and displayed on a screen?  (I would display the
password when the userenters their emal AND correctly responds to a
challenge question - I never send passwords via email, as I have seen done
on many ecommerce sites).

Thanks,
Mark








~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201850
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: checking for vars

2005-04-07 Thread Douglas Knudsen
CF uses the 'short circuit' approach to evaluating AND. So, when CF evals 
(foo AND goo) if foo is false, no need to look at goo at all.

D

On Apr 7, 2005 8:09 AM, daniel kessler [EMAIL PROTECTED] wrote:
 
 That worked, but I'm surprised that it worked. I guess it checks one, then 
 the other.
 
 thanks!
 
 cfif StructKeyExists(URL,'group') AND url.group NEQ 'me'
 do something here/cfif
 
 /cfif
 
 On Apr 7, 2005 11:59 AM, Daniel Kessler [EMAIL PROTECTED] wrote:
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201851
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Sending Mail through IIS

2005-04-07 Thread Adrocknaphobia
Brad,

What they are most likely recommending is that you setup a virtual
SMTP server in IIS on your coldFusion server. It's a very simple
setup. This way you avoid any network problems which may cause CF to
not send out mail. CF doesn't have a retry option and certain MM reps
will tell you that this is intentional... although if there is the
smallest issue in delivering mail, cf will just give up and say it
couldnt be delivered (like network connectivity, or if your SMTP
server is too bust to handle the request at that split second)

However IIS's virtual SMTP server does will alleviate most of these
issues. Just setup the server and point CF to deliver mail  to
127.0.0.1. IIS's server can try multiple times and will also diver you
non-delivery reports.

-Adam


On Apr 7, 2005 2:18 AM, Jochem van Dieten [EMAIL PROTECTED] wrote:
 Brad Roberts wrote:
  I'm having trouble sending email on my dedicated server.  CF sends the
  email, but it's never delivered, and doesn't bounce back.  I tried sending
  an email through Outlook Express and it worked fine.  I'm using the SMTP
  server provided by the hosting company.
 
 If you set CF not to spool the messages, do you get an error?
 What is in the logfiles? Do you mean Outlook running on your
 dedicated server, or somewhere else?
 
 
  The hosting co. recommended sending through localhost and relaying it to
  their smtp server.  My questions are:
 
  Does this sound like it would fix the problem?
 
 Insufficient information, but I am skeptical.
 
 Jochem
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201852
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


ANNOUNCE: CFUNITED interview 5 - Successful Fusebox Dev; Welcome to CF; Hotel discount ends 4/15

2005-04-07 Thread Michael Smith
In this issue of ColdFusion conference and training news:

1. CFUNITED News - new sessions and BOFs, hotel discount ends 4/15/05
2. Powered by Detroit ColdFusion and Flash conference - April 9-10
3. Strategies for Successful Fusebox Development interview with Maxim Porges
4. Welcome to CF interview with Simon Horwith

Happy coding
- Michael Smith,
   TeraTech, Inc  http://www.teratech.com/
   Creating excellent custom software since 1989

...what I saw [at CFUN] was incredible, and the buzz was phenomenal.
CFUN[ITED] has become the premier CF specific event - Ben Forta, Macromedia

1. CFUNITED News


* New sessions in the Advanced CF track
   - Tom Jordahl (Macromedia Sr. Software Architect, CF)
 Creating custom gateways in CFMX 7

* New BOFs
   - CF in Government with Tim Buntel and Dave Grubber of Macromedia
   - CF Futures with Damon Copper and the CF engineering team

* Matt Liotta had to change his speaking plans but will will fill his spot with 
one
   of our backup speakers.

* Only 12 weeks until CFUNITED-05. Timely bird price $549 expires in 23 days on 
4/30/05

* 342 people have already registered for CFUNITED-05!

* The CFUNITED hotel room block $159 special price ends 4/15/05
   use the promo code: CFCCFCA to get this rate
   Reservations made after that date will cost $179.00


2. Powered by Detroit ColdFusion and Flash conference - April 9-10
**
Want more CF and Flash? Check out the Powered by Detroit
Flash/ColdFusion Conference, this weekend April 9-10,
http://poweredbydetroit.org/

I will be speaking at it and hope to see you there!


3. Strategies for Successful Fusebox Development interview with Maxim Porges
**

Michael Smith: This time we are talking with Maxim Porges about his CFUNITED-05
  talk Strategies for Successful Fusebox Development. So why should a 
developer
  come to your session Maxim ?

  Maxim Porges: First off, hello, and thank you for the opportunity to talk 
about
  my presentation! I had a great time presenting at the 2004 Fusebox conference,
  and I'm really looking forward to CFUNITED this year.

  To answer your question: a developer should come to my session to save
  themselves frustration, time, and money! I think that there are a lot of
  developers/development teams out there that have the talent to code phenomenal
  applications, but may not have the best process for helping their clients and
  developers build the right solution the first time around. My presentation 
will
  show them how to build the perfect application, in one trip, using FLiP (the
  Fusebox Lifecycle Process).

  MS: Fusebox Lifecycle Process... does that mean that you have to use Fusebox
  to take advantage of FLiP?

  MP: Not at all. You will get all the benefits of FLiP even if you don't use 
the
  Fusebox framework for your coding. After all, coding is only one small part of
  the FLiP process - and usually the shortest part of the process, too.

  MS: So are you saying that I could use FLiP for a Java application, or with
  .NET?

  MP: Absolutely! FLiP is an SDLC (Software Development Lifecycle) that can 
apply
  itself to any software project, for any language, and any framework. You would
  have the same success using FLiP to scope out a desktop application created in
  Java or .NET as you would for an RIA implemented using Flex or Laszlo, or a 
web
  application written in ColdFusion, JSP, PHP, or ASP.NET.

  My team likes to build our applications using ColdFusion, but if we started
  using C#/.NET tomorrow, or decided to build our applications using J2EE and
  Struts, we'd keep on using FLiP as our SDLC. My team has real world experience
  using FLiP to build interactive kiosks in Flash, as well as using it for all 
of
  our web projects. I've also put it to use for creating desktop Java
  applications.

  MS: What is your experience with FLiP?

  MP: My team discovered FLiP at the 2002 Fusebox conference. Before we started
  using FLiP, we had a lot of trouble putting together applications that our
  clients were happy with. It wasn't that we missed requirements; we always 
built
  the client exactly what they asked for. Unfortunately, the client never knows
  what they want until they see it, and once you've built something, it's too 
late
  to go back and do things over. FLiP is so good at removing the
  client/requirement barrier that my team hasn't had a project fail client
  acceptance in over two years.

  MS: Wow that is amazing! Is FLiP hard to learn?

  MP: FLiP is super easy to learn and use if you do it right. In fact, many
  development shops are probably doing most of the steps in FLiP already -
  however, they might be doing them in the wrong order, or without the 
appropriate
  level of detail. For example, the process my team was using before we started 
to
  use FLiP had all of the FLiP steps - we just 

RE:_Susan_(was_Re:_____print_break_in_CF???)

2005-04-07 Thread S . Isaac Dealey
Heh... just in the homage to Fight Club. (Bob had bitch tits...)

 I remember the story haha wasnt there man boobs involved?

 
 From: Rick Faircloth [EMAIL PROTECTED]
 Sent: Wednesday, April 06, 2005 10:57 PM
 To: CF-Talk cf-talk@houseoffusion.com
 Subject: RE: Susan_(was_Re:_print_break_in_CF???)

 You didn't have to tell us that story for us
 to know that you're insane... :o)

 Rick

s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201854
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re:____print_break_in_CF???

2005-04-07 Thread S . Isaac Dealey
I believe it works on the table tag itself, but not on tr,th or
td tags... at least I remember using it on table tags. I had a look
at the CF Report builder for the first time yesterday. Not too bad --
nice alternative to Crystal (which I've seen cause all kinds of nasty
problems up to and including complete server crashes requiring a
physical reboot, i.e. drive down to the hosting facility in Miami --
could have been badly used Crystal, though if that's the case, that
makes Crystal one of the most difficult technologies to use [properly]
that I've seen -- it's complicated enough just to use it at all). Not
to mention it's great to be able to get the reports automatically in a
more ubiquitous and/or portable format (PDF or FlashPaper --
FlashPaper because the Flash plugin has close to 90% adoption). I did
notice there are still some oddities about it -- if you get an error
from a report there's no way to access the generated cfml code and
often it doesn't display much about the error (in comparison to a .cfm
error). So my coworker yesterday had to copy and paste the report code
into a separate CF template to debug it, only to see that he'd typo'd
DaysInMonth() as DaysInMonty() (would that be days in the full monty
or days in the three-card monty?). I was a bit surprised to see that
it only supports a single query. I'll have to work with it some to see
if I feel that's a real limitation -- it may not be in the long-run.

Anyway, I'm gonna have to split and get up to the office speaking of
work.


 OIC said the blind man.
 I was putting the style in the table not a div tag.  Tried
 surounding
 each section in a div and set the style it is below, and
 it worked just
 fine.

 Still gonna have to get into the new CF Report Builder,
 its looks nice.

 Thanks
 Greg


s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201855
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE:_____print_break_in_CF???

2005-04-07 Thread S . Isaac Dealey
 Are you a boy named Sue
 or a girl named Isaac?  :o)

Actually, I could tell you my first name, but you're a nice guy and
I'd regret the subsequent obligatory killing. :)



s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201856
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Async CFML (demo on damons blog)

2005-04-07 Thread Tony Weeg
jochem, im not sure.

ill see if i can look thi smorning.

tw

On Apr 7, 2005 2:14 AM, Jochem van Dieten [EMAIL PROTECTED] wrote:
 Tony Weeg wrote:
  that was what fueled my original WTF and it was/is consistently
  happening... without fail.
 
 Does MS SQL Server offer a facility to log all queries? I would
 be interested in seeing what queries are really executed that
 could cause a deadlock inside MS SQL Server. If it is long, just
 send it offlist.
 
 Jochem
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201857
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: calling an inherited cfc function from within a cfc

2005-04-07 Thread Protoculture
I must be missing something. Can you show an example of what you can't do?

Hi Bryan, I think they mean this...while defined within a cfc.

Super.YourCFCMethod(item1='this', item2='that');

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201858
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Async CFML (demo on damons blog)

2005-04-07 Thread Tony Weeg
Sean, Damon, Jochem et al.

i first had the problem with my dev. box, which is Dev. Edition.  And
this was the error there...

Error,jrpp-0,04/06/05,09:43:04,,Problem adding event for
gateway Async CFML: A problem occurred when attempting to add more
assignments into the threadpool task queue.

then, after emailing damon offlist, he suggested that i try it on a
box that was not Dev. Edition.

so i did that, and that produced this error:

Error,Thread-20,04/06/05,11:03:15,,Error invoking CFC for
gateway Async CFML: Operation failed on the data source named
clientStorage. Reason of failure [Macromedia][SQLServer JDBC
Driver][SQLServer]Transaction (Process ID 177) was deadlocked on lock
resources with another process and has been chosen as the deadlock
victim. Rerun the transaction.

if i look in the event gateway settings i see that it was hit 100
times, like the demo
said, just NEVER returns anything.  

(just a recap)

damon i think, thought that all of this happened on Dev. Edition, but
thats not the case.  Both talk to the same client var store, just that
one is a dev. ed. and one is ent. editi.

ill do what i can to help diagnose this

-- 
tony

Tony Weeg

macromedia certified coldfusion mx developer
email: tonyweeg [at] gmail [dot] com
blog: http://www.revolutionwebdesign.com/blog/
cool tool: http://www.antiwrap.com

...straight cash homey
- randy moss, now a raider

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201859
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Async CFML (demo on damons blog)

2005-04-07 Thread S . Isaac Dealey
 jochem, im not sure.

 ill see if i can look thi smorning.

 tw

 On Apr 7, 2005 2:14 AM, Jochem van Dieten
 [EMAIL PROTECTED] wrote:
 Tony Weeg wrote:
  that was what fueled my original WTF and it was/is
  consistently
  happening... without fail.

 Does MS SQL Server offer a facility to log all queries? I
 would
 be interested in seeing what queries are really executed
 that
 could cause a deadlock inside MS SQL Server. If it is
 long, just
 send it offlist.

It does... it's called SQL Profiler iirc.


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201860
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: _____print_break_in_CF???

2005-04-07 Thread Rick Faircloth
Oh, by all means, spare me, please!  :o)


-Original Message-
From: S.Isaac Dealey [mailto:[EMAIL PROTECTED]
Sent: Thursday, April 07, 2005 12:18 PM
To: CF-Talk
Subject: RE:_print_break_in_CF???


 Are you a boy named Sue
 or a girl named Isaac?  :o)

Actually, I could tell you my first name, but you're a nice guy and
I'd regret the subsequent obligatory killing. :)



s. isaac dealey 954.522.6080
new epoch : isn't it time for a change?




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201861
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Error deploying webservice

2005-04-07 Thread kola.oyedeji
Hopefully someone has come across this before. I have a webservice which I
am trying to deploy but returns the following message:

 

I've checked permissions and can access a .cfm page on the same url, I've
tried this on a few other servers and it works fine - not sure if I've
missed anything obvious here. The only difference with this server and the
other servers is that there is no access to the cfadmin.

 

Thanks in advance

 

-K



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201862
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Error deploying webservice

2005-04-07 Thread kola.oyedeji
Okay forgot the error message
=
Fault - [coldfusion.util.RuntimeWrapper : The filename, directory name, or
volume label syntax is incorrect][java.io.IOException : The filename,
directory name, or volume label syntax is incorrect]; nested exception is: 
coldfusion.xml.rpc.CFCInvocationException:
[coldfusion.util.RuntimeWrapper : The filename, directory name, or volume
label syntax is incorrect][java.io.IOException : The filename, directory
name, or volume label syntax is incorrect]
=


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 Sent: 07 April 2005 13:45
 To: CF-Talk
 Subject: Error deploying webservice
 
 Hopefully someone has come across this before. I have a webservice which I
 am trying to deploy but returns the following message:
 
 
 
 I've checked permissions and can access a .cfm page on the same url, I've
 tried this on a few other servers and it works fine - not sure if I've
 missed anything obvious here. The only difference with this server and the
 other servers is that there is no access to the cfadmin.
 
 
 
 Thanks in advance
 
 
 
 -K
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201863
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Password management Best Practices

2005-04-07 Thread Andy Ousterhout
Probably just ignorance.  Can someone more familiar with both explain the
difference?

-Original Message-
From: Kerry

just wondering:
is there any particular reason why you dont just use CF's built in hash()
function?

-Original Message-
From: Andy Ousterhout


I use MD5 hash available on http://www.cflib.org.  When someone forgets a
password, I email them a temporary password that must be changed immediately
upon use.  I also email them whenever anything on their profile, including
password, is changed.  When someone calls in, we do the same thing on their
behalf.  No one but the User ever sees their password

Andy


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201864
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: checking for vars

2005-04-07 Thread Justin D. Scott
 It seems to me, that to use a url variable (or any type
 really) that I have to check for the variable before I
 can use it, otherwise I receive an error saying that
 it doesn't exist.

It's good practice to CFPARAM all of your URL and FORM variables into
existence before you try using them.  Then you can avoid one of your Ifs
entirely...

cfparam name=url.group default=
cfif url.group NEQ 'me'do something here/cfif


-Justin


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201865
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Password management Best Practices

2005-04-07 Thread James Holmes
From cflib.org:
* @author Rob Brooks-Bilson ([EMAIL PROTECTED]) 
 * @version 1, November 29, 2001

My guess is that this was before Hash() was a native fn in CF. Can anyone
else confirm?
 

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 7 April 2005 9:49 
To: CF-Talk
Subject: RE: Password management Best Practices

Probably just ignorance.  Can someone more familiar with both explain the
difference?

-Original Message-
From: Kerry

just wondering:
is there any particular reason why you dont just use CF's built in hash()
function?

-Original Message-
From: Andy Ousterhout


I use MD5 hash available on http://www.cflib.org.  When someone forgets a
password, I email them a temporary password that must be changed immediately
upon use.  I also email them whenever anything on their profile, including
password, is changed.  When someone calls in, we do the same thing on their
behalf.  No one but the User ever sees their password

Andy




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201866
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Application.cfc causes undefined in a CFML structure

2005-04-07 Thread JediHomer
Hi, 

Im using Application.cfc for the first time and am experiencing an odd
problem I cant seem to solve.

Using CFMX Dev Edition and Apache2

Application.cfc code is:

CFCOMPONENT
CFSET this.Name = jsTesting /
CFSET this.SessionManagement = true /
CFSET this.ScriptProtect = true /

CFFUNCTION NAME=onRequestStart RETURNTYPE=boolean
CFARGUMENT TYPE=String NAME=targetPage REQUIRED=true /
CFLOG FILE=#Application.ApplicationName# 
TEXT=onRequestStart /
CFRETURN true
/CFFUNCTION

/CFCOMPONENT

Index file just contains html, no cfcode/output.

When index is called, onRequestStart is fired as the log is written
to, however the debug output (which is switched on) doesn't complete,
it stops whilst displaying the Execution times with the following
text:

500 Element CFC[ C:\Dev\Websites\jedi\root\js\Application.cfc |
onRequestStart(/js/index.cfm) ] from
C:\Dev\Websites\jedi\root\js\Application.cfc is undefined in a CFML
structure referenced as part of an expression.

Has anyone seen this or can see where I'm going wrong?

The same results happen if I replace the function onRequestStart with
say onSessionStart although obviously I only see this error on a
session start.

Thanks in advance

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201867
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Application.cfc causes undefined in a CFML structure

2005-04-07 Thread JediHomer
Managed to resolve the problem!

I had copied a custom debug page I have running on an MX 6.1 server as
was using that, putting the debug page back to classic solved it :)



On Apr 7, 2005 3:02 PM, JediHomer [EMAIL PROTECTED] wrote:
 Hi,
 
 Im using Application.cfc for the first time and am experiencing an odd
 problem I cant seem to solve.
 
 Using CFMX Dev Edition and Apache2
 
 Application.cfc code is:
 
 CFCOMPONENT
 CFSET this.Name = jsTesting /
 CFSET this.SessionManagement = true /
 CFSET this.ScriptProtect = true /
 
 CFFUNCTION NAME=onRequestStart RETURNTYPE=boolean
 CFARGUMENT TYPE=String NAME=targetPage REQUIRED=true /
 CFLOG FILE=#Application.ApplicationName# 
 TEXT=onRequestStart /
 CFRETURN true
 /CFFUNCTION
 
 /CFCOMPONENT
 
 Index file just contains html, no cfcode/output.
 
 When index is called, onRequestStart is fired as the log is written
 to, however the debug output (which is switched on) doesn't complete,
 it stops whilst displaying the Execution times with the following
 text:
 
 500 Element CFC[ C:\Dev\Websites\jedi\root\js\Application.cfc |
 onRequestStart(/js/index.cfm) ] from
 C:\Dev\Websites\jedi\root\js\Application.cfc is undefined in a CFML
 structure referenced as part of an expression.
 
 Has anyone seen this or can see where I'm going wrong?
 
 The same results happen if I replace the function onRequestStart with
 say onSessionStart although obviously I only see this error on a
 session start.
 
 Thanks in advance


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201868
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Password management Best Practices

2005-04-07 Thread Jochem van Dieten
Robertson-Ravo, Neil (RX) wrote:
 wouldn't it be:
 
 username: text
 password: salt + hash (hashing of your choosing)

No, in the database I store MD5(username  password) or even 
MD5(username  string  password) to make sure everybody has a 
different salt.

Jochem

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201869
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


JRUN 4 vs Bundled JRUN in CFMX 6.1

2005-04-07 Thread Kevin Pechin
Hi All,

Is there any difference between the standalone JRUN 4 and the JRUN that gets 
bundled with CFMX (Enterprise)? Is it cripped in any way? We are trying to 
determine if we still need to maintain JRUN while we have CFMX 6. Any 
thoughts? Will there be any performance benefits from running CFMX on JRUN 4 
instead of the built in JRUN? (BTW we are migrating from CF 5 to MX, but we 
use JRUN standalone for a few servlets)

Thanks!

-Kevin


~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201870
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Any news from MM on the broken IIS6 connector on stand alone installs???

2005-04-07 Thread Debbie Dickerson
The updated connector is now available.
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=238944b1

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201871
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: How to disconnect from an Access datasource under CFMX 6?

2005-04-07 Thread Claude Schneegans
 There is a way, but it is so ugly

It is indeed. Having to restart the service for all datasources is a PITA.
There should be some way to get a handle on the datasource in particular 
and close all connections on it.

 I would urge you to redesign your application.

Unfortunately, it has nothing to do with the application, sometimes I 
have to upload the database for some modifications.
OK, I could do the modifications from a CF template, but that would 
imply to foresee all possible goofs users can make, and the project 
would need a budget at least ten times bigger ;-)

-- 
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED])
Thanks.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201872
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: JRUN 4 vs Bundled JRUN in CFMX 6.1

2005-04-07 Thread John Beynon
it's crippled in that you can't access it via the JMC to make more instances 
etc, hence the reason for CF Enterprise and multi instance installation on 
the same server.

john.

On Apr 7, 2005 3:49 PM, Kevin Pechin [EMAIL PROTECTED] wrote:
 
 Hi All,
 
 Is there any difference between the standalone JRUN 4 and the JRUN that 
 gets
 bundled with CFMX (Enterprise)? Is it cripped in any way? We are trying to
 determine if we still need to maintain JRUN while we have CFMX 6. Any
 thoughts? Will there be any performance benefits from running CFMX on JRUN 
 4
 instead of the built in JRUN? (BTW we are migrating from CF 5 to MX, but 
 we
 use JRUN standalone for a few servlets)
 
 Thanks!
 
 -Kevin
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201873
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: JRUN 4 vs Bundled JRUN in CFMX 6.1

2005-04-07 Thread Douglas Knudsen
The JRun in CFMX Enterprise is the same JRun as a JRun purchase according to 
MM. Benefits of using the J2EE install with JRun? Clustering and seperate 
instances are the first to come to mind.

D

On Apr 7, 2005 10:49 AM, Kevin Pechin [EMAIL PROTECTED] wrote:
 
 Hi All,
 
 Is there any difference between the standalone JRUN 4 and the JRUN that 
 gets
 bundled with CFMX (Enterprise)? Is it cripped in any way? We are trying to
 determine if we still need to maintain JRUN while we have CFMX 6. Any
 thoughts? Will there be any performance benefits from running CFMX on JRUN 
 4
 instead of the built in JRUN? (BTW we are migrating from CF 5 to MX, but 
 we
 use JRUN standalone for a few servlets)
 
 Thanks!
 
 -Kevin
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201874
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


recoding some parts into Java...

2005-04-07 Thread Protoculture
Would we get a substantial performance boost on a process intensive series of 
CF tasks if we converted them into Java? ( assuming of course it was done 
properly ). 

Right now we have a emailing system that takes quite a bit of time to finish. 
I'm wondering if we brought the majority of processes into Java if that would 
help us out.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201875
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: JRUN 4 vs Bundled JRUN in CFMX 6.1

2005-04-07 Thread Adrocknaphobia
I'd be interested to know the actual versions (which updater) ships
with CFMX7. I'm assuming 4 since 5 was jsut released.

-Adam

On Apr 7, 2005 11:05 AM, Douglas Knudsen [EMAIL PROTECTED] wrote:
 The JRun in CFMX Enterprise is the same JRun as a JRun purchase according to
 MM. Benefits of using the J2EE install with JRun? Clustering and seperate
 instances are the first to come to mind.
 
 D
 
 On Apr 7, 2005 10:49 AM, Kevin Pechin [EMAIL PROTECTED] wrote:
 
  Hi All,
 
  Is there any difference between the standalone JRUN 4 and the JRUN that
  gets
  bundled with CFMX (Enterprise)? Is it cripped in any way? We are trying to
  determine if we still need to maintain JRUN while we have CFMX 6. Any
  thoughts? Will there be any performance benefits from running CFMX on JRUN
  4
  instead of the built in JRUN? (BTW we are migrating from CF 5 to MX, but
  we
  use JRUN standalone for a few servlets)
 
  Thanks!
 
  -Kevin
 
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201876
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CF6.1 or higher parsing strange NBSP character

2005-04-07 Thread Steve Brownlee
We're currently using CF7, but we've actually seen this happening since
CF6.1.  We have some frameset code (example shown below) that dynamically
builds the page content with Javascript.  In this code, we use a nbsp;
character, but ever since CF5 (in which it works fine), we're now seeing an
extended ASCII character shown where the nbsp should be.  In IE, it shows a
captial A with an accent mark, and FF shows a black diamond with a question
mark in it.

Just wondering if anyone else has been this behavior and perhaps found a way
around it.


frameset
frame
src=hdr_banner.cfm?noCache=1112886239091sessionWindowID=2390763
name=hdr_banner noresize scrolling=NO
frameset cols=500,* framespacing=0 border=0 frameborder=NO
frame src=hdr_buttons.cfm name=hdr_buttons noresize
scrolling=NO 
frame
src=javascript:'htmlhead/headbodynbsp;/body/html'
name=header noresize scrolling=NO
/frameset
/frameset


TIA, Steve

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201877
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: recoding some parts into Java...

2005-04-07 Thread Steve Brownlee
Are you sure that it's ColdFusion that it slowing the task down?  I'm not
sure if moving it to Java would provide a noticeable increase in performance
considering that the server already converts your CF code to Java bytecode
before it's executed.  Perhaps you could also look at moving your data
transactional code to stored procedures (if applicable).  What do your logs
say?  Are the pages doing the processing taking large amounts of time?

-Original Message-
From: Protoculture [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 07, 2005 11:08 AM
To: CF-Talk
Subject: recoding some parts into Java...

Would we get a substantial performance boost on a process intensive series of
CF tasks if we converted them into Java? ( assuming of course it was done
properly ). 

Right now we have a emailing system that takes quite a bit of time to finish.
I'm wondering if we brought the majority of processes into Java if that would
help us out.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201878
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Any news from MM on the broken IIS6 connector on stand alone installs???

2005-04-07 Thread Adrocknaphobia
On Apr 4, 2005 10:05 PM, Mike Kear [EMAIL PROTECTED] wrote:
 And all those people said it was MY fault.   They implied I was
 deficient in not being able to make it run.  '... I've installed it
 dozens of times and it worked ok for me ...  they said, the implied
 criticism being that I must be somehow stupid or have pennypinched on
 my hardware if i couldn't install it myself.

We have identified the issue and it occurs only when using the CFMX 6.1
updater (the bug is not in CFMX 7) and only when using the JRun connector.

CFMX6.1 _not_ CFMX7.

-Adam

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201879
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Performance Question

2005-04-07 Thread Jason Rogoz
I have a situation that could be implemented in two different ways and looking 
to see which situation would be best:
I have 3 result sets that i need to obtain...i could query the database 3 times 
to obtain each one or query the database once and then filter the result in cf 
using cfquery...in the long run is the cfquery slower at filtering than 
querying the db 3 times?  lets say we would be dealing with 300-500 records in 
total.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201880
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Performance Question

2005-04-07 Thread Steve Brownlee
One query is (almost) always more efficient than three.  You might also want
to consider using a stored procedure and calling it with the cfstoredproc
tag.  Even faster that way.

-Original Message-
From: Jason Rogoz [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 07, 2005 11:21 AM
To: CF-Talk
Subject: Performance Question

I have a situation that could be implemented in two different ways and
looking to see which situation would be best:
I have 3 result sets that i need to obtain...i could query the database 3
times to obtain each one or query the database once and then filter the
result in cf using cfquery...in the long run is the cfquery slower at
filtering than querying the db 3 times?  lets say we would be dealing with
300-500 records in total.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201882
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Performance Question

2005-04-07 Thread Kerry
why not write both and time the execution?

-Original Message-
From: Jason Rogoz [mailto:[EMAIL PROTECTED]
Sent: 07 April 2005 16:21
To: CF-Talk
Subject: Performance Question


I have a situation that could be implemented in two different ways and
looking to see which situation would be best:
I have 3 result sets that i need to obtain...i could query the database 3
times to obtain each one or query the database once and then filter the
result in cf using cfquery...in the long run is the cfquery slower at
filtering than querying the db 3 times?  lets say we would be dealing with
300-500 records in total.



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201882
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT - Who is coming to Powered by Detroit this weekend?

2005-04-07 Thread Rick Mason
John,

I think that having the conference on the weekend actually makes more
sense when you stop to think about it.

With training budgets being slashed to the bone a lot of developers
won't get work to pay for the conference.

If it's on the weekend you can decide to go on your own and you don't
even need to use any vacation time to attend.


Rick Mason



On Apr 6, 2005 12:48 PM, John Stanley [EMAIL PROTECTED] wrote:
 We were gonna go, until we found out it is on the weekend. what gives with
 that? I wonder why? Is it normal for conferences to be on the weekend?
 
 -Original Message-
 From: Rick Mason [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, April 06, 2005 12:44 PM
 To: CF-Talk
 Subject: OT - Who is coming to Powered by Detroit this weekend?
 
 I was wondering who will be attending the Powered by Detroit
 conference this weekend?
 
 I look forward to meeting as many people on this list as I can.
 
 Rick Mason
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201883
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Performance Question

2005-04-07 Thread Jochem van Dieten
Jason Rogoz wrote:
 I have a situation that could be implemented in two different ways and 
 looking to see which situation would be best:
 I have 3 result sets that i need to obtain...i could query the database 3 
 times to obtain each one or query the database once and then filter the 
 result in cf using cfquery...in the long run is the cfquery slower at 
 filtering than querying the db 3 times?  lets say we would be dealing with 
 300-500 records in total.

Depends on the queries. Just test it.

Jochem

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201884
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: recoding some parts into Java...

2005-04-07 Thread RADEMAKERS Tanguy
what version/edition of CF are you using? By design, CFMAIL is *much*
more performant in enterprise edition than in professional - it's one of
the major selling points.

/t

-Original Message-
From: Steve Brownlee [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 07, 2005 5:18 PM
To: CF-Talk
Subject: RE: recoding some parts into Java...

Are you sure that it's ColdFusion that it slowing the task 
down?  I'm not
sure if moving it to Java would provide a noticeable increase 
in performance
considering that the server already converts your CF code to 
Java bytecode
before it's executed.  Perhaps you could also look at moving your data
transactional code to stored procedures (if applicable).  What 
do your logs
say?  Are the pages doing the processing taking large amounts of time?

-Original Message-
From: Protoculture [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 07, 2005 11:08 AM
To: CF-Talk
Subject: recoding some parts into Java...

Would we get a substantial performance boost on a process 
intensive series of
CF tasks if we converted them into Java? ( assuming of course 
it was done
properly ). 

Right now we have a emailing system that takes quite a bit of 
time to finish.
I'm wondering if we brought the majority of processes into 
Java if that would
help us out.





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201885
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: recoding some parts into Java...

2005-04-07 Thread kola.oyedeji
There may be other factors such as the mail server that could be the bottle
neck - if you're sending a lot of email are you using the Enterprise version
of cfmx?

K

 -Original Message-
 From: Protoculture [mailto:[EMAIL PROTECTED]
 Sent: 07 April 2005 15:08
 To: CF-Talk
 Subject: recoding some parts into Java...
 
 Would we get a substantial performance boost on a process intensive series
 of CF tasks if we converted them into Java? ( assuming of course it was
 done properly ).
 
 Right now we have a emailing system that takes quite a bit of time to
 finish. I'm wondering if we brought the majority of processes into Java if
 that would help us out.
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201886
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: recoding some parts into Java...

2005-04-07 Thread Protoculture
Interesting. Do you think that the stored producedures would provide a greater 
performance boost than a conversion to Java ? Is that what you are saying?

What about a combination of C++  stored procedures?



Are you sure that it's ColdFusion that it slowing the task down?  I'm not
sure if moving it to Java would provide a noticeable increase in performance
considering that the server already converts your CF code to Java bytecode
before it's executed.  Perhaps you could also look at moving your data
transactional code to stored procedures (if applicable).  What do your logs
say?  Are the pages doing the processing taking large amounts of time?

-Original Message-
From: Protoculture [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 07, 2005 11:08 AM
To: CF-Talk
Subject: recoding some parts into Java...

Would we get a substantial performance boost on a process intensive series of
CF tasks if we converted them into Java? ( assuming of course it was done
properly ). 

Right now we have a emailing system that takes quite a bit of time to finish.
I'm wondering if we brought the majority of processes into Java if that would
help us out.

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201887
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: JRUN 4 vs Bundled JRUN in CFMX 6.1

2005-04-07 Thread Calvin Ward
Um, why can't you? I'm only looking at 7 right now, but I could have sworn
that 6 installed the JMC too?

- Calvin

-Original Message-
From: John Beynon [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 07, 2005 11:04 AM
To: CF-Talk
Subject: Re: JRUN 4 vs Bundled JRUN in CFMX 6.1

it's crippled in that you can't access it via the JMC to make more instances

etc, hence the reason for CF Enterprise and multi instance installation on 
the same server.

john.

On Apr 7, 2005 3:49 PM, Kevin Pechin [EMAIL PROTECTED] wrote:
 
 Hi All,
 
 Is there any difference between the standalone JRUN 4 and the JRUN that 
 gets
 bundled with CFMX (Enterprise)? Is it cripped in any way? We are trying to
 determine if we still need to maintain JRUN while we have CFMX 6. Any
 thoughts? Will there be any performance benefits from running CFMX on JRUN

 4
 instead of the built in JRUN? (BTW we are migrating from CF 5 to MX, but 
 we
 use JRUN standalone for a few servlets)
 
 Thanks!
 
 -Kevin
 
 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201888
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: recoding some parts into Java...

2005-04-07 Thread Protoculture
actually I think its the developer version.


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201889
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: recoding some parts into Java...

2005-04-07 Thread S . Isaac Dealey
 Would we get a substantial performance boost on a process
 intensive series of CF tasks if we converted them into
 Java? ( assuming of course it was done properly ).

 Right now we have a emailing system that takes quite a bit
 of time to finish. I'm wondering if we brought the
 majority of processes into Java if that would help us out.

If your java code made use of the ability to spawn new threads, sure,
you might see a significant performance boost. Might... you might
not... I don't have deep personal knowledge on the subject of sending
email with Java -- so I don't know if there are bottlenecks (common
resources that need to be single-threaded) which would prevent a
performance boost. I wouldn't expect them, but I could be wrong.
Alternatively, if you've upgraded to MX 7 enterprise you could simply
use the Asynchronous gateway to achieve the same result while staying
within CFML (and as a result having access to cfmail so you could
keep most of your existing code).



s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201890
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: recoding some parts into Java...

2005-04-07 Thread S . Isaac Dealey
Or cfqueryparam if you're not already using it... Although if you're
selecting a single query and using that to drive hundreds or thousands
of email, the database may not have anything to do with the
bottleneck. But he's right, you ought to try and isolate it to make
sure it's CF and not some other bottleneck before you spend a lot of
time working on a solution that may not work.

 Interesting. Do you think that the stored producedures
 would provide a greater performance boost than a
 conversion to Java ? Is that what you are saying?

 What about a combination of C++  stored procedures?

Are you sure that it's ColdFusion that it slowing the task
down?  I'm not
sure if moving it to Java would provide a noticeable
increase in performance
considering that the server already converts your CF code
to Java bytecode
before it's executed.  Perhaps you could also look at
moving your data
transactional code to stored procedures (if applicable).
What do your logs
say?  Are the pages doing the processing taking large
amounts of time?


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201891
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: recoding some parts into Java...

2005-04-07 Thread Jochem van Dieten
Protoculture wrote:
 Would we get a substantial performance boost on a process intensive series of 
 CF tasks if we converted them into Java?

Depends on the tasks.


 Right now we have a emailing system that takes quite a bit of time to finish.

What is the bottleneck? CPU? Network bandwidth? DNS latency? Etc..

Jochem

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201892
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF6.1 or higher parsing strange NBSP character

2005-04-07 Thread S . Isaac Dealey
 frameset
   frame
 src=hdr_banner.cfm?noCache=1112886239091sessionWindowID=
 2390763
 name=hdr_banner noresize scrolling=NO
   frameset cols=500,* framespacing=0 border=0
   frameborder=NO
   frame src=hdr_buttons.cfm name=hdr_buttons
   noresize
 scrolling=NO
   frame
 src=javascript:'htmlhead/headbodynbsp;/body/h
 tml'
 name=header noresize scrolling=NO
   /frameset
 /frameset

I'm not sure about the CF Server version, but that looks like rather
strange JS code in general... Have you tried this?

frame src=javascript:document.write('#jsstringformat(htmlhead/
headbodynbsp;/body/html)#');

Or are you saying the strange character appears in the page source?

Generally speaking, I'd avoid using javascript that way and just
create a plain static html page with nothing in it and use a normal
src attribute...


s. isaac dealey   954.522.6080
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://macromedia.breezecentral.com/p49777853/
http://www.sys-con.com/author/?id=4806
http://www.fusiontap.com



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201893
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: JRUN 4 vs Bundled JRUN in CFMX 6.1

2005-04-07 Thread Adrocknaphobia
Standalone vs j2EE. J2EE install of course installs JRun seperately
with the JMC. I think they are referring to the standalone install
with CFMX standard.

-Adam

On Apr 7, 2005 11:43 AM, Calvin Ward [EMAIL PROTECTED] wrote:
 Um, why can't you? I'm only looking at 7 right now, but I could have sworn
 that 6 installed the JMC too?
 
 - Calvin
 
 -Original Message-
 From: John Beynon [mailto:[EMAIL PROTECTED]
 Sent: Thursday, April 07, 2005 11:04 AM
 To: CF-Talk
 Subject: Re: JRUN 4 vs Bundled JRUN in CFMX 6.1
 
 it's crippled in that you can't access it via the JMC to make more instances
 
 etc, hence the reason for CF Enterprise and multi instance installation on
 the same server.
 
 john.
 
 On Apr 7, 2005 3:49 PM, Kevin Pechin [EMAIL PROTECTED] wrote:
 
  Hi All,
 
  Is there any difference between the standalone JRUN 4 and the JRUN that
  gets
  bundled with CFMX (Enterprise)? Is it cripped in any way? We are trying to
  determine if we still need to maintain JRUN while we have CFMX 6. Any
  thoughts? Will there be any performance benefits from running CFMX on JRUN
 
  4
  instead of the built in JRUN? (BTW we are migrating from CF 5 to MX, but
  we
  use JRUN standalone for a few servlets)
 
  Thanks!
 
  -Kevin
 
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201894
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Error Messages not displaying right

2005-04-07 Thread Ricky Fritzsching
Is there a setting that I am just overlooking on the server/CFAdministrator
that will display my error messages correctly? Anyone else had this problem?
Thx!





Invalid token apos;.apos; found on line 17 at column 123. 

pThe CFML compiler was processing:ullithe tag attribute form, on
line 17, column 119.lia cflocation tag beginning on line 17, column
18.lia cflocation tag beginning on line 17, column 18.lia cflocation tag
beginning on line 17, column 18./ul   
 
 
 
 
Ricky Fritzsching

If debugging is the art of removing bugs, then programming must be the art
of inserting them



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201895
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: recoding some parts into Java...

2005-04-07 Thread Nathan Strutz
While it does make sense for some tasks to be ported to Java, I actually 
doubt that mail-blasting is one that would benifit, especially if you're 
running enterprise. If not, still, CFMX queues up mail very quickly, and 
6.1 is much more stable and efficient than 6.0 was with this.

I could see some related tasks, such as creating the content for your 
mail, but not necessarily sending it. Of course ymmv, but generally, the 
real issue is your mail server can't handle the amount of traffic. I 
recommend iMail for windows, it's been very fast and stable, head and 
shoulders above qMail on linux (but who knows, maybe it was our sysadmin).

-nathan strutz
http://www.dopefly.com/



Protoculture wrote:
 Would we get a substantial performance boost on a process intensive series of 
 CF tasks if we converted them into Java? ( assuming of course it was done 
 properly ). 
 
 Right now we have a emailing system that takes quite a bit of time to finish. 
 I'm wondering if we brought the majority of processes into Java if that would 
 help us out.
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201896
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT - Who is coming to Powered by Detroit this weekend?

2005-04-07 Thread Adrocknaphobia
Actually, on the same lines, last year I was able to send 5+
developers to CFUN (which was over a weekend). This year I can only
send 2 rather than the 7 i wanted to send because management doesnt
want the office empty of developers during the week.

-Adam

On Apr 7, 2005 11:27 AM, Rick Mason [EMAIL PROTECTED] wrote:
 John,
 
 I think that having the conference on the weekend actually makes more
 sense when you stop to think about it.
 
 With training budgets being slashed to the bone a lot of developers
 won't get work to pay for the conference.
 
 If it's on the weekend you can decide to go on your own and you don't
 even need to use any vacation time to attend.
 
 Rick Mason
 
 
 On Apr 6, 2005 12:48 PM, John Stanley [EMAIL PROTECTED] wrote:
  We were gonna go, until we found out it is on the weekend. what gives with
  that? I wonder why? Is it normal for conferences to be on the weekend?
 
  -Original Message-
  From: Rick Mason [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, April 06, 2005 12:44 PM
  To: CF-Talk
  Subject: OT - Who is coming to Powered by Detroit this weekend?
 
  I was wondering who will be attending the Powered by Detroit
  conference this weekend?
 
  I look forward to meeting as many people on this list as I can.
 
  Rick Mason
 
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201897
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Performance Question

2005-04-07 Thread Pete Freitag
Jason Rogoz wrote:

I have a situation that could be implemented in two different ways and looking 
to see which situation would be best:
I have 3 result sets that i need to obtain...i could query the database 3 
times to obtain each one or query the database once and then filter the result 
in cf using cfquery...in the long run is the cfquery slower at filtering than 
querying the db 3 times?  lets say we would be dealing with 300-500 records in 
total.
  

Answer to all performance questions: It depends

But you may also be able to create a VIEW on the db, and simply query that. Or 
you could possibly use temp tables.

It also depends on which physical machine is faster, your db server or your cf 
server (assuming they are on different machines). In general DB servers are 
usually better at filtering the data than cf would be.

__
Pete Freitag
work: http://www.cfdev.com/
blog: http://www.petefreitag.com/
shop: http://www.dealazon.com/

Author of the CFMX Developers Cookbook
http://www.petefreitag.com/bookshelf/





~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201898
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Password management Best Practices

2005-04-07 Thread Figy, Kam
Before CF7, the built in hash function is MD5. So there's no difference
really. In CF7 the hash function is a lot more capable and can do SHA
and other more secure variants.

There's a lot more you can do besides hashing stored passwords if you're
forced to use a non-SSL connection, such as using javascript to do
challenge-response authentication (CHAP). A good resource on this
technique:

http://pajhome.org.uk/crypt/md5/chaplogin.html

I have a CFC-based framework that accomplishes a lot of this that I
might release sometime in the future.

/kam

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 07, 2005 6:49 AM
To: CF-Talk
Subject: RE: Password management Best Practices

Probably just ignorance.  Can someone more familiar with both explain
the
difference?

-Original Message-
From: Kerry

just wondering:
is there any particular reason why you dont just use CF's built in
hash()
function?

-Original Message-
From: Andy Ousterhout


I use MD5 hash available on http://www.cflib.org.  When someone forgets
a
password, I email them a temporary password that must be changed
immediately
upon use.  I also email them whenever anything on their profile,
including
password, is changed.  When someone calls in, we do the same thing on
their
behalf.  No one but the User ever sees their password

Andy




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201900
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Error Messages not displaying right

2005-04-07 Thread Nathan Strutz
You're saying that's the only error it displays? There's a setting on 
the debug page to display detailed errors, turn it on, but I wouldn't 
recommend it for a live web site (security issues).

Otherwise, the error below is just a parsing/compiling error, like you 
have an invalid tag attribute.

-nathan strutz
http://www.dopefly.com/


Ricky Fritzsching wrote:
 Is there a setting that I am just overlooking on the server/CFAdministrator
 that will display my error messages correctly? Anyone else had this problem?
 Thx!
 
 
 
 
 
 Invalid token apos;.apos; found on line 17 at column 123. 
 
 pThe CFML compiler was processing:ullithe tag attribute form, on
 line 17, column 119.lia cflocation tag beginning on line 17, column
 18.lia cflocation tag beginning on line 17, column 18.lia cflocation tag
 beginning on line 17, column 18./ul 
  
  
  
  
 Ricky Fritzsching
 
 If debugging is the art of removing bugs, then programming must be the art
 of inserting them
 
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201899
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: JavaScript clock problem w/ Firefox

2005-04-07 Thread Rebecca Wells
Could it be a time zone issue?  Is Novell trying to adjust your system time
to match the server time?

Novell syncs the workstation time when the user logs on using the Novell 
Netware client (which is the normal procedure). The workstation time is fine. 
IE gets the correct time from the OS, Firefox gets GMT time minus 1 hour for 
daylight savings time. Weird! I'm going to try to get this posted to Mozilla 
Bugzilla.

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201901
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Password management Best Practices

2005-04-07 Thread Matt Robertson
One thing about hash() is that a hash created from another system will
not work in CF.  Been there with regard to having a user want to
import hashed passwords from a linux system (php?) into a copy of
AccessMonger he bought from me.

I'm pretty sure a tag just showed up at the MM devex that purports to
hash something in *n*x format.  If portability is a concern give that
a look.

As for your questions:

1. Salted hash using CF's hash() function and a UUID I place in the
file.  A lot of times I plant a UUID in a record as part of the
initial creation process and I find they are useful for all sorts of
things down the road; this being one of them.

2. Nobody gets to 'see' their password as its a)waaay bad for security
and b)an admin who can see a password can be bothered by a zillion
users who have forgotten their password.  Instead I give the user the
ability to recover their own password in a self-service process.  User
keys in their email address and gets an encrypted, timed link (good
for 24 hrs) back to the server. The link is emailed to them.  When
they click on the link they are given a password reset form, and asked
a secret question.  Answer the question right and the reset is
considered authentic and goes thru.  The question is set up the very
first time a user visits the system.  I like to send them a 'welcome'
email that sends them the encrypted link described above.  This lets
them pick their password and explains the hint/answer scene; letting
them pick their question (whatever they want) and answer.

-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201902
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: recoding some parts into Java...

2005-04-07 Thread Jon Gunnip
One area where we found significant improvements by moving code from
ColdFusion to Java is where we were creating up to thousands of
objects in high iteration loops.  We were modeling an element of lists
with a component and then doing set operations (union, intersect,
difference) on those lists.  We modeled that simple component with a
Java class instead and increased performance over 80% in just the
object creation (that figure is off the top of my head - its been
awhile since we tested the old way).  Java's set operations
(java.util.HashSet) accessed via cfscript also simplified the overall
code.

Basically, I would suggest that if you can isolate an area where is it
taking CF (not the mail server, database call, etc...) a while to
perform, especially something that is called in a loop, then you might
want to try implementing that functionality in Java.

For example, if it takes ColdFusion 10ms to create a component and
Java takes 5ms to create a similar object, then you only get 5ms
savings on one call.  If that is being called in a loop 5000 times,
then you get 25000ms = 25 seconds savings.  Big difference.

Jon

On Apr 7, 2005 9:07 AM, Protoculture [EMAIL PROTECTED] wrote:
 Would we get a substantial performance boost on a process intensive series of 
 CF tasks if we converted them into Java? ( assuming of course it was done 
 properly ).
 
 Right now we have a emailing system that takes quite a bit of time to finish. 
 I'm wondering if we brought the majority of processes into Java if that would 
 help us out.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201903
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: JRUN 4 vs Bundled JRUN in CFMX 6.1

2005-04-07 Thread Calvin Ward
Doh! Need more caffeine...

-Original Message-
From: Adrocknaphobia [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 07, 2005 12:07 PM
To: CF-Talk
Subject: Re: JRUN 4 vs Bundled JRUN in CFMX 6.1

Standalone vs j2EE. J2EE install of course installs JRun seperately
with the JMC. I think they are referring to the standalone install
with CFMX standard.

-Adam

On Apr 7, 2005 11:43 AM, Calvin Ward [EMAIL PROTECTED] wrote:
 Um, why can't you? I'm only looking at 7 right now, but I could have sworn
 that 6 installed the JMC too?
 
 - Calvin
 
 -Original Message-
 From: John Beynon [mailto:[EMAIL PROTECTED]
 Sent: Thursday, April 07, 2005 11:04 AM
 To: CF-Talk
 Subject: Re: JRUN 4 vs Bundled JRUN in CFMX 6.1
 
 it's crippled in that you can't access it via the JMC to make more
instances
 
 etc, hence the reason for CF Enterprise and multi instance installation on
 the same server.
 
 john.
 
 On Apr 7, 2005 3:49 PM, Kevin Pechin [EMAIL PROTECTED] wrote:
 
  Hi All,
 
  Is there any difference between the standalone JRUN 4 and the JRUN that
  gets
  bundled with CFMX (Enterprise)? Is it cripped in any way? We are trying
to
  determine if we still need to maintain JRUN while we have CFMX 6. Any
  thoughts? Will there be any performance benefits from running CFMX on
JRUN
 
  4
  instead of the built in JRUN? (BTW we are migrating from CF 5 to MX, but
  we
  use JRUN standalone for a few servlets)
 
  Thanks!
 
  -Kevin
 
 
 
 



~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201904
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Error Messages not displaying right

2005-04-07 Thread Ricky Fritzsching
I probably should have explained more in detail what 

The error message itself it writing out the HTML tags instead of properly
formatting the error message so I can read it. On one of my servers it reads
correctly but on this server it CFisn't parsing the HTML and special
character tags in the error. I am seeing p, ul, li instead of seeing
spaces and ordered bulleted lists.

Hopefully that cleared it up.

R

-Original Message-
From: Nathan Strutz [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 07, 2005 11:13 AM
To: CF-Talk
Subject: Re: Error Messages not displaying right

You're saying that's the only error it displays? There's a setting on the
debug page to display detailed errors, turn it on, but I wouldn't recommend
it for a live web site (security issues).

Otherwise, the error below is just a parsing/compiling error, like you have
an invalid tag attribute.

-nathan strutz
http://www.dopefly.com/


Ricky Fritzsching wrote:
 Is there a setting that I am just overlooking on the 
 server/CFAdministrator that will display my error messages correctly?
Anyone else had this problem?
 Thx!
 
 
 
 
 
 Invalid token apos;.apos; found on line 17 at column 123. 
 
 pThe CFML compiler was processing:ullithe tag attribute form, 
 on line 17, column 119.lia cflocation tag beginning on line 17, 
 column 18.lia cflocation tag beginning on line 17, column 18.lia
cflocation tag
 beginning on line 17, column 18./ul 
  
  
  
  
 Ricky Fritzsching
 
 If debugging is the art of removing bugs, then programming must be 
 the art of inserting them
 
 
 
 



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201905
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


avoid page breaks in Excel files using CF Report Builder

2005-04-07 Thread Rajani Chandra
Hi,  I'm using Coldfusion report builder to get the reports, in excel file one 
extra row is coming at the end of each page may be that is page break, I need 
continuous data, how to delete that row, is there any settings required for 
that one, I tried a lot, please help me.
  
Thanks for any information you can give me.

Thanks
Rajani.


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201906
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CF6 Server crashing,

2005-04-07 Thread Robertson-Ravo, Neil (RX)
This sounds like IIS - we get the same problem now and again.  Install IIS
State if you can to debug.

Let is know what you find.





This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Tony Matous [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wed Apr 06 14:40:23 2005
Subject: Re: CF6 Server crashing, 

Steven Erat has info

http://www.talkingtree.com/blog/index.cfm?mode=entryentry=B14AFA31-45A6-28
4
4-74EB63FB3560B748

Ok, thanks. That explains the . But if I replace . with Internal
error, I am still no closer to fixing this.

I still have the problem of why the server is crashing. Is there anywhere I
can look to find an error or stacktrace generated from this? Like I said, I
looked for modified files and didn't find anything that looked like it
explained this. What are the places errors could be written?

Thanks for any help



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201907
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RJustify doesn't work???

2005-04-07 Thread Johnny Le
Hi,

CJustify, LJustify, and RJustify don't work correctly, right?  I only be able 
to make it work inside an input tag.  In select tag or just output the string, 
they don't seem to do anything.  Am I right?  Is there a way around it to make 
it work correctly?

Johnny

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201908
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: RJustify doesn't work???

2005-04-07 Thread Dawson, Michael
View the source and you will probably see them.  These functions will
add whitespace, but since browsers collapse whitespace, by default, you
won't see the result on the page.

You will need to use pre/pre tags or CSS to keep the extra
whitespace.

M!ke

-Original Message-
From: Johnny Le [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 07, 2005 11:43 AM
To: CF-Talk
Subject: RJustify doesn't work???

Hi,

CJustify, LJustify, and RJustify don't work correctly, right?  I only be
able to make it work inside an input tag.  In select tag or just output
the string, they don't seem to do anything.  Am I right?  Is there a way
around it to make it work correctly?

Johnny

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201909
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Escaping #

2005-04-07 Thread Richard Crawford
I have to do something like this:

replace bob #1 with bob \#1

I tried,

cfset downLoadFile = replace(attachment.attName, \#, \\#, all)

But that only gave me an error; I suspect that CF is still trying to 
process the octothorpe as a variable delimiter.  Is there a way to 
escape the # so that I can include a literal # in my replace function?


-- 
Richard S. Crawford
Programmer III
UC Davis Extension Distance Education Group (http://unexdlc.ucdavis.edu)
2901 K Street, Suite 200C
Sacramento, CA  95816
(916)327-7793


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201910
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Escaping #

2005-04-07 Thread Jeff Waris
Try ##
 

 -Original Message-
 From: Richard Crawford [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, April 07, 2005 1:20 PM
 To: CF-Talk
 Subject: Escaping #
 
 
 I have to do something like this:
 
 replace bob #1 with bob \#1
 
 I tried,
 
 cfset downLoadFile = replace(attachment.attName, \#, \\#, all)
 
 But that only gave me an error; I suspect that CF is still trying to 
 process the octothorpe as a variable delimiter.  Is there a way to 
 escape the # so that I can include a literal # in my replace function?
 
 
 -- 
 Richard S. Crawford
 Programmer III
 UC Davis Extension Distance Education Group 
 (http://unexdlc.ucdavis.edu) 2901 K Street, Suite 200C 
 Sacramento, CA  95816 (916)327-7793
 
 
 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201911
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


CFTRY/CFCATCH exposing CF errors?

2005-04-07 Thread Bryan Stevenson
Hey All,

PROBLEM:
An Oracle connection refused error was displayed in a production system (yes 
all the lovely SQL exposed to the public..bad, bad, bad), when the code that 
attempted the connection was wrapped in a CFTRY/CFCATCH...that runs an error 
handling tag on error.  The tag is supposed to display a user-friendly message 
and e-mail the error to the developers (and works 99.9% of the time).

So...how can a standard CF error be displayed when a CFTRY/CFCATCH is setup 
specifically to NOT show actual CF error messages?

TIA

Cheers

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201912
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Async CFML (demo on damons blog)

2005-04-07 Thread Sean Corfield
On Apr 7, 2005 6:31 AM, Tony Weeg [EMAIL PROTECTED] wrote:
 Error,Thread-20,04/06/05,11:03:15,,Error invoking CFC for
 gateway Async CFML: Operation failed on the data source named
 clientStorage. Reason of failure [Macromedia][SQLServer JDBC
 Driver][SQLServer]Transaction (Process ID 177) was deadlocked on lock
 resources with another process and has been chosen as the deadlock
 victim. Rerun the transaction.

And the CFC you're running accessing client variables? It's possible
that you're multi-threading via the same 'key' and causing the
deadlock. See the comments about event gateways not having access to
cookies - which are used to identify which client you are for client
variable access...

 if i look in the event gateway settings i see that it was hit 100
 times, like the demo
 said, just NEVER returns anything.

Damon's standard file copying demo?
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

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

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201913
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Stupid SQL Question

2005-04-07 Thread Les Mizzell
Using Access

What I need in sorta English

Select
   distinct (CATEGORY),  --- just this one distinct (red, blue, green)
   col1, col2, col3m col4  --- and these too, but ain't gotta be distinct
WHERE
   TYPE = 'myTYPE'
   order by col4


Or basically, if type is a CAR, then show one red car, one blue car, 
one green car ... regardless of how many there actually are.

I need to do it in the SQL Select statement, not on the output side 
though...


-- 
---
Les Mizzell

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201914
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: OT - Who is coming to Powered by Detroit this weekend?

2005-04-07 Thread Tony Weeg
yeah, but if the freakin management had a conference to go to
they would have no problem emptying out their offices im sure.

if we dont make people in white collars respect our jobs and our conferences
then when can we EVER expect them to respect us.

get up stand up

and why should i take my personal time to attend something that the
company is going to benefit from?

just dont get it.

tw

On Apr 7, 2005 12:08 PM, Adrocknaphobia [EMAIL PROTECTED] wrote:
 Actually, on the same lines, last year I was able to send 5+
 developers to CFUN (which was over a weekend). This year I can only
 send 2 rather than the 7 i wanted to send because management doesnt
 want the office empty of developers during the week.
 
 -Adam
 
 On Apr 7, 2005 11:27 AM, Rick Mason [EMAIL PROTECTED] wrote:
  John,
 
  I think that having the conference on the weekend actually makes more
  sense when you stop to think about it.
 
  With training budgets being slashed to the bone a lot of developers
  won't get work to pay for the conference.
 
  If it's on the weekend you can decide to go on your own and you don't
  even need to use any vacation time to attend.
 
  Rick Mason
 
 
  On Apr 6, 2005 12:48 PM, John Stanley [EMAIL PROTECTED] wrote:
   We were gonna go, until we found out it is on the weekend. what gives with
   that? I wonder why? Is it normal for conferences to be on the weekend?
  
   -Original Message-
   From: Rick Mason [mailto:[EMAIL PROTECTED]
   Sent: Wednesday, April 06, 2005 12:44 PM
   To: CF-Talk
   Subject: OT - Who is coming to Powered by Detroit this weekend?
  
   I was wondering who will be attending the Powered by Detroit
   conference this weekend?
  
   I look forward to meeting as many people on this list as I can.
  
   Rick Mason
  
  
 
 
 
 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201915
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: calling an inherited cfc function from within a cfc

2005-04-07 Thread Sean Corfield
On Apr 7, 2005 6:28 AM, Protoculture [EMAIL PROTECTED] wrote:
 Hi Bryan, I think they mean this...while defined within a cfc.
 
 Super.YourCFCMethod(item1='this', item2='that');

Right, that didn't work in 6.1 but works fine in 7.0.
-- 
Sean A Corfield -- http://corfield.org/
Team Fusebox -- http://fusebox.org/
Got Gmail? -- I have 50, yes 50, invites to give away!

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

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201916
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: CFTRY/CFCATCH exposing CF errors?

2005-04-07 Thread Michael T. Tangorre
 From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
 So...how can a standard CF error be displayed when a 
 CFTRY/CFCATCH is setup specifically to NOT show actual CF 
 error messages?

What kind of exception are you catching with the cfcatch tag? Any? Database?
Check that first...

Mike




~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201917
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFTRY/CFCATCH exposing CF errors?

2005-04-07 Thread Matt Robertson
When it blows inside of /Application.cfm, which isn't subject to
try/catch.  I try to but up a backup cferror statement inside of that
file as high up as possible for just that reason.

On Apr 7, 2005 10:18 AM, Bryan Stevenson [EMAIL PROTECTED] wrote:
 Hey All,
 
 PROBLEM:
 An Oracle connection refused error was displayed in a production system 
 (yes all the lovely SQL exposed to the public..bad, bad, bad), when the code 
 that attempted the connection was wrapped in a CFTRY/CFCATCH...that runs an 
 error handling tag on error.  The tag is supposed to display a user-friendly 
 message and e-mail the error to the developers (and works 99.9% of the time).
 
 So...how can a standard CF error be displayed when a CFTRY/CFCATCH is setup 
 specifically to NOT show actual CF error messages?
 
 TIA
 
 Cheers
 
 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 phone: 250.480.0642
 fax: 250.480.1264
 cell: 250.920.8830
 e-mail: [EMAIL PROTECTED]
 web: www.electricedgesystems.com
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201918
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFTRY/CFCATCH exposing CF errors?

2005-04-07 Thread Matt Robertson
Another thing: I *think* a site-wide error handler in place would act
as a backup as well.  And this could happen inside of OnRequestEnd.cfm
too.
-- 
--mattRobertson--
Janitor, MSB Web Systems
mysecretbase.com

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201919
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Async CFML (demo on damons blog)

2005-04-07 Thread Tony Weeg
yes.  his standard file copy demo.

im not sure about it hitting the client variables store... im not
calling any client variables with the demo...

and now i have removed them completely from the application, and am
trying it without them being used on the server. (client vars that
is.)

tw

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201920
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: CFTRY/CFCATCH exposing CF errors?

2005-04-07 Thread Bryan Stevenson
Catching Any

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: [EMAIL PROTECTED]
web: www.electricedgesystems.com
- Original Message - 
From: Michael T. Tangorre [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Thursday, April 07, 2005 10:25 AM
Subject: RE: CFTRY/CFCATCH exposing CF errors?


 From: Bryan Stevenson [mailto:[EMAIL PROTECTED]
 So...how can a standard CF error be displayed when a
 CFTRY/CFCATCH is setup specifically to NOT show actual CF
 error messages?

 What kind of exception are you catching with the cfcatch tag? Any? 
 Database?
 Check that first...

 Mike




 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201921
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


  1   2   >