Re: Source control

2005-06-09 Thread Sean Corfield
On 6/8/05, Burns, John D [EMAIL PROTECTED] wrote:
 What does everyone use for source control?

CVS. All Macromedia IT code lives under CVS (free). All Macromedia
product team code lives under Perforce (not free).

FWIW, Eclipse has great CVS integration.
-- 
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:209072
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: Get New Record ID in ORACLE

2005-06-09 Thread RADEMAKERS Tanguy
-Original Message-
Subject: Get New Record ID in ORACLE
From: Douglas Knudsen [EMAIL PROTECTED]
Date: Wed, 8 Jun 2005 22:46:41 -0400
Thread: 
http://www.houseoffusion.com/cf_lists/index.cfm/method=messages
threadid=40571forumid=4#209060
quote
So here is a completely random question. How can a user kill thier own
session in Oracle without having priveleges to kill everyones session?
(i.e. if they logout of the cf app, can we kill that user's session
through a procedure rather than waiting for the session to timeout)
/quote

hmm, if you have connection pooling off in CFs DSN settings, 
this happens 
immediately. Otherwise I suppose you could run an SP upon 
logging out that 
kills it, eh? Or just set the timeout sweeper thingy to run 
more often. How 
often do users actually click logout though, eh?

It could be done because of the definer rights thing - as long as the
user who wrote the killer sp has the right to kill sessions then the
user who is executing it doesn't need to. You'd just have to get your
own SID and serial# values and pass them to the sp. Thing is, this isn't
a really attractive approach (imho) as  it's equivalent to asking
somebody to hang up the phone on you (and slam it down at that): why not
just hang up yourself? I'd say look into methods for closing/destroying
the java connection object from within cf, possibly using a JDBC aware
framework like ontap.



~|
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:209073
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: odd error question

2005-06-09 Thread Will Tomlinson
 sure can... 
 
 i have www.coalfusion.com

I was thinking cferror.com - haven't checked it though. 

 
 and can do the hosting for it.

Sounds like a plan. :)

Will
 
 :) tw
 
 On 6/9/05, Will Tomlinson [EMAIL PROTECTED] wrote:
  Sorry this doesn't help Tony, but I've been thinking we should build 
 a database of cferrors so people could peruse and find what causes a 
 given error. Especially the *mysterious* ones you don't see often.
  
  Can I get a hell yeah on this?
  
  Will
  
  

~|
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:209074
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: Get New Record ID in ORACLE

2005-06-09 Thread Aaron Rouse
Oracle 9i and I will have to check when at work as to what it is on the CF 
side, but I am pretty sure it is the native CF/Oracle JDBC driver and think 
I tested that on CFMX 6.1

On 6/7/05, James Holmes [EMAIL PROTECTED] wrote:
 
 Which version of Oracle and which driver are you using?
 
 We are on 9i and we use the native CF/Oracle JDBC driver (i.e.
 DataDirect) that comes with Enterprise. It may not work in the thin
 driver or other flavours.
 
 -Original Message-
 From: Aaron Rouse [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, 8 June 2005 12:16
 To: CF-Talk
 Subject: Re: Get New Record ID in ORACLE
 
 Syntax like that throws an error for me when tried in a cfquery.
 
 On 6/7/05, James Holmes [EMAIL PROTECTED] wrote:
 
  This would work in a cfquery:
 
  DECLARE newid NUMBER;
  BEGIN
  select s.nextval into newid from dual;  etc END;
 
  but I don't know why you would bother. Since you need the PL/SQL block
 
  you may as well store the prodecure instead so you can get back the
  id, which was the point in the first place. Or just use the two
  queries like
 
 
 
 
 
 

~|
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:209075
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: odd error question

2005-06-09 Thread Joe Rinehart
Tony,

If you enable robust exception handling in the CF administrator, it'll
probably give a much more meaningful error msg.

-Joe

On 6/8/05, Tony Weeg [EMAIL PROTECTED] wrote:
 hi there.
 
 anyone ever seen this error before?
 
  Error Occurred While Processing Request
 The filename, directory name, or volume label syntax is incorrect
 
 Please try the following:
 
 * Enable Robust Exception Information to provide greater detail
 about the source of errors. In the Administrator, click Debugging 
 Logging  Debugging Settings, and select the Robust Exception
 Information option.
 * Check the ColdFusion documentation to verify that you are using
 the correct syntax.
 * Search the Knowledge Base to find a solution to your problem.
 
 Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.8)
 Gecko/20050511 Firefox/1.0.4
 Remote Address  69.250.12.29
 Referrer
 http://www.mydinnercompany.com/menu.cfm?step=approveOrderDetailsCFID=5673CFTOKEN=88435167
 Date/Time   08-Jun-05 11:38 PM
 
 
 --
 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
 
 

~|
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:209076
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: Get New Record ID in ORACLE

2005-06-09 Thread James Holmes
I should also have mentioned that there is an incredibly weird CF bug
wherein an anonymous block like this in a CFC needs to be all on one
line:

BEGIN statement 1;  etc; END;

or it fails. Outside of a CFC it can be on more than one line (or you
can cfinclude the cfquery tag into the CFC and it still works on more
than one line). No I'm not kidding - I can repeat the bug at will.

-Original Message-
From: Aaron Rouse [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 9 June 2005 7:23 
To: CF-Talk
Subject: Re: Get New Record ID in ORACLE

Oracle 9i and I will have to check when at work as to what it is on the
CF side, but I am pretty sure it is the native CF/Oracle JDBC driver and
think I tested that on CFMX 6.1

~|
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:209077
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: Source control

2005-06-09 Thread Adam Haskell
We're and IBM shop so we use ClearCase but reacently it was announced
we're moving to CVS...we'll see if that happens I think the migration
plan is about 2 years long...and our dept Manager is a Clearcase fan.

Adam H 

On 6/9/05, Sean Corfield [EMAIL PROTECTED] wrote:
 On 6/8/05, Burns, John D [EMAIL PROTECTED] wrote:
  What does everyone use for source control?
 
 CVS. All Macromedia IT code lives under CVS (free). All Macromedia
 product team code lives under Perforce (not free).
 
 FWIW, Eclipse has great CVS integration.
 --
 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:209078
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: Source control

2005-06-09 Thread Calvin Ward
What was the reasoning behind the direction change?

- Calvin


On 6/9/05 8:10 AM, Adam Haskell [EMAIL PROTECTED] wrote:

 We're and IBM shop so we use ClearCase but reacently it was announced
 we're moving to CVS...we'll see if that happens I think the migration
 plan is about 2 years long...and our dept Manager is a Clearcase fan.
 
 Adam H 
 
 On 6/9/05, Sean Corfield [EMAIL PROTECTED] wrote:
 On 6/8/05, Burns, John D [EMAIL PROTECTED] wrote:
 What does everyone use for source control?
 
 CVS. All Macromedia IT code lives under CVS (free). All Macromedia
 product team code lives under Perforce (not free).
 
 FWIW, Eclipse has great CVS integration.
 --
 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:209079
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 and Java Interfaces

2005-06-09 Thread Chris Terrebonne
Thanks Nathan and Barney for clearing this up for me.  

I guess this was as perfect excuse as any to finally learn Java.  Man!  I was 
surprised how simple it was.  I know C++ and I heard that the transition to 
Java was easy, but I had no idea just how easy it was.  I should have done this 
along time ago.  I know this is starting to drift into OT-land but... it's nice 
to just code away without worrying about memory management.  If I never malloc 
again... it will be too soon ;).  

Thanks for the inadvertent push, guys.  

Chris

 [EMAIL PROTECTED] 06/08/05 01:26PM 
Perhaps there's already a java object that impliments this interface? 
Look around to see if there's anything that impliments your target 
class. Otherwise, you could make one in java and createObject() it in CF.

-nathan strutz


Chris Terrebonne wrote:
 I am trying to use CF to access a Java class method.  One of the required 
 arguments is an object extended from an interface.  Using createObject() to 
 instantiate the object, then passing it to the method as an argument causes 
 an error because the interface is abstract and must be extended.  Since 
 cfcomponent won't allow me to extend a Java interface, how can I use this 
 interface?  Any suggestions?
 
 Thanks,
 Chris
 
 
 This email and its attachments may contain confidential information 
 which is intended only for the use of the person(s) named above.  
 If you are not the intended recipient, you are hereby advised that
 any disclosure, copying, distribution or the taking of any action
 based on the contents of this information is prohibited.  If you 
 have received this transmission in error, please notify the sender
 and delete this email from your computer.  Thank you.
 
 
 
 



~|
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:209080
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: Get New Record ID in ORACLE

2005-06-09 Thread RADEMAKERS Tanguy
-Original Message-
Subject: Get New Record ID in ORACLE
From: James Holmes [EMAIL PROTECTED]
Date: Thu, 9 Jun 2005 19:59:22 +0800
Thread: 
http://www.houseoffusion.com/cf_lists/index.cfm/method=messages
threadid=40571forumid=4#209077

I should also have mentioned that there is an incredibly weird CF bug
wherein an anonymous block like this in a CFC needs to be all on one
line:

BEGIN statement 1;  etc; END;

or it fails. Outside of a CFC it can be on more than one line (or you
can cfinclude the cfquery tag into the CFC and it still works on more
than one line). No I'm not kidding - I can repeat the bug at will.

i see the bug outside a CFC as well:

cfquery name=anonplsqltest datasource=trademak
declare
nextid number;
begin
select s.nextval into nextid from dual;
end;
/cfquery

throws
[Macromedia][Oracle JDBC Driver][Oracle]ORA-06550: line 1, column 8:
PLS-00103: Encountered the symbol  when expecting one of the
following: begin function package pragma procedure subtype type use
form current cursor

whereas 

cfquery name=anonplsqltest datasource=trademak
declare nextid number; begin select s.nextval into nextid from dual;
end;
/cfquery

doesn't throw an error.

but it doesn't return anything either: 

cfdump var=#anonplsqltest#

throws

Variable ANONPLSQLTEST is undefined.

so you could use anonymous pl/sql to wrap several statements together in
a single database call, but i don't see how you could use it to get
things out from the db. 


/t

~|
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:209081
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: Source control

2005-06-09 Thread C. Hatton Humphrey
  FWIW, Eclipse has great CVS integration.

I'm also a CVS person here though I've been investigating other
solutions as well.

Also, my Stumbler put me across this site:

http://better-scm.berlios.de/comparison/comparison.html

Not sure who sponsored it or how accurate it is but it's out there for perusal.

Hatton

~|
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:209082
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: Source control

2005-06-09 Thread Damien McKenna
Moving from ClearCase to CVS?  Now *that's* a step backwards.  Go to
Subversion at the very least!

Then again CVSNT has been seriously improving since they threw off their
ties to the core CVS and have added many of CVS's missing features.

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include stdjoke.h
 

 -Original Message-
 From: Adam Haskell [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, June 09, 2005 8:11 AM
 To: CF-Talk
 Subject: Re: Source control
 
 We're and IBM shop so we use ClearCase but reacently it was announced
 we're moving to CVS...

~|
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:209083
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: Source control

2005-06-09 Thread Adam Haskell
Our company is making a big push for Open source tools, they are
mature enough now,  so mostly its cost savings. I don't have the
specifics infront of me but i think the cost savings per developer
were somewhere in the upper thousands. I perfer the move anything is
better than the tools for clearcase in eclipse.  Now if we could just
move away from RUP we'll be in shape ;)


Adam H

On 6/9/05, Calvin Ward [EMAIL PROTECTED] wrote:
 What was the reasoning behind the direction change?
 
 - Calvin
 
 
 On 6/9/05 8:10 AM, Adam Haskell [EMAIL PROTECTED] wrote:
 
  We're and IBM shop so we use ClearCase but reacently it was announced
  we're moving to CVS...we'll see if that happens I think the migration
  plan is about 2 years long...and our dept Manager is a Clearcase fan.
 
  Adam H
 
  On 6/9/05, Sean Corfield [EMAIL PROTECTED] wrote:
  On 6/8/05, Burns, John D [EMAIL PROTECTED] wrote:
  What does everyone use for source control?
 
  CVS. All Macromedia IT code lives under CVS (free). All Macromedia
  product team code lives under Perforce (not free).
 
  FWIW, Eclipse has great CVS integration.
  --
  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:209084
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: Source control

2005-06-09 Thread Adam Haskell
I guess I should clarify that we have a web achitecture group that
basically make recomendations its up to each department/project to
comply with recomendations or to deviate. Generally speaking most of
the departments/projects go with the recomendations. The people that
make these recommendations (I am not part of that nor do I care to be)
took a survey of how Clearcase was being used and they dertimined that
switching  from clearcase to CVS would not result in a precieved loss
of functionality. Some projects were already using CVS here our group
is using clearcase. Perosnally I don't think we use 90% of the
features of clearcase so I imagine we'll see very little difference.
My biggest gripe about clearcase is it is DOG SLOW on our VPN, though
I imagine most source controls will be [slow] on VPN.

Adam H

On 6/9/05, Damien McKenna [EMAIL PROTECTED] wrote:
 Moving from ClearCase to CVS?  Now *that's* a step backwards.  Go to
 Subversion at the very least!
 
 Then again CVSNT has been seriously improving since they threw off their
 ties to the core CVS and have added many of CVS's missing features.
 
 --
 Damien McKenna - Web Developer - [EMAIL PROTECTED]
 The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
 #include stdjoke.h
 
 
  -Original Message-
  From: Adam Haskell [mailto:[EMAIL PROTECTED]
  Sent: Thursday, June 09, 2005 8:11 AM
  To: CF-Talk
  Subject: Re: Source control
 
  We're and IBM shop so we use ClearCase but reacently it was announced
  we're moving to CVS...
 
 

~|
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:209085
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: Source control

2005-06-09 Thread James Holmes
I would agree that SubVersion might be worth considering in place of CVS
in this case. http://subversion.tigris.org lists some of the advantages
of SVN over CVS.

-Original Message-
From: Damien McKenna [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 9 June 2005 9:12 
To: CF-Talk
Subject: RE: Source control

Moving from ClearCase to CVS?  Now *that's* a step backwards.  Go to
Subversion at the very least!

~|
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:209086
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: odd error question

2005-06-09 Thread Tony Weeg
i know, apart from one thing: shared hosting cfmx server @ experthost.com

:(

tw

On 6/9/05, Joe Rinehart [EMAIL PROTECTED] wrote:
 Tony,
 
 If you enable robust exception handling in the CF administrator, it'll
 probably give a much more meaningful error msg.
 
 -Joe
 
 On 6/8/05, Tony Weeg [EMAIL PROTECTED] wrote:
  hi there.
 
  anyone ever seen this error before?
 
   Error Occurred While Processing Request
  The filename, directory name, or volume label syntax is incorrect
 
  Please try the following:
 
  * Enable Robust Exception Information to provide greater detail
  about the source of errors. In the Administrator, click Debugging 
  Logging  Debugging Settings, and select the Robust Exception
  Information option.
  * Check the ColdFusion documentation to verify that you are using
  the correct syntax.
  * Search the Knowledge Base to find a solution to your problem.
 
  Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.8)
  Gecko/20050511 Firefox/1.0.4
  Remote Address  69.250.12.29
  Referrer
  http://www.mydinnercompany.com/menu.cfm?step=approveOrderDetailsCFID=5673CFTOKEN=88435167
  Date/Time   08-Jun-05 11:38 PM
 
 
  --
  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:209087
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: Source control

2005-06-09 Thread Massimo Foti
 Our company is making a big push for Open source tools, they are
 mature enough now,  so mostly its cost savings. I don't have the
 specifics infront of me but i think the cost savings per developer
 were somewhere in the upper thousands. I perfer the move anything is
 better than the tools for clearcase in eclipse.  Now if we could just
 move away from RUP we'll be in shape ;)

If you are starting afresh, I would suggest to consider Subversion instead
of CVS. I understand people with huge CVS repositories and existing
tools/workflow prefer to stick with it instead of moving to Subversion, but
starting with CVS nowadays doesn't makes that much sense to me, Subversion
is a much better alternative.


Massimo Foti
Tools for ColdFusion and Dreamweaver developers:
http://www.massimocorner.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:209088
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: Get New Record ID in ORACLE

2005-06-09 Thread James Holmes
Agreed. I don't use it for anything that gets a result from the DB; I
use it to run procedures like those in the Oracle Text packages, which I
can't get running using CFSTOREDPROC for some reason. 

-Original Message-
From: RADEMAKERS Tanguy [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 9 June 2005 8:26 
To: CF-Talk
Subject: RE: Get New Record ID in ORACLE

[snip]

so you could use anonymous pl/sql to wrap several statements together in
a single database call, but i don't see how you could use it to get
things out from the db. 

~|
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:209089
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: odd error question

2005-06-09 Thread Kerry
hmmm, if you try/catch it and then dump cfcatch, is there more info?

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED]
Sent: 09 June 2005 14:45
To: CF-Talk
Subject: Re: odd error question


i know, apart from one thing: shared hosting cfmx server @ experthost.com

:(

tw

On 6/9/05, Joe Rinehart [EMAIL PROTECTED] wrote:
 Tony,

 If you enable robust exception handling in the CF administrator, it'll
 probably give a much more meaningful error msg.

 -Joe

 On 6/8/05, Tony Weeg [EMAIL PROTECTED] wrote:
  hi there.
 
  anyone ever seen this error before?
 
   Error Occurred While Processing Request
  The filename, directory name, or volume label syntax is incorrect
 
  Please try the following:
 
  * Enable Robust Exception Information to provide greater detail
  about the source of errors. In the Administrator, click Debugging 
  Logging  Debugging Settings, and select the Robust Exception
  Information option.
  * Check the ColdFusion documentation to verify that you are using
  the correct syntax.
  * Search the Knowledge Base to find a solution to your problem.
 
  Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US;
rv:1.7.8)
  Gecko/20050511 Firefox/1.0.4
  Remote Address  69.250.12.29
  Referrer
http://www.mydinnercompany.com/menu.cfm?step=approveOrderDetailsCFID=5673C
FTOKEN=88435167
  Date/Time   08-Jun-05 11:38 PM
 
 
  --
  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:209090
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: odd error question

2005-06-09 Thread Tony Weeg
i got it... last night, actually, just was too tired to forward back
to the list.

it was a misnamed variable or something like that... i forget it was 2 am :(

however, i thank you all VERY kindly for your help, and a good day to you all!

tony

On 6/9/05, Kerry [EMAIL PROTECTED] wrote:
 hmmm, if you try/catch it and then dump cfcatch, is there more info?
 
 -Original Message-
 From: Tony Weeg [mailto:[EMAIL PROTECTED]
 Sent: 09 June 2005 14:45
 To: CF-Talk
 Subject: Re: odd error question
 
 
 i know, apart from one thing: shared hosting cfmx server @ experthost.com
 
 :(
 
 tw
 
 On 6/9/05, Joe Rinehart [EMAIL PROTECTED] wrote:
  Tony,
 
  If you enable robust exception handling in the CF administrator, it'll
  probably give a much more meaningful error msg.
 
  -Joe
 
  On 6/8/05, Tony Weeg [EMAIL PROTECTED] wrote:
   hi there.
  
   anyone ever seen this error before?
  
Error Occurred While Processing Request
   The filename, directory name, or volume label syntax is incorrect
  
   Please try the following:
  
   * Enable Robust Exception Information to provide greater detail
   about the source of errors. In the Administrator, click Debugging 
   Logging  Debugging Settings, and select the Robust Exception
   Information option.
   * Check the ColdFusion documentation to verify that you are using
   the correct syntax.
   * Search the Knowledge Base to find a solution to your problem.
  
   Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US;
 rv:1.7.8)
   Gecko/20050511 Firefox/1.0.4
   Remote Address  69.250.12.29
   Referrer
 http://www.mydinnercompany.com/menu.cfm?step=approveOrderDetailsCFID=5673C
 FTOKEN=88435167
   Date/Time   08-Jun-05 11:38 PM
  
  
   --
   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:209091
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


Crystal reports

2005-06-09 Thread Andy Jarrett
Is anyone actually using CR XI on CFMX 6.1 or CFMX 7? 

Andy

 Hi there,
 
 I cant seem to find this anywere but is it possible to pass parameters 
 to Crystal (11) via CFMX 6.1?
 
 The report is expecting an ID to be passed to it i.e. 200 which in 
 turn passes to a Stored Procedure (on MSSQL) to create the query.
 
 Cheers for any help
 
 Andy J
 www.andyjarrrett.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:209092
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: Get New Record ID in ORACLE

2005-06-09 Thread Aaron Rouse
I did not try it in a CFC and did not try it all within one line so guessing 
that is why it failed for me. I actually have no real need for it, just 
always been something I have wondered how to get working.

On 6/9/05, RADEMAKERS Tanguy [EMAIL PROTECTED] wrote: 
 
 
 i see the bug outside a CFC as well:
 
 cfquery name=anonplsqltest datasource=trademak
 declare
 nextid number;
 begin
 select s.nextval into nextid from dual;
 end;
 /cfquery
 
 throws
 [Macromedia][Oracle JDBC Driver][Oracle]ORA-06550: line 1, column 8:
 PLS-00103: Encountered the symbol  when expecting one of the
 following: begin function package pragma procedure subtype type use
 form current cursor
 
 whereas
 
 cfquery name=anonplsqltest datasource=trademak
 declare nextid number; begin select s.nextval into nextid from dual;
 end;
 /cfquery
 
 doesn't throw an error.
 
 but it doesn't return anything either:
 
 cfdump var=#anonplsqltest#
 
 throws
 
 Variable ANONPLSQLTEST is undefined.
 
 so you could use anonymous pl/sql to wrap several statements together in
 a single database call, but i don't see how you could use it to get
 things out from the db.
 
 
 /t
 



~|
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:209093
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: Source control

2005-06-09 Thread SStewart
Just to backpedal for a second, didn't someone metion one that integrates with 
Dreamweaver. I'm just discovering that I should've paid attention to this thread

Scott A. Stewart, 
Web Application Developer
 
Engineering Consulting Services, Ltd. (ECS)
14026 Thunderbolt Place, Suite 300
Chantilly, VA 20151
Phone: (703) 995-1737
Fax: (703) 834-5527


 

-- 
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.6.6 - Release Date: 06/08/2005
 

~|
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:209094
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


how to post

2005-06-09 Thread stylo stylo
I posted on the server forum, but never showed up. How to post? (Checking if 
this one works.) 

Where's the sign in? Where's the account profile?

~|
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:209095
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


a simple xml question

2005-06-09 Thread Ida Chen
I am new to cfc/xml. When I tried to create a simple cfc function that returns 
an xml object and tried to call it in a cfm page, the page returned some weird 
strings instead of the string I put in the testing xml. Can anyone help me 
correct errors? Thanks. The code is below:

cfc:
cfcomponent
  cffunction name=simpleXml access=public returntype=xml
cfxml variable=xmlobject
  testthis is a test/test
/cfxml
cfreturn xmlobject
  /cffunction
/cfcomponent

cfm:
cfobject name=myCFC component=testcfc
cfset testxml= myCFC.simpleXml
cfoutput#toString(testxml)#/cfoutput


the weird string that is returned is something like this:
textxml [EMAIL PROTECTED]


thanks again

~|
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:209096
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: Source control

2005-06-09 Thread Adam Haskell
Like I said I am not part of the team that makes those
decisions/recommendations nor do I want to be part of that team. I'm
going to take a wild stab and say that subversion was not around long
enough to be considered mature enough for the company. If there's no
migration path from Clearcase to Subversion then that might be another
reason they did not want to use it.  Like I said though I don't know.
For all I know no one knows about subversion; maybe I'll ask around
and see. There seems to be a lot of uniformed people around here.

Adam H 
On 6/9/05, Massimo Foti [EMAIL PROTECTED] wrote:
  Our company is making a big push for Open source tools, they are
  mature enough now,  so mostly its cost savings. I don't have the
  specifics infront of me but i think the cost savings per developer
  were somewhere in the upper thousands. I perfer the move anything is
  better than the tools for clearcase in eclipse.  Now if we could just
  move away from RUP we'll be in shape ;)
 
 If you are starting afresh, I would suggest to consider Subversion instead
 of CVS. I understand people with huge CVS repositories and existing
 tools/workflow prefer to stick with it instead of moving to Subversion, but
 starting with CVS nowadays doesn't makes that much sense to me, Subversion
 is a much better alternative.
 
 
 Massimo Foti
 Tools for ColdFusion and Dreamweaver developers:
 http://www.massimocorner.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:209097
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


why can you post on this site, but no indication it fails?

2005-06-09 Thread stylo stylo
This forum is badly confusing. I posted a few times, nothing ever showed up. No 
sign in link, nothing, so figured I must be logged in by cookie. Finally 
tracked down the signin under site map.

Why no check before posting? No sign in/account link?

~|
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:209098
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: odd error question

2005-06-09 Thread Deanna Schneider
I've gotten that one before...now if I could only remember why.

On 6/8/05, Tony Weeg [EMAIL PROTECTED] wrote:
 hi there.
 
 anyone ever seen this error before?
 
  Error Occurred While Processing Request
 The filename, directory name, or volume label syntax is incorrect
 
 Please try the following:
 
 * Enable Robust Exception Information to provide greater detail
 about the source of errors. In the Administrator, click Debugging 
 Logging  Debugging Settings, and select the Robust Exception
 Information option.
 * Check the ColdFusion documentation to verify that you are using
 the correct syntax.
 * Search the Knowledge Base to find a solution to your problem.
 
 Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.8)
 Gecko/20050511 Firefox/1.0.4
 Remote Address  69.250.12.29
 Referrer
 http://www.mydinnercompany.com/menu.cfm?step=approveOrderDetailsCFID=5673CFTOKEN=88435167
 Date/Time   08-Jun-05 11:38 PM
 
 
 --
 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
 
 

~|
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:209099
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


why can you post on this site, but no indication it fails?

2005-06-09 Thread stylo stylo
Weird, my other thread below showed up after I signed in.

~|
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:209100
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: Source control PLUS Deployment control...

2005-06-09 Thread Jeff Waris
I've been following this thread a bit and was wondering if anyone was in the
same boat as I am. 

Right now we run VSS as version control of various CFM's in our test
environment. (VSS isn't necessarily our future as it was here before I was
and it really isn't suited for what we need for the future)

I have an added dilemma to this. I have two separate production environments
that I have to keep synced with changes. This can become daunting sometimes
figuring out what changes have deployed to what production environment.
Technically they should be synced, but that isn't always the case. It would
be nice to be able to see what's been deployed where at any given time.

I have more twists in this pretzel but that's the largest...
-I run sql server here and it would be nice to also be able to keep track of
the changes and deployment status of SQL
-A ticketing system that can handle requests from our users and a ticketing
system that can handle internal tickets for our internal fixes and upgrades.

-A web based interface for the ticketing systems that allows our users to
see only their tickets and their statuses.

Does something like this even exist??? I am sure I am not the only one in
the universe that needs to keep track of deployment as well as version
control of the actual programs...

Anyone have any recommendations??

Jeff 


~|
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:209102
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 post

2005-06-09 Thread Aldon
It works

-Original Message-
From: stylo stylo [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 09, 2005 11:03 AM
To: CF-Talk
Subject: how to post


I posted on the server forum, but never showed up. How to post? (Checking if
this one works.)

Where's the sign in? Where's the account profile?



~|
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:209101
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: Source control

2005-06-09 Thread Massimo Foti
 Like I said I am not part of the team that makes those
 decisions/recommendations nor do I want to be part of that team. I'm
 going to take a wild stab and say that subversion was not around long
 enough to be considered mature enough for the company. If there's no
 migration path from Clearcase to Subversion then that might be another
 reason they did not want to use it.  Like I said though I don't know.
 For all I know no one knows about subversion; maybe I'll ask around
 and see. There seems to be a lot of uniformed people around here.

Well... Good luck. :-)))
In the past I've worked for large organizations, so I understand your
position


Massimo Foti
Tools for ColdFusion and Dreamweaver developers:
http://www.massimocorner.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:209103
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: a simple xml question

2005-06-09 Thread Kerry
Function calls need brackets:

cfset testxml= myCFC.simpleXml()

-Original Message-
From: Ida Chen [mailto:[EMAIL PROTECTED]
Sent: 09 June 2005 16:05
To: CF-Talk
Subject: a simple xml question


I am new to cfc/xml. When I tried to create a simple cfc function that
returns an xml object and tried to call it in a cfm page, the page returned
some weird strings instead of the string I put in the testing xml. Can
anyone help me correct errors? Thanks. The code is below:

cfc:
cfcomponent
  cffunction name=simpleXml access=public returntype=xml
cfxml variable=xmlobject
  testthis is a test/test
/cfxml
cfreturn xmlobject
  /cffunction
/cfcomponent

cfm:
cfobject name=myCFC component=testcfc
cfset testxml= myCFC.simpleXml
cfoutput#toString(testxml)#/cfoutput


the weird string that is returned is something like this:
textxml [EMAIL PROTECTED]


thanks again



~|
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:209104
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


jar launcher crashes randomly

2005-06-09 Thread stylo stylo
xp, cfmx 6.1.

I get a random error popping up about jar launcher had to close on my local 
machine. Usually when starting the computer, or at random times, nothing to do 
with accessing a site even. Usually I can then access a site after a moment 
(restarting the service?); sometimes it says service unavailable or some such 
thing, and have to reboot. No other problems.

Sending in the error to MS they say it is Java and Sun's problem.

I recently reinstalled xp, and no change.

Only thing different in my setup is I put cfdocs/cfid in f:\web. My webroot is 
F:\.

The report for MS is:

Server=watson.microsoft.com
UI LCID=1033
Flags=1672016
Brand=WINDOWS
TitleName=JAR Launcher
DigPidRegPath=HKLM\Software\Microsoft\Windows NT\CurrentVersion\DigitalProductId
ErrorText=If you were in the middle of something, the information you were 
working on might be lost.
Stage1URL=
Stage1URL=/StageOne/jrun_exe/4_0_0_63824/jvm_dll/0_0_0_0/0015755c.htm
Stage2URL=
Stage2URL=/dw/stagetwo.asp?szAppName=jrun.exeszAppVer=4.0.0.63824szModName=jvm.dllszModVer=0.0.0.0offset=0015755c
DataFiles=C:\DOCUME~1\username\LOCALS~1\Temp\WER3ebb.dir00\jrun.exe.mdmp|C:\DOCUME~1\stylo\LOCALS~1\Temp\WER3ebb.dir00\appcompat.txt
Heap=C:\DOCUME~1\username\LOCALS~1\Temp\WER3ebb.dir00\jrun.exe.hdmp
ErrorSubPath=jrun.exe\4.0.0.63824\jvm.dll\0.0.0.0\0015755c
DirectoryDelete=C:\DOCUME~1\username\LOCALS~1\Temp\WER3ebb.dir00

Any idea why?

~|
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:209105
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 post

2005-06-09 Thread stylo stylo
It works

Yeah, see other thread. This one showed up after I signed in. Or maybe I just 
can't post on the other list. But there needs to be an indication of some sort 
if you can't post.

~|
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:209106
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: Statistical Functions and Boxplots

2005-06-09 Thread Nick de Voil
 I have a client who wants some data represented by boxplots.
 I've been unable to find software for CF which will automatically
calculate
 and graph the required information (upper quartile, lower quartile,
median)
 from raw data passed, so I need to find a way of performing these
 calculations myself and pass them to the graph software.

We have a customer that we calculate quartiles for (CF6.1, SS2K) and in that
application we draw line graphs and bar charts using jFreeChart, which I
believe can do boxplots although we don't currently use that part of it.
Worth a look if you don't mind doing Java.

Quartiles are not what you said. In colloquial use they are what Jochem
said, but our customer says

a) it is one value, not a set of values
b) the algorithm used by Excel is wrong

As you know, the customer is always right. We do it their way, with some CF
and SQL which is rather slow but not very complicated.

Nick




~|
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:209107
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 post

2005-06-09 Thread Aminova, Elena
There is an indication, they send an email out to you, if you are logged
in, but not signed up for that particular list. At least I got an email
when I didn't sign up for the list and tried to post a message. 

-Original Message-
From: stylo stylo [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 09, 2005 11:18 AM
To: CF-Talk
Subject: RE: how to post

It works

Yeah, see other thread. This one showed up after I signed in. Or maybe I
just can't post on the other list. But there needs to be an indication
of some sort if you can't post.



~|
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:209108
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: a simple xml question

2005-06-09 Thread Ida Chen
I corrected the error. When I reload the page, it says the value returned from 
function simpleXml() is not of type xml. why is that?

~|
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:209109
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 post

2005-06-09 Thread Adrian Lynch
But posting a message and then being told you can't post via email is
annoying don't you think?

Ade

-Original Message-
From: Aminova, Elena [mailto:[EMAIL PROTECTED]
Sent: 09 June 2005 16:25
To: CF-Talk
Subject: RE: how to post


There is an indication, they send an email out to you, if you are logged
in, but not signed up for that particular list. At least I got an email
when I didn't sign up for the list and tried to post a message.

-Original Message-
From: stylo stylo [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 09, 2005 11:18 AM
To: CF-Talk
Subject: RE: how to post

It works

Yeah, see other thread. This one showed up after I signed in. Or maybe I
just can't post on the other list. But there needs to be an indication
of some sort if you can't post.
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.6.6 - Release Date: 08/06/2005


~|
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:209110
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


Sharepoint

2005-06-09 Thread Gruss Gott
Hi - Anybody know if CF is compatible with Sharepoint?  I don't know
anything about Sharepoint so any help is appreciated.

Thanks!
Kris

~|
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:209111
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


cfhttp.filecontent help!

2005-06-09 Thread Aldon Moore
I am using cfhttp to retreive data from another server that is returned as 
name/value pairs delimited by  eg:

a=1b=2c=thats all. 

How do I assign each of these values to its own variable?

~|
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:209112
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: Storyboard Tool

2005-06-09 Thread Hugo Ahlenius
I have a tablet PC, and I have experimented a little bit with DENIM - I
think it looks very cool, and  I think it would be a big hit with a
tablet + projector for a brainstorm with a client.

--
Hugo Ahlenius

-
Hugo Ahlenius  E-Mail: [EMAIL PROTECTED]
Project OfficerPhone:+46 8 230460
UNEP GRID-Arendal  Fax:  +46 8 230441
Stockholm Office   Mobile: +46 733 467111
   WWW:   http://www.grida.no
- 

  

|-Original Message-
|From: Jim Davis [mailto:[EMAIL PROTECTED]
|Sent: Friday, June 03, 2005 21:13
|To: CF-Talk
|Subject: RE: Storyboard Tool
|
|For very simple storyboarding nothing beats demin
|
|http://dub.washington.edu/denim/
|
|It essentially lets you sketch pages and link them together into 
|working, clickable workflow systems.
|
|Very simple, but very slick.
|
|Jim Davis
|
|
|
|
|

~|
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:209113
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: odd error question

2005-06-09 Thread Tony Weeg
this exact reason was:

cfinclude template=http://www.mydinnercompany.com/stylesheet.css;

where the cfinclude wants a real path on a server, not a url

:) tw

On 6/9/05, Deanna Schneider [EMAIL PROTECTED] wrote:
 I've gotten that one before...now if I could only remember why.
 
 On 6/8/05, Tony Weeg [EMAIL PROTECTED] wrote:
  hi there.
 
  anyone ever seen this error before?
 
   Error Occurred While Processing Request
  The filename, directory name, or volume label syntax is incorrect
 
  Please try the following:
 
  * Enable Robust Exception Information to provide greater detail
  about the source of errors. In the Administrator, click Debugging 
  Logging  Debugging Settings, and select the Robust Exception
  Information option.
  * Check the ColdFusion documentation to verify that you are using
  the correct syntax.
  * Search the Knowledge Base to find a solution to your problem.
 
  Browser Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.8)
  Gecko/20050511 Firefox/1.0.4
  Remote Address  69.250.12.29
  Referrer
  http://www.mydinnercompany.com/menu.cfm?step=approveOrderDetailsCFID=5673CFTOKEN=88435167
  Date/Time   08-Jun-05 11:38 PM
 
 
  --
  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:209114
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.filecontent help!

2005-06-09 Thread Charlie Griefer
treat the string as a list, delimited by .
treat each list item as a 'nested' list delimited by =

are you just trying to extrapolate 1, 2, and thats all and
assign those values to your own variables?

On 6/9/05, Aldon Moore [EMAIL PROTECTED] wrote:
 I am using cfhttp to retreive data from another server that is returned as 
 name/value pairs delimited by  eg:
 
 a=1b=2c=thats all.
 
 How do I assign each of these values to its own variable?
 
 

~|
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:209115
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


Upgrade from CFMX (6.1x) to CF7...

2005-06-09 Thread jonese
I know this has been asked before but my searching skills can't seem to pull 
up the data i'm looking for.
 We have a Development server running CF6 and we need to upgrade it to CF7. 
What are the recommended steps for doing this inplace. IE without losing 
data settings etc?
 Should i just install CF7 and have it overwrite the current files? or 
install it to a new location and then just make a switch of folders etc?
 TIA.
jonese


~|
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:209116
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: odd error question

2005-06-09 Thread S . Isaac Dealey
I got that one yesterday -- I'd interposed the arguments of one of my
functions and was trying to read a file where the directory was a
string of XML. :P

 this exact reason was:

 cfinclude
 template=http://www.mydinnercompany.com/stylesheet.css;

 where the cfinclude wants a real path on a server, not a
 url

 :) tw

 On 6/9/05, Deanna Schneider [EMAIL PROTECTED]
 wrote:
 I've gotten that one before...now if I could only
 remember why.

 On 6/8/05, Tony Weeg [EMAIL PROTECTED] wrote:
  hi there.
 
  anyone ever seen this error before?
 
   Error Occurred While Processing Request
  The filename, directory name, or volume label syntax is
  incorrect
 
  Please try the following:
 
  * Enable Robust Exception Information to provide
  greater detail
  about the source of errors. In the Administrator, click
  Debugging 
  Logging  Debugging Settings, and select the Robust
  Exception
  Information option.
  * Check the ColdFusion documentation to verify that
  you are using
  the correct syntax.
  * Search the Knowledge Base to find a solution to
  your problem.
 
  Browser Mozilla/5.0 (Windows; U; Windows NT
  5.1; en-US; rv:1.7.8)
  Gecko/20050511 Firefox/1.0.4
  Remote Address  69.250.12.29
  Referrerhttp://www.mydinnercompany.com/menu.cfm
  ?step=approveOrderDetailsCFID=5673CFTOKEN=88435167
  Date/Time   08-Jun-05 11:38 PM


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://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
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:209117
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: Macromedia bug list

2005-06-09 Thread Bryan Stevenson
Thanks Dave ;-)

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: Dave Carabetta [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, June 08, 2005 6:23 PM
Subject: Re: Macromedia bug list


 On 6/8/05, Bryan Stevenson [EMAIL PROTECTED] wrote:
 Hey All,

 I know there is the wishlist for reporting bugs and making feature 
 requests.but is there somewhere to view a list of potential bugs that 
 have been reported?


 As Dave Watts noted, there isn't a publicly searchable bug base, per
 se. However, there is a confirmed issues for MX 7 TechNote that may
 help out. A search of MM.com might turn up a similar document for MX
 6.1.

 http://www.macromedia.com/go/f7447c40

 Regards,
 Dave.

 

~|
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:209118
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: Upgrade from CFMX (6.1x) to CF7...

2005-06-09 Thread S . Isaac Dealey
 I know this has been asked before but my searching skills
 can't seem to pull
 up the data i'm looking for.
  We have a Development server running CF6 and we need to
  upgrade it to CF7.
 What are the recommended steps for doing this inplace. IE
 without losing
 data settings etc?
  Should i just install CF7 and have it overwrite the
  current files? or
 install it to a new location and then just make a switch
 of folders etc?
  TIA.
 jonese

I had pretty good luck installing CF7 in tandem mode (I don't remember
what the official term is) and allowing it to import the settings from
6.1 -- with the exception that I had to manually submit the debugging
page to get the debugging settings to take effect. Plus some issues
with log files, but I'm not sure that's related to the installation --
I'm guessing it's not, and someone else said they thought there might
be a bug with them.


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://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
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:209119
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: Sharepoint

2005-06-09 Thread Dawson, Michael
As far as I can tell, there is no compatibility other than maybe through
web services.  In SP, you may need to create a custom element (I forget
their term), using .Net, to talk to a web service.

MS also greatly requires web server/browser authentication.  I don't
know if there is a way to use domain cookies to pass authentication
from, let's say, a ColdFusion page.

rant
Personally, SP has major issues with UI design.  I tried a simple
survey, which was very easy to create, but the users absolutely hated it
and reverted to a crappy survey that was written in FrontPage.

To me, SP is great for sharing documents in a workgroup setting, but
it's not made for distributing communication to larger audiences.  No
one wants to have to log in to SP just to read the news.
/rant

M!ke

-Original Message-
From: Gruss Gott [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 09, 2005 10:35 AM
To: CF-Talk
Subject: Sharepoint

Hi - Anybody know if CF is compatible with Sharepoint?  I don't know
anything about Sharepoint so any help is appreciated.

Thanks!
Kris

~|
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:209120
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


Upgrade from CFMX (6.1x) to CF7...

2005-06-09 Thread Robert Munn
I'm not sure what you can do for Professional, but if you are running 
Enterprise (or the Developer version) in Dev, you can use the Archive and 
Deploy feature of the CF Admin to save almost all of the settings in the 
installation in one shot. Then you just uninstall 6, install 7, deploy the 
archive, and presto! Your settings are restored. It's great if you have a lot 
of detailed settings in the system.

One note- you can't migrate CF 6 Verity collection to CF 7, they have to be 
re-built manually.

I know this has been asked before but my searching skills can't seem to pull 
up the data i'm looking for.
 We have a Development server running CF6 and we need to upgrade it to CF7. 
What are the recommended steps for doing this inplace. IE without losing 
data settings etc?
 Should i just install CF7 and have it overwrite the current files? or 
install it to a new location and then just make a switch of folders etc?
 TIA.
jonese

~|
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:209121
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


SOT: Mulitple FCKEditor Instances Firefox issues

2005-06-09 Thread jonese
We have a form with two instances of the FCKeditor running. In IE everything 
works as expected (users can edit and add data to both WYSIWYG) but in 
firefox users can only manipulate the second instance and can't do anything 
in the first instance.
 Has anyone had any issues similar to this and if so how did you get around 
it?
 jonese


~|
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:209122
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


js help -drop down menus

2005-06-09 Thread Tim Laureska
Does anyone have a few minutes to help with understanding the javascript
at 
http://www.cfug-sfl.org/readArticle.cfm?id=24

for implementation of a similar scenario on a site

Tim 



~|
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:209123
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: Sharepoint

2005-06-09 Thread Dave Watts
 MS also greatly requires web server/browser authentication.  I don't
 know if there is a way to use domain cookies to pass authentication
 from, let's say, a ColdFusion page.

If you're running CF on the same machine as Sharepoint, you can use Windows
authentication for your CF apps as well I suppose.

 To me, SP is great for sharing documents in a workgroup setting, but
 it's not made for distributing communication to larger audiences.

No, for that Microsoft has their MCMS product, which can be used in
conjunction with Sharepoint.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!


~|
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:209124
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 post

2005-06-09 Thread Aminova, Elena
I totally agree with you... 

-Original Message-
From: Adrian Lynch [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 09, 2005 11:33 AM
To: CF-Talk
Subject: RE: how to post

But posting a message and then being told you can't post via email is
annoying don't you think?

Ade

-Original Message-
From: Aminova, Elena [mailto:[EMAIL PROTECTED]
Sent: 09 June 2005 16:25
To: CF-Talk
Subject: RE: how to post


There is an indication, they send an email out to you, if you are logged
in, but not signed up for that particular list. At least I got an email
when I didn't sign up for the list and tried to post a message.

-Original Message-
From: stylo stylo [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 09, 2005 11:18 AM
To: CF-Talk
Subject: RE: how to post

It works

Yeah, see other thread. This one showed up after I signed in. Or maybe I
just can't post on the other list. But there needs to be an indication
of some sort if you can't post.
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.6.6 - Release Date: 08/06/2005




~|
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:209126
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: Mulitple FCKEditor Instances Firefox issues

2005-06-09 Thread Kerry
hmmm, just tried it with three instances, no problems.
fckeditor 2.0
firefox 1.0.4

-Original Message-
From: jonese [mailto:[EMAIL PROTECTED]
Sent: 09 June 2005 17:30
To: CF-Talk
Subject: SOT: Mulitple FCKEditor Instances  Firefox issues


We have a form with two instances of the FCKeditor running. In IE everything
works as expected (users can edit and add data to both WYSIWYG) but in
firefox users can only manipulate the second instance and can't do anything
in the first instance.
 Has anyone had any issues similar to this and if so how did you get around
it?
 jonese




~|
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:209125
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 and Java Interfaces

2005-06-09 Thread Barney Boisvert
While we're on the topic..

If you find yourself doing Java, the Eclipse IDE is a great platform
for it.  And there's the CFEclipse plugin that includes CF editors and
various other things, so you can do your CF work in the same
application.  And it itegrates easily with myriad version control
systems too.  Very nice package.

cheers,
barneyb

On 6/9/05, Chris Terrebonne [EMAIL PROTECTED] wrote:
 Thanks Nathan and Barney for clearing this up for me.
 
 I guess this was as perfect excuse as any to finally learn Java.  Man!  I was 
 surprised how simple it was.  I know C++ and I heard that the transition to 
 Java was easy, but I had no idea just how easy it was.  I should have done 
 this along time ago.  I know this is starting to drift into OT-land but... 
 it's nice to just code away without worrying about memory management.  If I 
 never malloc again... it will be too soon ;).
 
 Thanks for the inadvertent push, guys.
 
 Chris


-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
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:209127
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: Source control

2005-06-09 Thread Calvin Ward
Subversion, Clearcase and CVS do not integrate with Dreamweaver, although
there are potentially extensions that say they support those Source Control
systems, that doesn't mean they are good solutions.

For that matter, I think the only SC system that is out of the box supported
is VSS, but not the SCCI interface (which products like Clearcase seem to
support).

Working with Dreamweaver and a Source Control system seems to be a
challenge.

On the other hand, CVS support is built into Eclipse (and there's a plugin
for Clearcase).

- Calvin


On 6/9/05 10:52 AM, SStewart [EMAIL PROTECTED] wrote:

 Just to backpedal for a second, didn't someone metion one that integrates with
 Dreamweaver. I'm just discovering that I should've paid attention to this
 thread
 
 Scott A. Stewart,
 Web Application Developer
  
 Engineering Consulting Services, Ltd. (ECS)
 14026 Thunderbolt Place, Suite 300
 Chantilly, VA 20151
 Phone: (703) 995-1737
 Fax: (703) 834-5527
 
 
  



~|
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:209128
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: Source control PLUS Deployment control...

2005-06-09 Thread Calvin Ward
I wrote some of what you've described for an internal application (a
prototype) for a company that I used to work for, my current company also
has a custom built tool for migration management.

I don't think it is unheard of at all.

I couldn't really recommend a commercial/open source solution for this
though, as I haven't had experience with any of them lately.

- Calvin


On 6/9/05 11:04 AM, Jeff Waris [EMAIL PROTECTED] wrote:

 I've been following this thread a bit and was wondering if anyone was in the
 same boat as I am.
 
 Right now we run VSS as version control of various CFM's in our test
 environment. (VSS isn't necessarily our future as it was here before I was
 and it really isn't suited for what we need for the future)
 
 I have an added dilemma to this. I have two separate production environments
 that I have to keep synced with changes. This can become daunting sometimes
 figuring out what changes have deployed to what production environment.
 Technically they should be synced, but that isn't always the case. It would
 be nice to be able to see what's been deployed where at any given time.
 
 I have more twists in this pretzel but that's the largest...
 -I run sql server here and it would be nice to also be able to keep track of
 the changes and deployment status of SQL
 -A ticketing system that can handle requests from our users and a ticketing
 system that can handle internal tickets for our internal fixes and upgrades.
 
 -A web based interface for the ticketing systems that allows our users to
 see only their tickets and their statuses.
 
 Does something like this even exist??? I am sure I am not the only one in
 the universe that needs to keep track of deployment as well as version
 control of the actual programs...
 
 Anyone have any recommendations??
 
 Jeff 
 
 
 

~|
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:209129
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: js help -drop down menus

2005-06-09 Thread Tim Laureska
OK... maybe I'll try to break it down then ...

Not familiar with CFMODULE -  could someone explain what this is
doing...

cfmodule template=qry_GetSubCategories.cfm
FK_tblCategories = #GetCategories.Name#

 I understand its calling qry_GetSubCategories.cfm, but don't get the
2nd half (FK_tblCategories = #GetCategories.Name#):  







-Original Message-
From: Tim Laureska [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 09, 2005 12:46 PM
To: CF-Talk
Subject: js help -drop down menus

Does anyone have a few minutes to help with understanding the javascript
at 
http://www.cfug-sfl.org/readArticle.cfm?id=24

for implementation of a similar scenario on a site

Tim 





~|
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:209130
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: Source control

2005-06-09 Thread Damien McKenna
 For that matter, I think the only SC system that is out of 
 the box supported is VSS, but not the SCCI interface (which
 products like Clearcase seem to support).

Correct - DW is I think the only development tool I know of that works
*directly* with the VSS *database* instead of using the API (SCCI), and
its mighty frustrating.  Maybe they'll change that in DWMX2006?

-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
#include stdjoke.h

~|
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:209131
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: Source control PLUS Deployment control...

2005-06-09 Thread Barney Boisvert
For the first point, you can use your version control system to keep
both deployments in sync.  Just have your production boxes check out a
working copy of your production branch, and then when you make
changes, run an 'update' on both of them.

Or you could take a different tack (what we do for our clusters).  We
have a single master server that we push all updates to.  That server,
as part of recieving updates, ensure that they are propogated to all
other machines, both in the cluster it's a member of, and our backup
cluster at a different datacenter.  So when we add a new machine, we
register it as a slave with the master server, and it immediately gets
all updates that are passed to the master.  It works really well, as
long as having all your servers updated at the same time is a
reasonable course of action (which is not the case a lot of times).

cheers,
barneyb

On 6/9/05, Jeff Waris [EMAIL PROTECTED] wrote:
 I've been following this thread a bit and was wondering if anyone was in the
 same boat as I am.
 
 Right now we run VSS as version control of various CFM's in our test
 environment. (VSS isn't necessarily our future as it was here before I was
 and it really isn't suited for what we need for the future)
 
 I have an added dilemma to this. I have two separate production environments
 that I have to keep synced with changes. This can become daunting sometimes
 figuring out what changes have deployed to what production environment.
 Technically they should be synced, but that isn't always the case. It would
 be nice to be able to see what's been deployed where at any given time.
 
 snip /

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
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:209132
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: cfhttp.filecontent help!

2005-06-09 Thread Aldon
Thanks Charlie,

Yes I am trying to extrapolate the values and assing them to my variables.



-Original Message-
From: Charlie Griefer [mailto:[EMAIL PROTECTED]
Sent: Thursday, June 09, 2005 11:58 AM
To: CF-Talk
Subject: Re: cfhttp.filecontent help!


treat the string as a list, delimited by .
treat each list item as a 'nested' list delimited by =

are you just trying to extrapolate 1, 2, and thats all and
assign those values to your own variables?

On 6/9/05, Aldon Moore [EMAIL PROTECTED] wrote:
 I am using cfhttp to retreive data from another server that is returned as
name/value pairs delimited by  eg:

 a=1b=2c=thats all.

 How do I assign each of these values to its own variable?





~|
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:209133
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: Source control PLUS Deployment control...

2005-06-09 Thread Russ
Does Homesite+/CFStudio have any CVS support (especially for subversion?).
We're planning to move to SVN from developing from ftp, but wondering how to
set the whole thing up.  

We have a development server, where all the changes are made and tested by
editing the files directly through ftp and testing them through the web
browser.  When they're ready, we ftp them over to the production server and
use Araxis Merge to compare the changes with the old files and merge them
(just for safety, and also certain files only get parts of them deployed,
such as the cfc files which contain all the DAO logic).  

How can we make this type of set up work with SVN?  I mean if we retrieve a
file from CVS through Homesite+ or CFEClipse, how do we save the file to the
dev server so that we can test it, and then when we're done, how do we
deploy the changes to production?   Is this even possible?  

Russ

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 09, 2005 1:17 PM
To: CF-Talk
Subject: Re: Source control PLUS Deployment control...

For the first point, you can use your version control system to keep
both deployments in sync.  Just have your production boxes check out a
working copy of your production branch, and then when you make
changes, run an 'update' on both of them.

Or you could take a different tack (what we do for our clusters).  We
have a single master server that we push all updates to.  That server,
as part of recieving updates, ensure that they are propogated to all
other machines, both in the cluster it's a member of, and our backup
cluster at a different datacenter.  So when we add a new machine, we
register it as a slave with the master server, and it immediately gets
all updates that are passed to the master.  It works really well, as
long as having all your servers updated at the same time is a
reasonable course of action (which is not the case a lot of times).

cheers,
barneyb

On 6/9/05, Jeff Waris [EMAIL PROTECTED] wrote:
 I've been following this thread a bit and was wondering if anyone was in
the
 same boat as I am.
 
 Right now we run VSS as version control of various CFM's in our test
 environment. (VSS isn't necessarily our future as it was here before I was
 and it really isn't suited for what we need for the future)
 
 I have an added dilemma to this. I have two separate production
environments
 that I have to keep synced with changes. This can become daunting
sometimes
 figuring out what changes have deployed to what production environment.
 Technically they should be synced, but that isn't always the case. It
would
 be nice to be able to see what's been deployed where at any given time.
 
 snip /

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.



~|
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:209134
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: Source control

2005-06-09 Thread Calvin Ward
I hope so... It seems to me if they used the API, then the tool would more
easily, if not out of the box, work with SC systems that support the SCCI
interface.

Of course, if anyone else feels like this is a worthy suggestion,
http://www.macromedia.com/go/wish !

- Calvin


On 6/9/05 1:16 PM, Damien McKenna [EMAIL PROTECTED] wrote:

 For that matter, I think the only SC system that is out of
 the box supported is VSS, but not the SCCI interface (which
 products like Clearcase seem to support).
 
 Correct - DW is I think the only development tool I know of that works
 *directly* with the VSS *database* instead of using the API (SCCI), and
 its mighty frustrating.  Maybe they'll change that in DWMX2006?



~|
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:209135
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: js help -drop down menus

2005-06-09 Thread Dave Watts
 Not familiar with CFMODULE -  could someone explain what this is
 doing...
 
 cfmodule template=qry_GetSubCategories.cfm
 FK_tblCategories = #GetCategories.Name#
 
  I understand its calling qry_GetSubCategories.cfm, but don't get the
 2nd half (FK_tblCategories = #GetCategories.Name#): 

The CFMODULE tag lets you call custom tags, so for your purposes the above
is identical to this:

cf_qry_getSubCategories FK_tblCategories=#GetCategories.Name#

The second half is simply an attribute which will then be available within
the custom tag. You would have to open qry_getSubCategories.cfm to see what
it's doing with Attributes.FK_tblCategories to know exactly what the
attribute is for. Presumably, the custom tag uses this attribute to figure
out for which category or categories it should get subcategories.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized 
instruction at our training centers in Washington DC, Atlanta, 
Chicago, Baltimore, Northern Virginia, or on-site at your location. 
Visit http://training.figleaf.com/ for more information!


~|
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:209136
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: js help -drop down menus

2005-06-09 Thread Deanna Schneider
cfmodule.. is just another way to call a custom tag.  Think of it
the same way you would any of the normal cf tags. Any name/value pair
passed in is an attribute for the custom tag.
Looks to me like this one is saying - get all the subcategories where
the main category is getcategories.name. But, that's just a guess.


On 6/9/05, Tim Laureska [EMAIL PROTECTED] wrote:
 OK... maybe I'll try to break it down then ...
 
 Not familiar with CFMODULE -  could someone explain what this is
 doing...
 
 cfmodule template=qry_GetSubCategories.cfm
 FK_tblCategories = #GetCategories.Name#
 
  I understand its calling qry_GetSubCategories.cfm, but don't get the
 2nd half (FK_tblCategories = #GetCategories.Name#):
 
 
 
 
 
 
 
 -Original Message-
 From: Tim Laureska [mailto:[EMAIL PROTECTED]
 Sent: Thursday, June 09, 2005 12:46 PM
 To: CF-Talk
 Subject: js help -drop down menus
 
 Does anyone have a few minutes to help with understanding the javascript
 at
 http://www.cfug-sfl.org/readArticle.cfm?id=24
 
 for implementation of a similar scenario on a site
 
 Tim
 
 
 
 
 
 

~|
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:209137
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: Source control

2005-06-09 Thread SStewart
There is this widget, that I found on the Macromedia site
http://www.macromedia.com/cfusion/exchange/index.cfm?view=sn120#loc=en_usview=sn106viewName=Exchange%20Search%20Detailsauthorid=26221page=0scrollPos=0subcatid=0snid=sn106itemnumber=0extid=1019143catid=0

Its SVN Lite, for Dreaweaver.

Scott A. Stewart, 
Web Application Developer
 
Engineering Consulting Services, Ltd. (ECS)
14026 Thunderbolt Place, Suite 300
Chantilly, VA 20151
Phone: (703) 995-1737
Fax: (703) 834-5527


-Original Message-
From: Calvin Ward [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 09, 2005 01:43 pm
To: CF-Talk
Subject: Re: Source control
Importance: Low

I hope so... It seems to me if they used the API, then the tool would more
easily, if not out of the box, work with SC systems that support the SCCI
interface.

Of course, if anyone else feels like this is a worthy suggestion,
http://www.macromedia.com/go/wish !

- Calvin


On 6/9/05 1:16 PM, Damien McKenna [EMAIL PROTECTED] wrote:

 For that matter, I think the only SC system that is out of
 the box supported is VSS, but not the SCCI interface (which
 products like Clearcase seem to support).
 
 Correct - DW is I think the only development tool I know of that works
 *directly* with the VSS *database* instead of using the API (SCCI), and
 its mighty frustrating.  Maybe they'll change that in DWMX2006?





~|
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:209138
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: Mulitple FCKEditor Instances Firefox issues

2005-06-09 Thread Deanna Schneider
That's a known bug. If you go to the sourceforge site, there's an
update that fixes it.

On 6/9/05, Kerry [EMAIL PROTECTED] wrote:
 hmmm, just tried it with three instances, no problems.
 fckeditor 2.0
 firefox 1.0.4
 
 -Original Message-
 From: jonese [mailto:[EMAIL PROTECTED]
 Sent: 09 June 2005 17:30
 To: CF-Talk
 Subject: SOT: Mulitple FCKEditor Instances  Firefox issues
 
 
 We have a form with two instances of the FCKeditor running. In IE everything
 works as expected (users can edit and add data to both WYSIWYG) but in
 firefox users can only manipulate the second instance and can't do anything
 in the first instance.
  Has anyone had any issues similar to this and if so how did you get around
 it?
  jonese
 
 
 
 
 

~|
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:209139
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: Source control

2005-06-09 Thread Charles Heizer
Hi Scott,
Yes, Seapine has a Dreamweaver plugin to work directly with their source 
control server and it can integrate with another one of their products wich is 
Test Track Pro. We evaluated many different systems and none of the other SC 
systems came close to Seapine SCM. It was even able to import everything from 
our Visual Source Save repositorys we had. Now I know it's not open source, 
buut it's very well supported and I have not found any of their SCM clients to 
be treated as seconday citizens. This was very important for us, since we use 
Linux, OS X, and Windows.

- Charles


 Just to backpedal for a second, didn't someone metion one that 
 integrates with Dreamweaver. I'm just discovering that I should've 
 paid attention to this thread
 
 Scott A. Stewart, 
 Web Application Developer
 
 
 Engineering Consulting Services, Ltd. (ECS)
 14026 Thunderbolt Place, Suite 300
 Chantilly, VA 20151
 Phone: (703) 995-1737
 Fax: (703) 834-5527
 
 
 
 
 
 -- 
 No virus found in this outgoing message.
 Checked by AVG Anti-Virus.
 Version: 7.0.323 / Virus Database: 267.6.6 - Release Date: 06/08/2005
 

~|
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:209140
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: CF and Java Interfaces

2005-06-09 Thread Chris Terrebonne
Actually that's exactly what I'm using.  I had it lying around for CFEclipse, 
but it just never stuck (Homesite/CFStudio kept calling be back).  But for 
Java, it's great.  Not really a raving review considering I haven't tried any 
other Java IDE's.  At this point it does everything I need it to so it's 
perfect for me.

Thanks,
Chris

 [EMAIL PROTECTED] 06/09/05 11:40AM 
While we're on the topic..

If you find yourself doing Java, the Eclipse IDE is a great platform
for it.  And there's the CFEclipse plugin that includes CF editors and
various other things, so you can do your CF work in the same
application.  And it itegrates easily with myriad version control
systems too.  Very nice package.

cheers,
barneyb

On 6/9/05, Chris Terrebonne [EMAIL PROTECTED] wrote:
 Thanks Nathan and Barney for clearing this up for me.
 
 I guess this was as perfect excuse as any to finally learn Java.  Man!  I was 
 surprised how simple it was.  I know C++ and I heard that the transition to 
 Java was easy, but I had no idea just how easy it was.  I should have done 
 this along time ago.  I know this is starting to drift into OT-land but... 
 it's nice to just code away without worrying about memory management.  If I 
 never malloc again... it will be too soon ;).
 
 Thanks for the inadvertent push, guys.
 
 Chris


-- 
Barney Boisvert
[EMAIL PROTECTED] 
360.319.6145
http://www.barneyb.com/ 

Got Gmail? I have 50 invites.



~|
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:209141
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: a simple xml question

2005-06-09 Thread S . Isaac Dealey
Yea, I've never understood why it is that functions return a string to
the output buffer instead of producing the can not be used as simple
values error that structs, queries and arrays produce.

 Function calls need brackets:

 cfset testxml= myCFC.simpleXml()


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://www.fusiontap.com
http://coldfusion.sys-con.com/author/4806Dealey.htm




~|
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:209142
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


CFC's and limiting DB queries

2005-06-09 Thread Cedric Villat
There was a post last week about limiting db queries when using CFC's that 
return array's of objects, or something to that affect.

My question is, how feasible is this? For example, if I have a Team CFC, which 
has a method of getTeamMembers(). I want this method to return of Person 
objects. I can then loop through this array and do whatever it is I want to do.

The problem is if the getTeamMembers() method has to initialize each Person 
CFC, and the initialize function makes 1 DB call to get that users information, 
I could potentially be making 10-20 DB calls just to create my TeamMembers 
array. This invariably gets worse if the Person CFC has another method which 
runs the init() method of some other CFC.

Is there a better way to do this? Like only initializing the data when it gets 
accessed? Or running a specific query which will populate an array of Person 
CFC's so it is only 1 DB hit? Any ideas?

Thanks,
Cedric

~|
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:209143
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: CFC's and limiting DB queries

2005-06-09 Thread Barney Boisvert
You could use a multi-record query to pull the entire team's data out
in one query, and then create the individual person objects, one per
record.  Or you could implement lazy loading of your person objects,
so that they do the DB call themselves on the first data access
operation.  Or, you could ignore the potential bottleneck until it's a
problem, since the increased ease of developing will make buying
another server more feasible.  Or you could use a real ORM solution
(though it probably means a move to java for your business objects) to
do your persistance operations for you, since they're carefully tuned
for max speed (including lazy loading, aggressive caching, etc).

I'd pick the third, myself, and when a bottleneck arises, consider the
fourth option as a solution.

cheers,
barneyb

On 6/9/05, Cedric Villat [EMAIL PROTECTED] wrote:
 There was a post last week about limiting db queries when using CFC's that 
 return array's of objects, or something to that affect.
 
 My question is, how feasible is this? For example, if I have a Team CFC, 
 which has a method of getTeamMembers(). I want this method to return of 
 Person objects. I can then loop through this array and do whatever it is I 
 want to do.
 
 The problem is if the getTeamMembers() method has to initialize each Person 
 CFC, and the initialize function makes 1 DB call to get that users 
 information, I could potentially be making 10-20 DB calls just to create my 
 TeamMembers array. This invariably gets worse if the Person CFC has another 
 method which runs the init() method of some other CFC.
 
 Is there a better way to do this? Like only initializing the data when it 
 gets accessed? Or running a specific query which will populate an array of 
 Person CFC's so it is only 1 DB hit? Any ideas?
 
 Thanks,
 Cedric
 
 
-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
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:209144
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: CFC's and limiting DB queries

2005-06-09 Thread Douglas Knudsen
just create a CFC, teamGateway.cfc for example, that returns a query of your 
team members. The query result is already an abstraction, use it.

DK

On 6/9/05, Cedric Villat [EMAIL PROTECTED] wrote:
 
 There was a post last week about limiting db queries when using CFC's that 
 return array's of objects, or something to that affect.
 
 My question is, how feasible is this? For example, if I have a Team CFC, 
 which has a method of getTeamMembers(). I want this method to return of 
 Person objects. I can then loop through this array and do whatever it is I 
 want to do.
 
 The problem is if the getTeamMembers() method has to initialize each 
 Person CFC, and the initialize function makes 1 DB call to get that users 
 information, I could potentially be making 10-20 DB calls just to create my 
 TeamMembers array. This invariably gets worse if the Person CFC has another 
 method which runs the init() method of some other CFC.
 
 Is there a better way to do this? Like only initializing the data when it 
 gets accessed? Or running a specific query which will populate an array of 
 Person CFC's so it is only 1 DB hit? Any ideas?
 
 Thanks,
 Cedric
 
 

~|
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:209145
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: CFC's and limiting DB queries

2005-06-09 Thread Chris Peters
If you want to use CFCs as an extra layer of abstraction though, create a 
Gateway.cfc for your whole application.  Gateway.cfc should have all 
query-related operations in it, and most of the methods should return objects, 
arrays of objects, or simple string/numeric/etc. data.  Load an instance of 
Gateway.cfc in your Application.cfm (or Application.cfc) as an application- or 
server-scoped variable so it only loads into memory once and is shared by all 
calling templates.  Do it like this:

cfif not IsDefined('application.team')
  cfset application.team = CreateObject('component', 'path.to.Gateway')
/cfif

During development, it's helpful to comment out the cfif not IsDefined stuff 
as that causes the instance to stick in memory, even if you change the source 
of the CFC.  This is good in production because CF doesn't need to rebuilt the 
unchanging instance for every page load.

Let's say your entire application is for team management, so maybe you'd name 
the Gateway.cfc instance application.team.

Your call to application.team.getTeamMembers() would run a query to get all the 
data you need to build the objects you would put into the array.  Loop through 
the query and build your objects as needed.  The objects that get put into the 
array should have no queries built into them.  Return the array of objects.

Douglas's point of the queries being an abstraction in itself is also valid, 
but I mainly construct my code that way only if it's a smaller application.  
Keep in mind that the only way it is an abstraction is if you alias the field 
names, as in

SELECT
  BL_ID AS blahID,
  BL_NAME AS blahName
FROM ...

Hope that helps.


- Chris Peters

just create a CFC, teamGateway.cfc for example, that returns a query of your 
team members. The query result is already an abstraction, use it.

DK

On 6/9/05, Cedric Villat [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:209146
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: CFC's and limiting DB queries

2005-06-09 Thread Jeremy Adams
I think something similar was addressed in an earlier thread...this is
a quote from the thread (think it was by sean corfield):

Use the query result - it's already an OO abstraction. Do not convert
your query to an array of objects - aggregate display pages do not
need objects.

On 6/9/05, Chris Peters [EMAIL PROTECTED] wrote:
 If you want to use CFCs as an extra layer of abstraction though, create a 
 Gateway.cfc for your whole application.  Gateway.cfc should have all 
 query-related operations in it, and most of the methods should return 
 objects, arrays of objects, or simple string/numeric/etc. data.  Load an 
 instance of Gateway.cfc in your Application.cfm (or Application.cfc) as an 
 application- or server-scoped variable so it only loads into memory once and 
 is shared by all calling templates.  Do it like this:
 
 cfif not IsDefined('application.team')
   cfset application.team = CreateObject('component', 'path.to.Gateway')
 /cfif
 
 During development, it's helpful to comment out the cfif not IsDefined 
 stuff as that causes the instance to stick in memory, even if you change 
 the source of the CFC.  This is good in production because CF doesn't need to 
 rebuilt the unchanging instance for every page load.
 
 Let's say your entire application is for team management, so maybe you'd name 
 the Gateway.cfc instance application.team.
 
 Your call to application.team.getTeamMembers() would run a query to get all 
 the data you need to build the objects you would put into the array.  Loop 
 through the query and build your objects as needed.  The objects that get put 
 into the array should have no queries built into them.  Return the array of 
 objects.
 
 Douglas's point of the queries being an abstraction in itself is also valid, 
 but I mainly construct my code that way only if it's a smaller application.  
 Keep in mind that the only way it is an abstraction is if you alias the field 
 names, as in
 
 SELECT
   BL_ID AS blahID,
   BL_NAME AS blahName
 FROM ...
 
 Hope that helps.
 
 
 - Chris Peters
 
 just create a CFC, teamGateway.cfc for example, that returns a query of your
 team members. The query result is already an abstraction, use it.
 
 DK
 
 On 6/9/05, Cedric Villat [EMAIL PROTECTED] wrote:
 
 
 

~|
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:209147
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: CFC's and limiting DB queries

2005-06-09 Thread Barney Boisvert
That is definitely true.  But Cedric didn't say he was passing the
result of getTeamMembers to a display page.  What if he was just
needed to invoke some method on all the members of the team (like
giving them a point for playing in a game last weekend).  Then you
definitely need the actual Player objects.

Not that that's what he's doing, but he didn't specify one way or the other.

cheers,
barneyb

On 6/9/05, Jeremy Adams [EMAIL PROTECTED] wrote:
 I think something similar was addressed in an earlier thread...this is
 a quote from the thread (think it was by sean corfield):
 
 Use the query result - it's already an OO abstraction. Do not convert
 your query to an array of objects - aggregate display pages do not
 need objects.

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
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:209148
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


CFDocument question

2005-06-09 Thread Calvin Ward
When using cfdocument and an image or even text itself spans a naturally
occurring page break, the generated PDF slices the image or text at the
break.

Is there any way to alter that behavior?

- Calvin



~|
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:209149
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: CFC's and limiting DB queries

2005-06-09 Thread Douglas Knudsen
I'd suggest keeping gateways with objects or purposes, having a site-wide 
one will certainly tend to grow to immense porpotions. This from a bad 
experience following me around where I work. Also, IMHO, stay away from 
application scoped cfc instances unless you really really need them. They 
are a PITA when you need to update the code, most notably when you are in a 
clustered environment.

DK

On 6/9/05, Chris Peters [EMAIL PROTECTED] wrote:
 
 If you want to use CFCs as an extra layer of abstraction though, create a 
 Gateway.cfc for your whole application. Gateway.cfc should have all 
 query-related operations in it, and most of the methods should return 
 objects, arrays of objects, or simple string/numeric/etc. data. Load an 
 instance of Gateway.cfc in your Application.cfm (or Application.cfc) as an 
 application- or server-scoped variable so it only loads into memory once and 
 is shared by all calling templates. Do it like this:
 
 cfif not IsDefined('application.team')
 cfset application.team = CreateObject('component', 'path.to.Gateway')
 /cfif
 
 During development, it's helpful to comment out the cfif not IsDefined 
 stuff as that causes the instance to stick in memory, even if you change 
 the source of the CFC. This is good in production because CF doesn't need to 
 rebuilt the unchanging instance for every page load.
 
 Let's say your entire application is for team management, so maybe you'd 
 name the Gateway.cfc instance application.team.
 
 Your call to application.team.getTeamMembers() would run a query to get 
 all the data you need to build the objects you would put into the array. 
 Loop through the query and build your objects as needed. The objects that 
 get put into the array should have no queries built into them. Return the 
 array of objects.
 
 Douglas's point of the queries being an abstraction in itself is also 
 valid, but I mainly construct my code that way only if it's a smaller 
 application. Keep in mind that the only way it is an abstraction is if you 
 alias the field names, as in
 
 SELECT
 BL_ID AS blahID,
 BL_NAME AS blahName
 FROM ...
 
 Hope that helps.
 
 
 - Chris Peters
 
 just create a CFC, teamGateway.cfc for example, that returns a query of 
 your
 team members. The query result is already an abstraction, use it.
 
 DK
 
 On 6/9/05, Cedric Villat [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:209150
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: CFC's and limiting DB queries

2005-06-09 Thread Cedric Villat
Barney,

This is pretty much what I was wanting to do. I think your first post was the 
most helpful. I suppose I will implement it right now so that all Person 
objects are initialized when the getTeamMembers method is called. If/when the 
bottleneck arises, it shouldn't be much more difficult to implement the lazy 
loading scheme in the Person object itself.

Thanks for the suggestions, just wondering what other people did.

Cedric

That is definitely true.  But Cedric didn't say he was passing the
result of getTeamMembers to a display page.  What if he was just
needed to invoke some method on all the members of the team (like
giving them a point for playing in a game last weekend).  Then you
definitely need the actual Player objects.

Not that that's what he's doing, but he didn't specify one way or the other.

cheers,
barneyb

On 6/9/05, Jeremy Adams [EMAIL PROTECTED] wrote:
 I think something similar was addressed in an earlier thread...this is
 a quote from the thread (think it was by sean corfield):
 
 Use the query result - it's already an OO abstraction. Do not convert
 your query to an array of objects - aggregate display pages do not
 need objects.

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
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:209151
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: CFC's and limiting DB queries

2005-06-09 Thread Barney Boisvert
Application-scoped instances are a wonderful thing.  And having a
clustered environment makes them easier to deal with, not harder,
because you can take a server out of the cluster, let it rebuild it's
in-memory instances without load, and then reinject it.  Repeat for
the rest of the cluster, and you've got a zero-downtime upgrade.  If
you've got a large cluster, best to take half the servers down,
upgrade them, then switch halves.  As long as you don't need more than
half your servers to deal with the load (which you shouldn't, because
you should do upgrade under non-peak load, and most load cycles are
more than 50% deltas), you can do it all in two steps.

Particularly with larger applications, instantiating a large number of
CFC instances on every request (rather than leaving them in the
application scope across requests) can be a real bottleneck.  Hundreds
or thousands of milliseconds per request, if the instances need to do
complex initialization.  Almost always better to cache the instances. 
Just watch out for potential race conditions as multiple requests can
be accessing the shared instances at any given time.

cheers,
barneyb

On 6/9/05, Douglas Knudsen [EMAIL PROTECTED] wrote:
 I'd suggest keeping gateways with objects or purposes, having a site-wide
 one will certainly tend to grow to immense porpotions. This from a bad
 experience following me around where I work. Also, IMHO, stay away from
 application scoped cfc instances unless you really really need them. They
 are a PITA when you need to update the code, most notably when you are in a
 clustered environment.
 
 DK

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
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:209152
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


time conversion

2005-06-09 Thread Jeremy Bunton
I have a form that collects 3 pieces of time data each as separate form
vars. Hour, min and AM/PM in the format of 03 04 PM. I need to convert that
to military time so here 15:04. I have looked at createtime() but it seems
to not have a way to handle the AM/PM data. How do you all handle this?

Jeremy





~|
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:209153
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: time conversion

2005-06-09 Thread Barney Boisvert
if (am_pm EQ am AND hour EQ 12)
  hour = 0;
else if (am_pm EQ pm AND hour NEQ 12)
  hour = hour + 12;

militaryTime = hour  minute;

cheers,
barneyb

On 6/9/05, Jeremy Bunton [EMAIL PROTECTED] wrote:
 I have a form that collects 3 pieces of time data each as separate form
 vars. Hour, min and AM/PM in the format of 03 04 PM. I need to convert that
 to military time so here 15:04. I have looked at createtime() but it seems
 to not have a way to handle the AM/PM data. How do you all handle this?
 
 Jeremy
 

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
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:209154
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: time conversion

2005-06-09 Thread Nathan Strutz
Time format it. Something like:

timeFormat(#form.hour#:#form.minute# #form.ampm#, HH:mm)

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


Jeremy Bunton wrote:
 I have a form that collects 3 pieces of time data each as separate form
 vars. Hour, min and AM/PM in the format of 03 04 PM. I need to convert that
 to military time so here 15:04. I have looked at createtime() but it seems
 to not have a way to handle the AM/PM data. How do you all handle this?
 
 Jeremy
 
 
 
 
 
 

~|
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:209155
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: time conversion

2005-06-09 Thread Charlie Griefer
assuming:

cfset myHour = 3 /
cfset myMin  = 4 /
cfset myAMPM = PM /

cfif myAMPM = PM
 cfset myHour = myHour + 12 /
/cfif

cfset myMilitaryTime = createTime(myHour, myMin, 0) /

On 6/9/05, Jeremy Bunton [EMAIL PROTECTED] wrote:
 I have a form that collects 3 pieces of time data each as separate form
 vars. Hour, min and AM/PM in the format of 03 04 PM. I need to convert that
 to military time so here 15:04. I have looked at createtime() but it seems
 to not have a way to handle the AM/PM data. How do you all handle this?
 
 Jeremy
 
 
 
 
 
 

~|
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:209156
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: cfhttp.filecontent help!

2005-06-09 Thread Charlie Griefer
cfset myVar1 =  /
cfset myVar2 =  /
cfset myVar3 =  /

cfset counter = 0 /
cfloop list=#myList# index=i delimiters=
 cfset counter = 1 /
 cfset variables['myVar'  counter] = listLast(i, '=') /
/cfloop

the above should work...

On 6/9/05, Aldon [EMAIL PROTECTED] wrote:
 Thanks Charlie,
 
 Yes I am trying to extrapolate the values and assing them to my variables.
 
 
 
 -Original Message-
 From: Charlie Griefer [mailto:[EMAIL PROTECTED]
 Sent: Thursday, June 09, 2005 11:58 AM
 To: CF-Talk
 Subject: Re: cfhttp.filecontent help!
 
 
 treat the string as a list, delimited by .
 treat each list item as a 'nested' list delimited by =
 
 are you just trying to extrapolate 1, 2, and thats all and
 assign those values to your own variables?
 
 On 6/9/05, Aldon Moore [EMAIL PROTECTED] wrote:
  I am using cfhttp to retreive data from another server that is returned as
 name/value pairs delimited by  eg:
 
  a=1b=2c=thats all.
 
  How do I assign each of these values to its own variable?
 
 
 
 
 
 

~|
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:209157
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: time conversion

2005-06-09 Thread Barney Boisvert
The noon hour is PM, but you don't add 12 to it to make miliary time. 
And you need EQ not = in there.

cheers,
barneyb

On 6/9/05, Charlie Griefer [EMAIL PROTECTED] wrote:
 assuming:
 
 cfset myHour = 3 /
 cfset myMin  = 4 /
 cfset myAMPM = PM /
 
 cfif myAMPM = PM
  cfset myHour = myHour + 12 /
 /cfif
 
 cfset myMilitaryTime = createTime(myHour, myMin, 0) /

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
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:209158
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: time conversion

2005-06-09 Thread Charlie Griefer
grumble...  :D

On 6/9/05, Barney Boisvert [EMAIL PROTECTED] wrote:
 The noon hour is PM, but you don't add 12 to it to make miliary time.
 And you need EQ not = in there.
 
 cheers,
 barneyb
 
 On 6/9/05, Charlie Griefer [EMAIL PROTECTED] wrote:
  assuming:
 
  cfset myHour = 3 /
  cfset myMin  = 4 /
  cfset myAMPM = PM /
 
  cfif myAMPM = PM
   cfset myHour = myHour + 12 /
  /cfif
 
  cfset myMilitaryTime = createTime(myHour, myMin, 0) /
 
 --
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/
 
 Got Gmail? I have 50 invites.
 
 

~|
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:209159
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: CFC's and limiting DB queries

2005-06-09 Thread Douglas Knudsen
How do you get zero down time doing this? We have sticky sessions on, so if 
we take a member of the cluster down, we loose like 50% of my users forcing 
them to relogin to the other member, in this case we have two memebers in 
the cluster.

DK

On 6/9/05, Barney Boisvert [EMAIL PROTECTED] wrote:
 
 Application-scoped instances are a wonderful thing. And having a
 clustered environment makes them easier to deal with, not harder,
 because you can take a server out of the cluster, let it rebuild it's
 in-memory instances without load, and then reinject it. Repeat for
 the rest of the cluster, and you've got a zero-downtime upgrade. If
 you've got a large cluster, best to take half the servers down,
 upgrade them, then switch halves. As long as you don't need more than
 half your servers to deal with the load (which you shouldn't, because
 you should do upgrade under non-peak load, and most load cycles are
 more than 50% deltas), you can do it all in two steps.
 
 Particularly with larger applications, instantiating a large number of
 CFC instances on every request (rather than leaving them in the
 application scope across requests) can be a real bottleneck. Hundreds
 or thousands of milliseconds per request, if the instances need to do
 complex initialization. Almost always better to cache the instances.
 Just watch out for potential race conditions as multiple requests can
 be accessing the shared instances at any given time.
 
 cheers,
 barneyb
 
 On 6/9/05, Douglas Knudsen [EMAIL PROTECTED] wrote:
  I'd suggest keeping gateways with objects or purposes, having a 
 site-wide
  one will certainly tend to grow to immense porpotions. This from a bad
  experience following me around where I work. Also, IMHO, stay away from
  application scoped cfc instances unless you really really need them. 
 They
  are a PITA when you need to update the code, most notably when you are 
 in a
  clustered environment.
 
  DK
 
 --
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/
 
 Got Gmail? I have 50 invites.
 
 

~|
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:209160
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: CFC's and limiting DB queries

2005-06-09 Thread Figy, Kam
cfif StructKeyExists( URL, reset )
cfset StructClear( APPLICATION ) /
/cfif

No downed cluster, app scope reset, and really handy.

/kam

-Original Message-
From: Douglas Knudsen [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 09, 2005 1:56 PM
To: CF-Talk
Subject: Re: CFC's and limiting DB queries

How do you get zero down time doing this? We have sticky sessions on, so
if 
we take a member of the cluster down, we loose like 50% of my users
forcing 
them to relogin to the other member, in this case we have two memebers
in 
the cluster.

DK

On 6/9/05, Barney Boisvert [EMAIL PROTECTED] wrote:
 
 Application-scoped instances are a wonderful thing. And having a
 clustered environment makes them easier to deal with, not harder,
 because you can take a server out of the cluster, let it rebuild it's
 in-memory instances without load, and then reinject it. Repeat for
 the rest of the cluster, and you've got a zero-downtime upgrade. If
 you've got a large cluster, best to take half the servers down,
 upgrade them, then switch halves. As long as you don't need more than
 half your servers to deal with the load (which you shouldn't, because
 you should do upgrade under non-peak load, and most load cycles are
 more than 50% deltas), you can do it all in two steps.
 
 Particularly with larger applications, instantiating a large number of
 CFC instances on every request (rather than leaving them in the
 application scope across requests) can be a real bottleneck. Hundreds
 or thousands of milliseconds per request, if the instances need to do
 complex initialization. Almost always better to cache the instances.
 Just watch out for potential race conditions as multiple requests can
 be accessing the shared instances at any given time.
 
 cheers,
 barneyb
 
 On 6/9/05, Douglas Knudsen [EMAIL PROTECTED] wrote:
  I'd suggest keeping gateways with objects or purposes, having a 
 site-wide
  one will certainly tend to grow to immense porpotions. This from a
bad
  experience following me around where I work. Also, IMHO, stay away
from
  application scoped cfc instances unless you really really need them.

 They
  are a PITA when you need to update the code, most notably when you
are 
 in a
  clustered environment.
 
  DK
 
 --
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/
 
 Got Gmail? I have 50 invites.
 
 



~|
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:209161
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: CFC's and limiting DB queries

2005-06-09 Thread Barney Boisvert
Set your first set of servers to stop accepting new sessions a while
in advance.  As users end their sessions, that first block will
eventually become unused, since they're not picking up any new
sessions to replace the old ones.  Once that happens (or gets to a
sufficiently low number), kill them off.  Do your upgrade, then repeat
the process for the other half.

If you've designed your app right, the cost of having a mid-session
server switch will be minimal, since anything that's really critical
should be stored in the database, not in session variables.  Still not
desirable to do that, but if it happens to a few users, it shouldn't
be a big deal.

cheers,
barneyb

On 6/9/05, Douglas Knudsen [EMAIL PROTECTED] wrote:
 How do you get zero down time doing this? We have sticky sessions on, so if
 we take a member of the cluster down, we loose like 50% of my users forcing
 them to relogin to the other member, in this case we have two memebers in
 the cluster.
 
 DK

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
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:209162
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: CFC's and limiting DB queries

2005-06-09 Thread Barney Boisvert
That has HUGE implications.  Like making every single other request
currently executing error.  That's only safe to do if you can ensure
that the request running that code is the only request currently
executing in a way that might depend on the existance of an
application variable.  That's theoretically possible to accomplish,
but somewhat complicated unless you've been 100% on the ball with
Application scope locks for every application-scope reference in your
entire application.

Which isn't to say that's not useful.  It's very close to what I use
to clear my app variables and regenerate them.  But it's imperative
that you still ensure that no one is using the server when you execute
it.  It doesn't relieve that burden in any way.

cheers,
barneyb

On 6/9/05, Figy, Kam [EMAIL PROTECTED] wrote:
 cfif StructKeyExists( URL, reset )
 cfset StructClear( APPLICATION ) /
 /cfif
 
 No downed cluster, app scope reset, and really handy.
 
 /kam

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
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:209163
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: CFC's and limiting DB queries

2005-06-09 Thread Douglas Knudsen
ugh, this does not work across a cluster. Only works on the member you are 
currently associated with. You have to fool around and ensure you hit each 
instance in the cluster with this.

DK

On 6/9/05, Figy, Kam [EMAIL PROTECTED] wrote:
 
 cfif StructKeyExists( URL, reset )
 cfset StructClear( APPLICATION ) /
 /cfif
 
 No downed cluster, app scope reset, and really handy.
 
 /kam
 
 -Original Message-
 From: Douglas Knudsen [mailto:[EMAIL PROTECTED]
 Sent: Thursday, June 09, 2005 1:56 PM
 To: CF-Talk
 Subject: Re: CFC's and limiting DB queries
 
 How do you get zero down time doing this? We have sticky sessions on, so
 if
 we take a member of the cluster down, we loose like 50% of my users
 forcing
 them to relogin to the other member, in this case we have two memebers
 in
 the cluster.
 
 DK
 
 On 6/9/05, Barney Boisvert [EMAIL PROTECTED] wrote:
 
  Application-scoped instances are a wonderful thing. And having a
  clustered environment makes them easier to deal with, not harder,
  because you can take a server out of the cluster, let it rebuild it's
  in-memory instances without load, and then reinject it. Repeat for
  the rest of the cluster, and you've got a zero-downtime upgrade. If
  you've got a large cluster, best to take half the servers down,
  upgrade them, then switch halves. As long as you don't need more than
  half your servers to deal with the load (which you shouldn't, because
  you should do upgrade under non-peak load, and most load cycles are
  more than 50% deltas), you can do it all in two steps.
 
  Particularly with larger applications, instantiating a large number of
  CFC instances on every request (rather than leaving them in the
  application scope across requests) can be a real bottleneck. Hundreds
  or thousands of milliseconds per request, if the instances need to do
  complex initialization. Almost always better to cache the instances.
  Just watch out for potential race conditions as multiple requests can
  be accessing the shared instances at any given time.
 
  cheers,
  barneyb
 
  On 6/9/05, Douglas Knudsen [EMAIL PROTECTED] wrote:
   I'd suggest keeping gateways with objects or purposes, having a
  site-wide
   one will certainly tend to grow to immense porpotions. This from a
 bad
   experience following me around where I work. Also, IMHO, stay away
 from
   application scoped cfc instances unless you really really need them.
 
  They
   are a PITA when you need to update the code, most notably when you
 are
  in a
   clustered environment.
  
   DK
 
  --
  Barney Boisvert
  [EMAIL PROTECTED]
  360.319.6145
  http://www.barneyb.com/
 
  Got Gmail? I have 50 invites.
 
 
 
 
 
 

~|
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:209164
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: CFC's and limiting DB queries

2005-06-09 Thread Douglas Knudsen
hmm, learning something new today then...how do you set the server to stop 
accepting sessions? I don't recall reading about this.

DK

On 6/9/05, Barney Boisvert [EMAIL PROTECTED] wrote:
 
 Set your first set of servers to stop accepting new sessions a while
 in advance. As users end their sessions, that first block will
 eventually become unused, since they're not picking up any new
 sessions to replace the old ones. Once that happens (or gets to a
 sufficiently low number), kill them off. Do your upgrade, then repeat
 the process for the other half.
 
 If you've designed your app right, the cost of having a mid-session
 server switch will be minimal, since anything that's really critical
 should be stored in the database, not in session variables. Still not
 desirable to do that, but if it happens to a few users, it shouldn't
 be a big deal.
 
 cheers,
 barneyb
 
 On 6/9/05, Douglas Knudsen [EMAIL PROTECTED] wrote:
  How do you get zero down time doing this? We have sticky sessions on, so 
 if
  we take a member of the cluster down, we loose like 50% of my users 
 forcing
  them to relogin to the other member, in this case we have two memebers 
 in
  the cluster.
 
  DK
 
 --
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/
 
 Got Gmail? I have 50 invites.
 
 

~|
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:209165
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: CFC's and limiting DB queries

2005-06-09 Thread Barney Boisvert
No idea.  It'll depend on the load balancer you're using.  For the one
we use, you just set the weight (we use a weighted scheduler) of the
member to zero, without removing it from the cluster.  It'll keep
serving the sessions it already has until it's actually removed, but
with a weight of zero, it won't be assigned any new ones.  Once the
session count is down, we actually remove it from the cluster so that
it's impossible to access, do our stuff, and then add it back into the
cluster with it's normal weighting.

We have a variety of server hardware in our cluster since we've
continued to expand it over several years.  The beefier machines have
a higher weight so they get more requests than the less powerful
machines.

cheers,
barneyb

On 6/9/05, Douglas Knudsen [EMAIL PROTECTED] wrote:
 hmm, learning something new today then...how do you set the server to stop
 accepting sessions? I don't recall reading about this.
 
 DK


-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
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:209166
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: CFC's and limiting DB queries

2005-06-09 Thread Douglas Knudsen
aha! I'm not talking of a LB cluster, rather a JRun cluster. Sorry, should 
have been more clear earlier. Darn symantics! Yeah, If using a LB, this is 
doable. 

DK

On 6/9/05, Barney Boisvert [EMAIL PROTECTED] wrote:
 
 No idea. It'll depend on the load balancer you're using. For the one
 we use, you just set the weight (we use a weighted scheduler) of the
 member to zero, without removing it from the cluster. It'll keep
 serving the sessions it already has until it's actually removed, but
 with a weight of zero, it won't be assigned any new ones. Once the
 session count is down, we actually remove it from the cluster so that
 it's impossible to access, do our stuff, and then add it back into the
 cluster with it's normal weighting.
 
 We have a variety of server hardware in our cluster since we've
 continued to expand it over several years. The beefier machines have
 a higher weight so they get more requests than the less powerful
 machines.
 
 cheers,
 barneyb
 
 On 6/9/05, Douglas Knudsen [EMAIL PROTECTED] wrote:
  hmm, learning something new today then...how do you set the server to 
 stop
  accepting sessions? I don't recall reading about this.
 
  DK
 
 
 --
 Barney Boisvert
 [EMAIL PROTECTED]
 360.319.6145
 http://www.barneyb.com/
 
 Got Gmail? I have 50 invites.
 
 

~|
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:209167
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: CFC's and limiting DB queries

2005-06-09 Thread Barney Boisvert
I've never played with JRun's built-in clustering, but I can't imagine
it doesn't have something along those lines in there somewhere. 
JRun's a loadbalancer just like any other software load balancer.

If it doesn't, then yeah, I could see how persistant objects could be
a pain.  You'd have to go the route of programatically
single-threading a request so you could reload your instances.  ick. 
;)

cheers,
barneyb

On 6/9/05, Douglas Knudsen [EMAIL PROTECTED] wrote:
 aha! I'm not talking of a LB cluster, rather a JRun cluster. Sorry, should
 have been more clear earlier. Darn symantics! Yeah, If using a LB, this is
 doable.
 
 DK

-- 
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.

~|
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:209168
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: flash platform

2005-06-09 Thread John Dowdell
Micha Schopman wrote:
 It would be if it brought something really new, but why would one choose
 Flash for leveraging client applications. Why would one choose a Flash
 Application over a Java / .NET application for the desktop? And why
 would one choose a Flash application over a Java application on a mobile
 phone. Strange moves imho.

Mobile is easy... it's cheaper to do in SWF than Java. For instance, 
China's current phones are lower-end and have a J2ME engine but can't 
yet support SWF, yet applications for these phones are commonly 
developed and tested in SWF, before being passed to inexpensive Java 
programmers for implementations.

(The desktop question doesn't scan for me, because the Flash client 
can work with either type of backend, and I'm assuming that you're not 
comparing with .NET or Java clientside.)

jd






-- 
John Dowdell . Macromedia Developer Support . San Francisco CA USA
Weblog: http://www.macromedia.com/go/blog_jd
Aggregator: http://www.macromedia.com/go/weblogs
Technotes: http://www.macromedia.com/support/
Spam killed my private email -- public record is best, 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:209169
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


query of queries in MX7

2005-06-09 Thread dan martin
I am upgrading from 5.0 to mx7 and just ran the analyzer. One of the 
informational flags it raised was on query of queries no longer supporting key 
words like COUNT() in the query of queries.

Does this mean you can no longer use any group by or any aggregate functions on 
the query of queries?

The work around suggested by the analyzer is to remove the keywords. Not very 
helpful.

Anyone know how to do group by aggregates in MX7? It works fine in cf5.0

~|
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:209170
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


cfchart not working on new server

2005-06-09 Thread Matthew Walker
We have recently had three CF7/IIS2003 servers set up for us at a third
party hosting company. These are brand new installs on brand new
machines. All is well except that cfchart is not working for us. It
works fine for us on our local CF7/IIS2003 machine. We've been unable to
spot the difference between the setups. 

 

We are running the test example listed at the end of this post. It
doesn't run for any format. You can see the result here:
http://www.christchurchnz.net/chart.cfm

 

I have looked in c:\cfusionmx7\charting\cache\
http://www.christchurchnz.net/chart.cfm  and found that the jpg files
are indeed getting generated in there. We have mappings set up on both
servers: /CFIDE = D:\Inetpub\wwwroot\CFIDE although graphdata.cfm
(which shows up in the image source) isn't a physical file as far as I
can tell so I'm guessing that  mapping doesn't make any difference.

 

Any ideas where I should look? 

 

The sample we're testing:

 

cfchart format=jpg

chartwidth=400

chartheight=300

seriesplacement=stacked

show3d=true

 

 

cfchartseries type=bar seriesLabel=January

cfchartdata item=Books value=60/

cfchartdata item=DVD's value=30/

cfchartdata item=Videos value=25/

cfchartdata item=CD's value=39/

cfchartdata item=Magazines value=55/

/cfchartseries

cfchartseries type=bar seriesLabel=February

cfchartdata item=Books value=40/

cfchartdata item=DVD's value=57/

cfchartdata item=Videos value=25/

cfchartdata item=CD's value=29/

cfchartdata item=Magazines value=15/

/cfchartseries

cfchartseries type=bar seriesLabel=March

cfchartdata item=Books value=36/

cfchartdata item=DVD's value=20/

cfchartdata item=Videos value=20/

cfchartdata item=CD's value=45/

cfchartdata item=Magazines value=20/

/cfchartseries

 

/cfchart



~|
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:209171
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


  1   2   >