Re: Time Rounding

2008-06-04 Thread AJ Mercer
or this

cfset minuteTime = 8 /

cfset round15 = round(minuteTime/15) * 15
cfoutput#minuteTime# : #round15#br //cfoutput

If round15 equal 60
you will need to increment the hour
and set minutes to 0

On Wed, Jun 4, 2008 at 1:36 PM, Michael E. Carluen [EMAIL PROTECTED]
wrote:

 Terry,
 Try this:
 cfoutput#minute(now())#/cfoutput
 cfset theminute = minute(now())
 cfset roundedhour = hour(now())
 cfif theminute lte 7
cfset roundedMinute = 0
 cfelseif theminute lte 23
cfset roundedMinute = 15
 cfelseif theminute lte 37
cfset roundedMinute = 30
 cfelseif theminute lte 53
cfset roundedMinute = 45
 cfelse
cfset roundedhour = hour(now())+1
cfset roundedMinute = 0
 /cfif
 cfset

 theroundedtime=createDateTime(year(now()),month(now()),day(now()),roundedhou
 r,roundedMinute,0)
 cfoutput#theroundedtime#/cfoutput

 There probably a better way that someone else may suggest, but for now you
 can start with the one above.

 Hth,

 Michael






  -Original Message-
  From: Terry Troxel [mailto:[EMAIL PROTECTED]
  Sent: Sunday, June 01, 2008 5:11 AM
  To: CF-Talk
  Subject: Time Rounding
 
  I have been asked to write a time clock application and am having trouble
  figuring how to round time to 15 minute increments based upon a punch
 time
  as our mechanical time clock does.
 
  Any help would be appreciated.
 
  Terry Troxel
 


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306798
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Best CF editor?

2008-06-04 Thread Michael Christensen
So if I have a file - file.cfc for example - I could split it up easily?

But would I still be able to instanciate it the same way?


 I am sure you know as well as I, that sometimes refactoring is just not an 
 option...

That's true, although with either CFCs or includes there are easy ways
to divide the file up into multiple without actually refactoring them
and take just a few minutes. 

cfif b...1000 lines of codecfelse...1000 lines of code/cfif

becomes 

cfif bcfinclude template=1000lines.cfm
cfelsecfinclude template=1000lines2.cfm/cfif

Or in a CFC 

cfcomponent extends=thing
... 2000 lines ...
/cfcomponent

becomes 

cfcomponent extends=thing
...1000 lines ...
/cfcomponent

cfcomponent extends=1000lines
...another 1000 lines...
/cfcomponent

Inelegant though it may be, it's not very time consuming. 

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 617.365.5732

http://onTap.riaforge.org/blog 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306799
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Forum software

2008-06-04 Thread Raymond Camden
Do not forget that when looking for X in CF, you can always check
RIAForge for all the free, open source solutions.

On Wed, Jun 4, 2008 at 12:48 AM, WebSite CFtalk [EMAIL PROTECTED] wrote:
 Hello,

 We need to implement a top of the line forum software for a customer,
 CF based.

 Would that be Fusetalk, or is there other options?

 I'm aware of Galleon, CFMBB etc. but must confess that I have not
 installed or tested any of them very much..

 My understanding is that Fusetalk is the most feature packed CF based
 system out there?
 (And 5k worth of modifications to implement missing/needed functionality
 doesn't get you very far these days..)

 Do we get access to the source code with Fusetalk in its enterprise
 version?

 There will be high traffic and many forum instances/many moderators and
 a high user count, and we need to integrate the forum software to our
 CRM functions (also CF based).

 Grateful for your inputs,

 Thank you,

 Helge



 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306800
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Forum software

2008-06-04 Thread Bobby Hartsfield
There are a few but inevitably, it boils down to bells and whistles. Ray
Camden's Galleon is solid but lacks many of the aesthetic features that
people like to see in heavily used, casual forums... but that makes it
perfect for more formal uses. Rick Root built upon Galleon to add quite a
few of those missing features and released it under CFMBB (I've not used it
other than creating an account and posting a couple of messages). I recently
released a new CF based forum app called CF4em (cf4em.com) and for all
intent purposes, I think it is what you are looking for.

- CF Based
- Tons of features already implemented (more waiting to be released when
some translations are completed)
- 100% Open Source

You can find out more at http://cf4em.com

Current Skins
http://cf4em.com/cf4em/index.cfm?mainaction=postsforumid=1threadid=1

Current Features List
http://cf4em.com/cf4em/index.cfm?mainaction=postsforumid=3threadid=2

I've actually never used Fusetalk so I can't offer any insight there.

..:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com

-Original Message-
From: WebSite CFtalk [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 04, 2008 1:49 AM
To: CF-Talk
Subject: Forum software

Hello,

We need to implement a top of the line forum software for a customer,
CF based.

Would that be Fusetalk, or is there other options?

I'm aware of Galleon, CFMBB etc. but must confess that I have not
installed or tested any of them very much..

My understanding is that Fusetalk is the most feature packed CF based
system out there? 
(And 5k worth of modifications to implement missing/needed functionality
doesn't get you very far these days..)

Do we get access to the source code with Fusetalk in its enterprise
version?

There will be high traffic and many forum instances/many moderators and
a high user count, and we need to integrate the forum software to our
CRM functions (also CF based).

Grateful for your inputs,

Thank you,

Helge





~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306801
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Forum software

2008-06-04 Thread Bobby Hartsfield
Well not all... cause some of us have been too lazy to get around to listing
our projects yet ;-)

I'll get to it JeffC!! heh

..:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 04, 2008 7:18 AM
To: CF-Talk
Subject: Re: Forum software

Do not forget that when looking for X in CF, you can always check
RIAForge for all the free, open source solutions.

On Wed, Jun 4, 2008 at 12:48 AM, WebSite CFtalk [EMAIL PROTECTED] wrote:
 Hello,

 We need to implement a top of the line forum software for a customer,
 CF based.

 Would that be Fusetalk, or is there other options?

 I'm aware of Galleon, CFMBB etc. but must confess that I have not
 installed or tested any of them very much..

 My understanding is that Fusetalk is the most feature packed CF based
 system out there?
 (And 5k worth of modifications to implement missing/needed functionality
 doesn't get you very far these days..)

 Do we get access to the source code with Fusetalk in its enterprise
 version?

 There will be high traffic and many forum instances/many moderators and
 a high user count, and we need to integrate the forum software to our
 CRM functions (also CF based).

 Grateful for your inputs,

 Thank you,

 Helge



 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306802
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: do not increase counter is returns 0 Apology to List

2008-06-04 Thread Bobby Hartsfield
Erik originated the lotto scam post? That's funny... and just when I thought
I couldn't think any better of him. ;-)

I've seen all of the posts in question Brian... I think I may have even
started the original barrage of 'read a book' comments geared toward erik...
but after the 10th time or so, I just decided that he has no intention of
learning where he needs to but instead would rather have the quick fix so he
can move on so my latest Outlook filter entitled 'Erik Tom' was born.

Katrina is right (to a very small degree) ... it is time to watch him shrink
into the distance... you tried to help.

..:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com


-Original Message-
From: Brian Kotek [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 04, 2008 12:11 AM
To: CF-Talk
Subject: Re: do not increase counter is returns 0 Apology to List

Seeing as how *I* was not the person who initially responded to Erik, and
how my message also advocated *exactly* what you are proposing (ignoring
him), I don't understand at all what you're trying to say or why I am
somehow the target of your indignation.

Regardless, I'll let this thread die now since you seem content to reject
the olive branch I was trying to extend. Sorry you disagree with me, but
given the long chain of events related to this (which you seem to be
ignoring or are still not aware of), I can tell you with certainty that I
would say the same thing again without hesitation.


On Tue, Jun 3, 2008 at 11:28 PM, Katrina Chapman [EMAIL PROTECTED]
wrote:

 I apologize for having posted this to the list.  It was intended to be a
 private post directly to Brian.  I was a little upset at the time that I
 wrote the post.  This is not an excuse but an explanation for my not
 changing the recipient.

 I however stand by my original message.  While you didn't actually use the
 word idiot the underlying message, at least how I read it, was that you
were
 condemning Erik for either being too stupid or too lazy to read even the
 most basic book on SQL.  To me that's the same thing.  It also implies
that
 YOU HAVE read the most basic book on SQL and therefore know more than
the
 next guy.

 I have found, on the MANY different lists that I have belonged to, that if
 you ignore the kind of people you all have described they eventually go
 away.  They might post the same questions over and over and over again for
a
 little while but they eventually leave.  They might even throw a fit about
 not getting any help.  So what?  Who cares?  Instead of posting about how
we
 shouldn't help this person because we have already tried and tried to help
 them and they just don't get it, ignore them.

 I'm sure there is going to be more flaming for this response.  However I
 felt that I needed to explain my reaction earlier and again apologize to
the
 rest of the list for this public discussion that should have been
 private.Thank you,
 Katrina






~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306803
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


What's a better way to handle this?

2008-06-04 Thread Rick Faircloth
Hi, all...

I've got a database table of properties with mls numbers.
I've got a directory of photos.

I need to check and see if any of the photos names contain
the mls number of any of the properties, and, if so, copy the
matching photos to a new directory.

I tried querying the db for all mls numbers and also running
cfdirectory to get all the photo names.

Then I ran this code:

cfloop query='get_mls'
cfloop query=photolist
cfif #listfirst(photolist.name, '_')# is 
#get_mls.mls_number#
cfoutput#listfirst(photolist.name,
'_')#nbsp;nbsp;(#i#)/cfoutputbr
cfset i=i+1
/cfif
/cfloop
/cfloop

First problem:  request timeout
Solution:  cfsetting requesttimeout = '6'

Second problem:  java.lang.OutOfMemoryError: Java heap space

What a more efficient way of handling this process, assuming
the approach above would even work?

Thanks for any help!

Rick


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306804
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Forum software

2008-06-04 Thread Raymond Camden
To be clear - Rick did exactly that - some time ago. Galleon has come
a long way since Rick made his version. A lot of what was missing back
then is added back. One of the 'bells and whistles', BBML support, was
added a while ago as well.

On Wed, Jun 4, 2008 at 6:36 AM, Bobby Hartsfield [EMAIL PROTECTED] wrote:
 There are a few but inevitably, it boils down to bells and whistles. Ray
 Camden's Galleon is solid but lacks many of the aesthetic features that
 people like to see in heavily used, casual forums... but that makes it
 perfect for more formal uses. Rick Root built upon Galleon to add quite a
 few of those missing features and released it under CFMBB (I've not used it
 other than creating an account and posting a couple of messages). I recently
 released a new CF based forum app called CF4em (cf4em.com) and for all
 intent purposes, I think it is what you are looking for.
--
===
Raymond Camden, VP of Software Dev, Broadchoice

Email : [EMAIL PROTECTED]
Blog : www.coldfusionjedi.com
AOL IM : cfjedimaster

Keep up to date with the community: http://www.coldfusionbloggers.org

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306805
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Forum software

2008-06-04 Thread Raymond Camden
Please do. I know the guy who approves projects and while he is a bit
slow, he is quite handsome.

On Wed, Jun 4, 2008 at 6:39 AM, Bobby Hartsfield [EMAIL PROTECTED] wrote:
 Well not all... cause some of us have been too lazy to get around to listing
 our projects yet ;-)

 I'll get to it JeffC!! heh


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306806
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: SMS Gateway Questions

2008-06-04 Thread Jignesh Kakkad
Dear All

This is Jignesh Kakkad from India


I am working in Wireless domain and related to SMS projects

We do provide SMS connectivity where user can send SMS from the WEB site

let me know if any is intersted for the same?

Looking forward for your reply

Regards
jiggy

- Original Message - 
From: Dawson, Michael [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, May 28, 2008 10:06 AM
Subject: RE: SMS Gateway Questions


 We recently setup a deal with an SMS provider to sent emergency alerts to 
 our students and staff.  Our part of the deal has us paying for unlimited 
 SMS messages for a given price.

 However, our school does not pay for the recipients to receive the 
 messages.  The recipient is responsible for paying to receive the 
 messages.

 Although there are instances where the recipient doesn't pay, such as 
 requesting an account status message from your own cell provider, most of 
 the time, in the US, you pay to send and you pay to receive.

 You could think of it as a double-payment for a single message: The sender 
 pays to send the message and the recipient pays to receive the messages. 
 Therefore, a single message can cost a total of $0.40 for the full trip.

 In our case, we let the students/staff opt-in to receive the messages.  We 
 are not going to force a $0.20 message on anyone.  You would not believe 
 how bent people can get when forced to pay $0.20.

 Fortunately, my wife and I are on Sprint's unlimited messaging.  It costs 
 us $30/month extra, but we send/receive a few thousand messages each 
 month.

 m!ke

  _

 From: Mike Kear [mailto:[EMAIL PROTECTED]
 Sent: Tue 5/27/2008 11:15 PM
 To: CF-Talk
 Subject: Re: SMS Gateway Questions



 When you send like that,  who pays for the message?I'm pretty
 certain that the phone companies in teh USA arent working as charities
 adn will bill SOMONE for every message.  So that means unless you have
 a business relationship with att.com ot accept billing from the, your
 recipient is going to pay.

 That may or may not be a good thing.

 Here in Australia it would be suicide for most applications to expect
 your recipients to pay for the message.

 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com http://afpwebworks.com/
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month




 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306807
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: What's a better way to handle this?

2008-06-04 Thread Dawson, Michael
First, get your query from the database.  Then, get your query from
CFDIRECTORY.  Finally, put them together with a Query of a Query.

If that is slow, due to CF's processing, you could dump the CFDIRECTORY
query into the database and do that query.

Also, if you have SQL 2005, you could do this with an SSIS package.

m!ke

-Original Message-
From: Rick Faircloth [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 04, 2008 7:26 AM
To: CF-Talk
Subject: What's a better way to handle this?

Hi, all...

I've got a database table of properties with mls numbers.
I've got a directory of photos.

I need to check and see if any of the photos names contain the mls
number of any of the properties, and, if so, copy the matching photos to
a new directory.

I tried querying the db for all mls numbers and also running cfdirectory
to get all the photo names.

Then I ran this code:

cfloop query='get_mls'
cfloop query=photolist
cfif #listfirst(photolist.name, '_')# is
#get_mls.mls_number#
cfoutput#listfirst(photolist.name,
'_')#nbsp;nbsp;(#i#)/cfoutputbr
cfset i=i+1
/cfif
/cfloop
/cfloop

First problem:  request timeout
Solution:  cfsetting requesttimeout = '6'

Second problem:  java.lang.OutOfMemoryError: Java heap space

What a more efficient way of handling this process, assuming the
approach above would even work?

Thanks for any help!

Rick

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306808
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CSV Generation MEMORY SUCK

2008-06-04 Thread Rick Root
This whole discussion prompted two blog entries...

Regarding the javaCSV library:
http://www.opensourcecf.com/1/2008/06/JavaCSV-for-creating-large-CSV-and-other-delmiited-files-with-Coldfusion.cfm
*or http://tinyurl.com/58o7ox*
**
Regarding my cfsavecontent performance tests:
http://www.opensourcecf.com/1/2008/06/cfsavecontent-vs-cfset-for-performance-improvement.cfm
*or http://tinyurl.com/6cafst*

Rick


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306809
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CSV Generation MEMORY SUCK

2008-06-04 Thread Brad Wood
Who, that's weird-- this message came in my inbox late last night as a
duplicate of something I sent yesterday afternoon...  I wasn't even in
front of a computer at 11:45 pm.  :)

~Brad

-Original Message-
From: Brad Wood [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 03, 2008 11:45 AM
To: CF-Talk
Subject: RE: CSV Generation MEMORY SUCK

(Sorry, I got a little CTRL-Enter happy and sent before I was ready...)

Building up strings in cfsavecontent also concatenates to the result
variable so the problem is the same.

=

Hmm, I don't think ...

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306810
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Adobe ColdFusion Survey

2008-06-04 Thread Eric Roberts
It's who is the chair for something and the conference...so whatever you are
the chair of Ray..

Eric
/*-Original Message-
/*From: Raymond Camden [mailto:[EMAIL PROTECTED]
/*Sent: Tuesday, June 03, 2008 3:52 PM
/*To: CF-Talk
/*Subject: Re: Adobe ColdFusion Survey
/*
/*Woah - whats the last question? (Yes I'm too lazy to click on a link.)
/*
/*On Tue, Jun 3, 2008 at 3:26 PM, Andy Matthews [EMAIL PROTECTED]
/*wrote:
/* So as to make it simple, the answers to the last 3 questions are:
/*
/* 1) 2005
/* 2) 1:30
/* 3) Ray Camden
/*
/* While I'd love to win a touch, it's a little over the top to research
/* questions when we're already giving you information about our purchase
/*and
/* upgrade habits, PLUS our email addresses.
/*
/* -Original Message-
/* From: Michael Smith [mailto:[EMAIL PROTECTED]
/* Sent: Tuesday, June 03, 2008 2:34 PM
/* To: CF-Talk
/* Subject: Adobe ColdFusion Survey
/*
/* There is a new quick survey for everyone in the CF community to
/*participate
/* in. The results will be shared directly with Adobe and the general
/*public.
/* We want to know what version of ColdFusion you are using now. Plus a few
/* questions to help us prepare for the CFUnited conference.
/*
/* Answer all 8 questions by June 11th and be entered in a raffle to win a
/* brand new iTouch!
/*
/* http://cfunited.com/blog/index.cfm/2008/5/28/Adobe-ColdFusion-Survey-
/*and-Sca
/* venger-Hunt
/*
/* Thanks!
/*
/* --
/* Due to TeraTech's growth we are seeking winning sales people to sell
/*custom
/* software. For more details:
/* http://www.teratech.com/go/about-us/jobsjobsaction=detailjobid=3
/*
/* Michael Smith, TeraTech, Inc
/* 405 E Gude Dr Ste 207, Rockville MD 20850
/* Voice: +1-301-424-3903 x110 Fax:301-762-8185
/* Web: http://www.teratech.com/
/* Email:  mailto:[EMAIL PROTECTED] ICQ: 66057682 Winner in CFDJ awards
/*Best
/* Consulting. Member Team Fusebox.
/*
/*
/*
/*
/*
/*

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306811
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: do not increase counter is returns 0

2008-06-04 Thread Eric Roberts
My point is that if you are not going to be nice about your response, and
you wish to respond in that manner, then either don't respond or respond
privately.  I wasn't following the thread nor do I remember any of the posts
Erik has made, but if you were to look at Brian's posting, that would give
the impression that this is an unfriendly list and might scare away newbies
that would other gain a lot of knowledge from the guru's here.  That has
nothing to do with how much one has contributed to the community or not but
rather how this list appears to a new person.  Whether it was warranted or
not, I thought Brian's response was very rude.  I do appreciate Brain's
contributions and I have learned a lot from his posts, but that doesn't
excuse being rude to someone asking a question in a professional community.
If this wasn't a professional community I would say fire up the flame
throwers...I enjoy a good argument as much as the next guy, but this just
isn't an appropriate place for it.  We also don't know whatever resources he
access to as far as books or what his level of proficiency is.  When we
first got started, I bet many of us asked the same questions in our effort
to learn.

Eric

/*-Original Message-
/*From: Gerald Guido [mailto:[EMAIL PROTECTED]
/*Sent: Tuesday, June 03, 2008 4:15 PM
/*To: CF-Talk
/*Subject: Re: do not increase counter is returns 0
/*
/*True. I have wondered that too. I actually thought the same thing right
/*after I sent the email.  I don't want to chase off ppl either.
/*
/*
/*On Tue, Jun 3, 2008 at 5:02 PM, Mark Kruger [EMAIL PROTECTED]
/*wrote:
/*
/* Gerald,
/*
/* Regarding grammar and writing skill (and forgive me because I don't know
/* this) but is it possible there is a language barrier here? The subject
/*line
/* above reminds me of someone for whom English is possibly a second
/*language.
/* I don't know Erick but I certainly don't want to chase people away from
/*the
/* community on the basis of grammar if they already know (at least) one
/*more
/* language than I do :)
/*
/* -Mark
/*
/* Mark A. Kruger, CFG, MCSE
/* (402) 408-3733 ext 105
/* www.cfwebtools.com
/* www.coldfusionmuse.com
/* www.necfug.com
/*
/*
/*
/*--
/*The important thing in science is not so much to obtain new facts as to
/*discover new ways of thinking about them.
/*- Sir William Bragg
/*
/*
/*

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306812
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: do not increase counter is returns 0

2008-06-04 Thread Michael Dinowitz
This thread and all associated threads end NOW!

Your admin 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306813
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: do not increase counter is returns 0

2008-06-04 Thread Charlie Griefer
And in your quest to keep the list professional and make it seem like
a friendly place you opted to refer to Brian as a butthead.  Nicely
done.

Not for nothing, but whether it was warranted or not, it was very rude.

Pot... meet kettle.

On Wed, Jun 4, 2008 at 8:26 AM, Eric Roberts
[EMAIL PROTECTED] wrote:
 My point is that if you are not going to be nice about your response, and
 you wish to respond in that manner, then either don't respond or respond
 privately.  I wasn't following the thread nor do I remember any of the posts
 Erik has made, but if you were to look at Brian's posting, that would give
 the impression that this is an unfriendly list and might scare away newbies
 that would other gain a lot of knowledge from the guru's here.  That has
 nothing to do with how much one has contributed to the community or not but
 rather how this list appears to a new person.  Whether it was warranted or
 not, I thought Brian's response was very rude.  I do appreciate Brain's
 contributions and I have learned a lot from his posts, but that doesn't
 excuse being rude to someone asking a question in a professional community.
 If this wasn't a professional community I would say fire up the flame
 throwers...I enjoy a good argument as much as the next guy, but this just
 isn't an appropriate place for it.  We also don't know whatever resources he
 access to as far as books or what his level of proficiency is.  When we
 first got started, I bet many of us asked the same questions in our effort
 to learn.

 Eric

 /*-Original Message-
 /*From: Gerald Guido [mailto:[EMAIL PROTECTED]
 /*Sent: Tuesday, June 03, 2008 4:15 PM
 /*To: CF-Talk
 /*Subject: Re: do not increase counter is returns 0
 /*
 /*True. I have wondered that too. I actually thought the same thing right
 /*after I sent the email.  I don't want to chase off ppl either.
 /*
 /*
 /*On Tue, Jun 3, 2008 at 5:02 PM, Mark Kruger [EMAIL PROTECTED]
 /*wrote:
 /*
 /* Gerald,
 /*
 /* Regarding grammar and writing skill (and forgive me because I don't know
 /* this) but is it possible there is a language barrier here? The subject
 /*line
 /* above reminds me of someone for whom English is possibly a second
 /*language.
 /* I don't know Erick but I certainly don't want to chase people away from
 /*the
 /* community on the basis of grammar if they already know (at least) one
 /*more
 /* language than I do :)
 /*
 /* -Mark
 /*
 /* Mark A. Kruger, CFG, MCSE
 /* (402) 408-3733 ext 105
 /* www.cfwebtools.com
 /* www.coldfusionmuse.com
 /* www.necfug.com
 /*
 /*
 /*
 /*--
 /*The important thing in science is not so much to obtain new facts as to
 /*discover new ways of thinking about them.
 /*- Sir William Bragg
 /*
 /*
 /*

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306814
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Adobe ColdFusion Survey

2008-06-04 Thread Michael Dinowitz
1. All marketing posts should either be cleared before being posted to the list 
or posted to a non-technical list like CF-OT or CF-Community.
2. While discussion about the merits of the survey may be of community 
interest, please move it to another list. CF-OT is perfect for this.
3. Only you can prevent list fires - only you. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306815
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Best CF editor?

2008-06-04 Thread Eric Roberts
I can see how a CFC can get large as is it supposed to be a library of like
functions, so if you had a site that had a calendar that was cfc based (for
instance) and you had all of you calendaring functions in that cfc, that
could get huge.  Would you really want to break up the functional unit into
separate CFC's?  Would that be any more efficient than having them in one
big file (as long as they were all related of course).

Eric

/*-Original Message-
/*From: Michael Christensen [mailto:[EMAIL PROTECTED]
/*Sent: Wednesday, June 04, 2008 5:42 AM
/*To: CF-Talk
/*Subject: Re: Best CF editor?
/*
/*So if I have a file - file.cfc for example - I could split it up easily?
/*
/*But would I still be able to instanciate it the same way?
/*
/*
/* I am sure you know as well as I, that sometimes refactoring is just not
/*an option...
/*
/*That's true, although with either CFCs or includes there are easy ways
/*to divide the file up into multiple without actually refactoring them
/*and take just a few minutes.
/*
/*cfif b...1000 lines of codecfelse...1000 lines of code/cfif
/*
/*becomes
/*
/*cfif bcfinclude template=1000lines.cfm
/*cfelsecfinclude template=1000lines2.cfm/cfif
/*
/*Or in a CFC
/*
/*cfcomponent extends=thing
/*... 2000 lines ...
/*/cfcomponent
/*
/*becomes
/*
/*cfcomponent extends=thing
/*...1000 lines ...
/*/cfcomponent
/*
/*cfcomponent extends=1000lines
/*...another 1000 lines...
/*/cfcomponent
/*
/*Inelegant though it may be, it's not very time consuming.
/*
/*--
/*s. isaac dealey  ^  new epoch
/* isn't it time for a change?
/* ph: 617.365.5732
/*
/*http://onTap.riaforge.org/blog
/*
/*

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306816
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Adobe ColdFusion Survey

2008-06-04 Thread Eric Roberts
Got it Smokey ;-) *getting Michael a Smokey the Bear hat* hehehe

Eric

/*-Original Message-
/*From: Michael Dinowitz [mailto:[EMAIL PROTECTED]
/*Sent: Wednesday, June 04, 2008 10:35 AM
/*To: CF-Talk
/*Subject: Re: Adobe ColdFusion Survey
/*
/*1. All marketing posts should either be cleared before being posted to the
/*list or posted to a non-technical list like CF-OT or CF-Community.
/*2. While discussion about the merits of the survey may be of community
/*interest, please move it to another list. CF-OT is perfect for this.
/*3. Only you can prevent list fires - only you.
/*
/*

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306817
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CSV Generation MEMORY SUCK

2008-06-04 Thread Larry Lyons
 This whole discussion prompted two blog entries...
 
 Regarding the javaCSV library:
 http://www.opensourcecf.
com/1/2008/06/Ja 
vaCSV-for-creating-large-CSV-and-other-delmiited-files-with-Coldfusion.
 cfm
 *or http://tinyurl.com/58o7ox*
 **
 Regarding my cfsavecontent performance tests:
 http://www.opensourcecf.
 com/1/2008/06/cfsavecontent-vs-cfset-for-performance-improvement.cfm
 *or http://tinyurl.com/6cafst*
 
 Rick

Rick,

I thought I run your code test cfset vs cfsavecontent on a slightly different 
platform - BlueDragon for J2EE running on JBoss AS 4.22 on an XP Pox (intel 
core 2 duo with 2gig memory). Here are the results:

cfset 145861ms : 488895

cfsavecontent 766ms : 488895

regards,
larry


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306818
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CSV Generation MEMORY SUCK

2008-06-04 Thread Brad Wood
That's pretty cool, Larry.  I was wondering about BD and Smith.  
Will J2EE BD let you create the java.lang.runtime object to get memory
usage etc?  If so, I would be interested in seeing the results of my
version of the test which reported the memory increase for each test.
(I posted the code yesterday.  Let me know if the word-wraps trashed
it).

~Brad

=

Rick,

I thought I run your code test cfset vs cfsavecontent on a slightly
different platform - BlueDragon for J2EE running on JBoss AS 4.22 on an
XP Pox (intel core 2 duo with 2gig memory). Here are the results:

cfset 145861ms : 488895

cfsavecontent 766ms : 488895

regards,
larry

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306819
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Adobe ColdFusion Survey

2008-06-04 Thread Billy Cox
I guess I got #3 wrong. I looked at the advanced CF track and didn't see any
'chair' mentioned. The only presenter in that track who was also in the
choices was Hal Helms.

What's an iTouch anyway, and why do I want one?  ;)


-Original Message-
From: Charlie Griefer [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 03, 2008 3:31 PM
To: CF-Talk
Subject: Re: Adobe ColdFusion Survey


d'oh!  i got #2 wrong.  i thought it asked what time it ends :(

On Tue, Jun 3, 2008 at 1:26 PM, Andy Matthews [EMAIL PROTECTED]
wrote:
 So as to make it simple, the answers to the last 3 questions are:

 1) 2005
 2) 1:30
 3) Ray Camden

 While I'd love to win a touch, it's a little over the top to research 
 questions when we're already giving you information about our purchase 
 and upgrade habits, PLUS our email addresses.

 -Original Message-
 From: Michael Smith [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, June 03, 2008 2:34 PM
 To: CF-Talk
 Subject: Adobe ColdFusion Survey

 There is a new quick survey for everyone in the CF community to 
 participate in. The results will be shared directly with Adobe and the 
 general public. We want to know what version of ColdFusion you are 
 using now. Plus a few questions to help us prepare for the CFUnited 
 conference.

 Answer all 8 questions by June 11th and be entered in a raffle to win 
 a brand new iTouch!

 http://cfunited.com/blog/index.cfm/2008/5/28/Adobe-ColdFusion-Survey-a
 nd-Sca
 venger-Hunt

 Thanks!

 --
 Due to TeraTech's growth we are seeking winning sales people to sell 
 custom software. For more details: 
 http://www.teratech.com/go/about-us/jobsjobsaction=detailjobid=3

 Michael Smith, TeraTech, Inc
 405 E Gude Dr Ste 207, Rockville MD 20850
 Voice: +1-301-424-3903 x110 Fax:301-762-8185
 Web: http://www.teratech.com/
 Email:  mailto:[EMAIL PROTECTED] ICQ: 66057682 Winner in CFDJ 
 awards Best Consulting. Member Team Fusebox.



 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306820
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Error in url parameter

2008-06-04 Thread Yogendra Shivhare
I am getting following error in my applicationElement FORM_ID is undefined in 
URL. 
G:\ITO_Services_Webs\iForms\sessionMgmt.cfm: line 103 
101 : cfquery name=Get_Form datasource=#iForms_DSN# 
102 : EXEC SP_Get_Form 1
103 : @Form_ID = #URL.FORM_ID#, 
104 : @Key_Type = '#URL.Key_Type#', 
105 : @Key_ID = #URL.Key_ID#
Form id is always there in url when one try to access the site. Link is 
http://iforms.sbc.com/iforms_loader.cfm?Form_id=67Key_Type=VPMO_IDKey_ID=71241SBCUID=dw4694IO_Mode=1uiid=86972628

Here is the stack trace:
Error,jrpp-722,06/04/08,10:12:47,iForms,Element FORM_ID is undefined 
in URL. The specific sequence of files included or processed is: 
G:\ITO_Services_Webs\iForms\parser.cfm  
coldfusion.runtime.UndefinedElementException: Element FORM_ID is undefined in 
URL. at coldfusion.runtime.CfJspPage.resolveCanonicalName(CfJspPage.java:1054) 
at coldfusion.runtime.CfJspPage._resolve(CfJspPage.java:1031) at 
coldfusion.runtime.CfJspPage._resolveAndAutoscalarize(CfJspPage.java:1130) at 
cfsessionMgmt2ecfm41580940.runPage(G:\ITO_Services_Webs\iForms\sessionMgmt.cfm:103)
 at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152) at 
coldfusion.filter.CFVariablesScopeFilter.invoke(CFVariablesScopeFilter.java:63) 
at coldfusion.tagext.lang.ModuleTag.doStartTag(ModuleTag.java:255) at 
coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:1918) at 
cfparser2ecfm1959136383.runPage(G:\ITO_Services_Webs\iForms\parser.cfm:25) at 
coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152) at 
coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343) at 
coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65) at 
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210) at 
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51) at 
coldfusion.filter.PathFilter.invoke(PathFilter.java:86) at 
coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50) at 
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52) at 
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
 at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at 
coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at 
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at 
coldfusion.CfmServlet.service(CfmServlet.java:105) at 
coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78) at 
jrun.servlet.FilterChain.doFilter(FilterChain.java:86) at 
com.seefusion.Filter.doFilter(Filter.java:49) at 
com.seefusion.SeeFusion.doFilter(SeeFusion.java:1500) at 
jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at 
jrun.servlet.FilterChain.service(FilterChain.java:101) at 
jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91) at 
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42) at 
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257) at 
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527) at 
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204) at 
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
 at 
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457) 
at 
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295) 
at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66) 

I am new to cold fusion and would appreciate any help you can provide.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306821
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Error in url parameter

2008-06-04 Thread Katrina Chapman
Noy sure if you're having the same issue I was having the other day but I ran 
into a case Issue.

You're passing the variable as Form_id in the URL but calling it as FORM_ID in 
your query.  Try making them match.  Both FORM_ID or both Form_id.

I know this shouldn't matter but it fixed a similar problem I was having.

 Thank you,
Katrina


If people knew how hard I worked to gain my mastery,
it wouldn't seem so wonderful after all.
--Michelangelo



- Original Message 
From: Yogendra Shivhare [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, June 4, 2008 10:25:13 AM
Subject: Error in url parameter

I am getting following error in my applicationElement FORM_ID is undefined in 
URL. 
G:\ITO_Services_Webs\iForms\sessionMgmt.cfm: line 103 
101 : cfquery name=Get_Form datasource=#iForms_DSN# 
102 : EXEC SP_Get_Form 1
103 : @Form_ID = #URL.FORM_ID#, 
104 : @Key_Type = '#URL.Key_Type#', 
105 : @Key_ID = #URL.Key_ID#
Form id is always there in url when one try to access the site. Link is 
http://iforms.sbc.com/iforms_loader.cfm?Form_id=67Key_Type=VPMO_IDKey_ID=71241SBCUID=dw4694IO_Mode=1uiid=86972628

Here is the stack trace:
Error,jrpp-722,06/04/08,10:12:47,iForms,Element FORM_ID is undefined 
in URL. The specific sequence of files included or processed is: 
G:\ITO_Services_Webs\iForms\parser.cfm  
coldfusion.runtime.UndefinedElementException: Element FORM_ID is undefined in 
URL. at coldfusion.runtime.CfJspPage.resolveCanonicalName(CfJspPage.java:1054) 
at coldfusion.runtime.CfJspPage._resolve(CfJspPage.java:1031) at 
coldfusion.runtime.CfJspPage._resolveAndAutoscalarize(CfJspPage.java:1130) at 
cfsessionMgmt2ecfm41580940.runPage(G:\ITO_Services_Webs\iForms\sessionMgmt.cfm:103)
 at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152) at 
coldfusion.filter.CFVariablesScopeFilter.invoke(CFVariablesScopeFilter.java:63) 
at coldfusion.tagext.lang.ModuleTag.doStartTag(ModuleTag.java:255) at 
coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:1918) at 
cfparser2ecfm1959136383.runPage(G:\ITO_Services_Webs\iForms\parser.cfm:25) at
 coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152) at 
coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343) at 
coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65) at 
coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210) at 
coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51) at 
coldfusion.filter.PathFilter.invoke(PathFilter.java:86) at 
coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50) at 
coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52) at 
coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
 at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at 
coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at 
coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at 
coldfusion.CfmServlet.service(CfmServlet.java:105) at
 coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78) at 
jrun.servlet.FilterChain.doFilter(FilterChain.java:86) at 
com.seefusion.Filter.doFilter(Filter.java:49) at 
com.seefusion.SeeFusion.doFilter(SeeFusion.java:1500) at 
jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at 
jrun.servlet.FilterChain.service(FilterChain.java:101) at 
jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91) at 
jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42) at 
jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257) at 
jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527) at 
jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204) at 
jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
 at 
jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457) 
at 
jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295) 
at
 jrunx.scheduler.WorkerThread.run(WorkerThread.java:66) 

I am new to cold fusion and would appreciate any help you can provide.



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306822
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Best CF editor?

2008-06-04 Thread Brian Kotek
If the file is so large that the IDE can't load it, that means we're talking
about thousands or tens of thousands of lines of code. It really needs to be
split up into smaller components that do more specific things, because what
this really becomes is an example of an anti-pattern known as a God Object (
http://en.wikipedia.org/wiki/God_object). Maintenance is almost guaranteed
to become more difficult as time goes on.

On Wed, Jun 4, 2008 at 6:41 AM, Michael Christensen [EMAIL PROTECTED]
wrote:

 So if I have a file - file.cfc for example - I could split it up easily?

 But would I still be able to instanciate it the same way?






~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306823
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Error in url parameter

2008-06-04 Thread Yogendra Shivhare
Katrina Thanks for the reply but it didn't work


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306824
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Error in url parameter

2008-06-04 Thread Charlie Griefer
prior to the cfquery, do this:

cfdump var=#URL# /cfabort /

look at the results of the dump and verify that the values that you're
expecting actually exist in the scope.

On Wed, Jun 4, 2008 at 10:33 AM, Yogendra Shivhare
[EMAIL PROTECTED] wrote:
 Katrina Thanks for the reply but it didn't work


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306825
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best CF editor?

2008-06-04 Thread Larry Lyons
So if I have a file - file.cfc for example - I could split it up easily?

But would I still be able to instanciate it the same way?



Yes `0 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306826
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Error in url parameter

2008-06-04 Thread Gerald Guido
try this Put this before the cfquery and see if you are passing the correct
URL vars.
cfdump var=#url#
cfabort



On Wed, Jun 4, 2008 at 12:25 PM, Yogendra Shivhare 
[EMAIL PROTECTED] wrote:

 I am getting following error in my applicationElement FORM_ID is undefined
 in URL.
 G:\ITO_Services_Webs\iForms\sessionMgmt.cfm: line 103
 101 : cfquery name=Get_Form datasource=#iForms_DSN#
 102 : EXEC SP_Get_Form 1
 103 : @Form_ID = #URL.FORM_ID#,
 104 : @Key_Type = '#URL.Key_Type#',
 105 : @Key_ID = #URL.Key_ID#
 Form id is always there in url when one try to access the site. Link is
 http://iforms.sbc.com/iforms_loader.cfm?Form_id=67Key_Type=VPMO_IDKey_ID=71241SBCUID=dw4694IO_Mode=1uiid=86972628

 Here is the stack trace:
 Error,jrpp-722,06/04/08,10:12:47,iForms,Element FORM_ID is
 undefined in URL. The specific sequence of files included or processed is:
 G:\ITO_Services_Webs\iForms\parser.cfm 
 coldfusion.runtime.UndefinedElementException: Element FORM_ID is undefined
 in URL. at
 coldfusion.runtime.CfJspPage.resolveCanonicalName(CfJspPage.java:1054) at
 coldfusion.runtime.CfJspPage._resolve(CfJspPage.java:1031) at
 coldfusion.runtime.CfJspPage._resolveAndAutoscalarize(CfJspPage.java:1130)
 at
 cfsessionMgmt2ecfm41580940.runPage(G:\ITO_Services_Webs\iForms\sessionMgmt.cfm:103)
 at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152) at
 coldfusion.filter.CFVariablesScopeFilter.invoke(CFVariablesScopeFilter.java:63)
 at coldfusion.tagext.lang.ModuleTag.doStartTag(ModuleTag.java:255) at
 coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:1918) at
 cfparser2ecfm1959136383.runPage(G:\ITO_Services_Webs\iForms\parser.cfm:25)
 at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152) at
 coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343) at
 coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65) at
 coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210) at
 coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
 at coldfusion.filter.PathFilter.invoke(PathFilter.java:86) at
 coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50) at
 coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52) at
 coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
 at coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38) at
 coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38) at
 coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22) at
 coldfusion.CfmServlet.service(CfmServlet.java:105) at
 coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78) at
 jrun.servlet.FilterChain.doFilter(FilterChain.java:86) at
 com.seefusion.Filter.doFilter(Filter.java:49) at
 com.seefusion.SeeFusion.doFilter(SeeFusion.java:1500) at
 jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at
 jrun.servlet.FilterChain.service(FilterChain.java:101) at
 jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91) at
 jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42) at
 jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257) at
 jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527) at
 jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
 at
 jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
 at
 jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
 at
 jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
 at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

 I am new to cold fusion and would appreciate any help you can provide.

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306827
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Another open source CF CMS

2008-06-04 Thread Marco Antonio C. Santos
Looks like very interesting:

http://www.gosava.com/sava/

Cheers
Marco Antonio


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306828
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best CF editor?

2008-06-04 Thread Larry Lyons
So if I have a file - file.cfc for example - I could split it up easily?

But would I still be able to instanciate it the same way?



Yes, just make sure you're not using a cfinclude within a function. That 
exposes all protected local vars. Rather include the entire function as in
!--- componentExample.cfc ---
cfcomponent output = false etc

 cfinclude template= /pathToFunctions/function1.cfm
 cfinclude template= /pathToFunctions/function2.cfm
 etc.
/cfcomponent

then you can instantiate it as usual 
cfset compExample = CreateObject(component, componentExample) /

hth,
larry 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306829
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Session and Request variables are being shared between users

2008-06-04 Thread Dustin Martin
I have altered some of the links to make them unique and that appears to have 
resolved the issue. However, in the process of trying different things, a NEW 
problem arose. I started trying out the CFHEADER tag and looked around and 
found a couple possibilities to try to prevent caching. The problem is that 
when the user hits the back button, the page is said to be expired and they 
must hit refresh if they want to view it. I took out the CFHEADER tags I was 
using but the 'page expired' message is still being shown. It would be nice if 
the caching could be controlled via HTTP headers and not have to alter the 
links to make each page unique but have the users be able to click back is 
important to have as well. Thanks.


It is far more likely to share session variables than request
variables, so just focus on the session variable problem.
If you switch to using J2EE sessions, the problem might go away immediately.
If you are using traditional sessions, start logging cfide and cftoken
values and confirm that these values are identical for the people with
the issue.
Apply all the service packs and hotfixes to CF that you can.
You can try putting cache disabling code in the site.
You can try to make every URL unique for a user by putting a
user-specific variable in the query string of every link.
You can create your own secure session management code that doesn't
use the standard cookie values that CF creates.

Good luck,
Mike Chabot

On Sat, May 31, 2008 at 12:39 AM, Dustin Martin [EMAIL PROTECTED] wrote:
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306830
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CSV Generation MEMORY SUCK

2008-06-04 Thread Larry Lyons
Here are the results of your code (again BD for J2EE running on JBoss AS 4.22):

string  string: 33251ms
String Length: 39
cfsavecontent: 62ms
String Length: 570006

I ran the test several times, mainly because the results for cfsavecontent 
looked so much like an outlier, but I got similar results.

I'll have to dig up that code you posted, but in general since BlueDragon for 
J2EE sits on top of a java application server it can access the 
java.lang.runtime object no problem. When I get home tonight I'll run these 
tests again using open BlueDragon for J2EE, but I doubt there will be any 
differences.

regards,
larry

That's pretty cool, Larry.  I was wondering about BD and Smith.  
Will J2EE BD let you create the java.lang.runtime object to get memory
usage etc?  If so, I would be interested in seeing the results of my
version of the test which reported the memory increase for each test.
(I posted the code yesterday.  Let me know if the word-wraps trashed
it).

~Brad

=

Rick,

I thought I run your code test cfset vs cfsavecontent on a slightly
different platform - BlueDragon for J2EE running on JBoss AS 4.22 on an
XP Pox (intel core 2 duo with 2gig memory). Here are the results:

cfset 145861ms : 488895

cfsavecontent 766ms : 488895

regards,
larry 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306831
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CSV Generation MEMORY SUCK

2008-06-04 Thread Larry Lyons
Here are the results of your code with java.lang.runtime. Forgot to mention 
that the JVM is 1.5.0_15-b04. 

Memory Before: 28 Megs
string  string: 99642ms
String Length: 65
Memory After: 91 Megs -- Increase of 63 Megs

Memory Before: 29 Megs
cfsavecontent: 63ms
String Length: 850003
Memory After: 37 Megs -- Increase of 8 Megs

Basically what this tells me is that you should use cfsavecontent rather than 
concatenating strings. But I was not expecting such a difference.

larry

 Here are the results of your code (again BD for J2EE running on JBoss 
 AS 4.22):
 
 string  string: 33251ms
 String Length: 39
 cfsavecontent: 62ms
 String Length: 570006
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306832
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Error in url parameter

2008-06-04 Thread Shivhare Yogendra
I tried and below is the result so I do have values but error is still there

struct 
FORM_ID 67  
IO_MODE 1  
KEY_ID 71241  
KEY_TYPE VPMO_ID  
SBCUID dw4694  
UIID 86972628  
WINSIZE 1000x690  


 Thanks    Yogendra Shivhare  Programmer Analyst  INFOSYS TECHNOLOGIES Ltd.  
‘Life is what happens when you’re making other plans…!’ 


--- On Wed, 6/4/08, Gerald Guido [EMAIL PROTECTED] wrote:

 From: Gerald Guido [EMAIL PROTECTED]
 Subject: Re: Error in url parameter
 To: CF-Talk cf-talk@houseoffusion.com
 Date: Wednesday, June 4, 2008, 11:09 PM
 try this Put this before the cfquery and see if you are
 passing the correct
 URL vars.
 cfdump var=#url#
 cfabort
 
 
 
 On Wed, Jun 4, 2008 at 12:25 PM, Yogendra Shivhare 
 [EMAIL PROTECTED] wrote:
 
  I am getting following error in my applicationElement
 FORM_ID is undefined
  in URL.
 
 G:\ITO_Services_Webs\iForms\sessionMgmt.cfm:
 line 103
  101 : cfquery name=Get_Form
 datasource=#iForms_DSN#
  102 : EXEC SP_Get_Form 1
  103 : @Form_ID = #URL.FORM_ID#,
  104 : @Key_Type = '#URL.Key_Type#',
  105 : @Key_ID = #URL.Key_ID#
  Form id is always there in url when one try to access
 the site. Link is
 
 http://iforms.sbc.com/iforms_loader.cfm?Form_id=67Key_Type=VPMO_IDKey_ID=71241SBCUID=dw4694IO_Mode=1uiid=86972628
 
  Here is the stack trace:
 
 Error,jrpp-722,06/04/08,10:12:47,iForms,Element
 FORM_ID is
  undefined in URL. The specific sequence of files
 included or processed is:
  G:\ITO_Services_Webs\iForms\parser.cfm
 
  coldfusion.runtime.UndefinedElementException: Element
 FORM_ID is undefined
  in URL. at
 
 coldfusion.runtime.CfJspPage.resolveCanonicalName(CfJspPage.java:1054)
 at
 
 coldfusion.runtime.CfJspPage._resolve(CfJspPage.java:1031)
 at
 
 coldfusion.runtime.CfJspPage._resolveAndAutoscalarize(CfJspPage.java:1130)
  at
 
 cfsessionMgmt2ecfm41580940.runPage(G:\ITO_Services_Webs\iForms\sessionMgmt.cfm:103)
  at
 coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152) at
 
 coldfusion.filter.CFVariablesScopeFilter.invoke(CFVariablesScopeFilter.java:63)
  at
 coldfusion.tagext.lang.ModuleTag.doStartTag(ModuleTag.java:255)
 at
 
 coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:1918)
 at
 
 cfparser2ecfm1959136383.runPage(G:\ITO_Services_Webs\iForms\parser.cfm:25)
  at
 coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152) at
 
 coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
 at
 
 coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
 at
 
 coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
 at
 
 coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
  at
 coldfusion.filter.PathFilter.invoke(PathFilter.java:86) at
 
 coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
 at
 
 coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
 at
 
 coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
  at
 coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
 at
 
 coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
 at
 
 coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
 at
  coldfusion.CfmServlet.service(CfmServlet.java:105) at
 
 coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
 at
  jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
 at
  com.seefusion.Filter.doFilter(Filter.java:49) at
  com.seefusion.SeeFusion.doFilter(SeeFusion.java:1500)
 at
  jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
 at
  jrun.servlet.FilterChain.service(FilterChain.java:101)
 at
 
 jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
 at
 
 jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
 at
 
 jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
 at
 
 jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
 at
 
 jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
  at
 
 jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
  at
 
 jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
  at
 
 jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
  at
 jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
 
  I am new to cold fusion and would appreciate any help
 you can provide.
 
  
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306833
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Error in url parameter

2008-06-04 Thread Aaron Rouse
How is the sessionMgmt.cfm file ran/called from within the iforms_loader.cfm
file?

On Wed, Jun 4, 2008 at 2:14 PM, Shivhare Yogendra 
[EMAIL PROTECTED] wrote:

 I tried and below is the result so I do have values but error is still
 there

 struct
 FORM_ID 67
 IO_MODE 1
 KEY_ID 71241
 KEY_TYPE VPMO_ID
 SBCUID dw4694
 UIID 86972628
 WINSIZE 1000x690


 Â ThanksÂYogendra Shivhare  Programmer Analyst  INFOSYS TECHNOLOGIES
 Ltd.  ‘Life is what happens when you’re making other plans…!’


 --- On Wed, 6/4/08, Gerald Guido [EMAIL PROTECTED] wrote:

  From: Gerald Guido [EMAIL PROTECTED]
  Subject: Re: Error in url parameter
  To: CF-Talk cf-talk@houseoffusion.com
  Date: Wednesday, June 4, 2008, 11:09 PM
  try this Put this before the cfquery and see if you are
  passing the correct
  URL vars.
  cfdump var=#url#
  cfabort
 
 
 
  On Wed, Jun 4, 2008 at 12:25 PM, Yogendra Shivhare 
  [EMAIL PROTECTED] wrote:
 
   I am getting following error in my applicationElement
  FORM_ID is undefined
   in URL.
  
  G:\ITO_Services_Webs\iForms\sessionMgmt.cfm:
  line 103
   101 : cfquery name=Get_Form
  datasource=#iForms_DSN#
   102 : EXEC SP_Get_Form 1
   103 : @Form_ID = #URL.FORM_ID#,
   104 : @Key_Type = '#URL.Key_Type#',
   105 : @Key_ID = #URL.Key_ID#
   Form id is always there in url when one try to access
  the site. Link is
  
 
 http://iforms.sbc.com/iforms_loader.cfm?Form_id=67Key_Type=VPMO_IDKey_ID=71241SBCUID=dw4694IO_Mode=1uiid=86972628
  
   Here is the stack trace:
  
  Error,jrpp-722,06/04/08,10:12:47,iForms,Element
  FORM_ID is
   undefined in URL. The specific sequence of files
  included or processed is:
   G:\ITO_Services_Webs\iForms\parser.cfm
  
   coldfusion.runtime.UndefinedElementException: Element
  FORM_ID is undefined
   in URL. at
  
  coldfusion.runtime.CfJspPage.resolveCanonicalName(CfJspPage.java:1054)
  at
  
  coldfusion.runtime.CfJspPage._resolve(CfJspPage.java:1031)
  at
  
 
 coldfusion.runtime.CfJspPage._resolveAndAutoscalarize(CfJspPage.java:1130)
   at
  
 
 cfsessionMgmt2ecfm41580940.runPage(G:\ITO_Services_Webs\iForms\sessionMgmt.cfm:103)
   at
  coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152) at
  
 
 coldfusion.filter.CFVariablesScopeFilter.invoke(CFVariablesScopeFilter.java:63)
   at
  coldfusion.tagext.lang.ModuleTag.doStartTag(ModuleTag.java:255)
  at
  
  coldfusion.runtime.CfJspPage._emptyTcfTag(CfJspPage.java:1918)
  at
  
 
 cfparser2ecfm1959136383.runPage(G:\ITO_Services_Webs\iForms\parser.cfm:25)
   at
  coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:152) at
  
  coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:343)
  at
  
  coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
  at
  
  coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:210)
  at
  
 
 coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:51)
   at
  coldfusion.filter.PathFilter.invoke(PathFilter.java:86) at
  
  coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:50)
  at
  
  coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:52)
  at
  
 
 coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:28)
   at
  coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
  at
  
  coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
  at
  
  coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
  at
   coldfusion.CfmServlet.service(CfmServlet.java:105) at
  
  coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:78)
  at
   jrun.servlet.FilterChain.doFilter(FilterChain.java:86)
  at
   com.seefusion.Filter.doFilter(Filter.java:49) at
   com.seefusion.SeeFusion.doFilter(SeeFusion.java:1500)
  at
   jrun.servlet.FilterChain.doFilter(FilterChain.java:94)
  at
   jrun.servlet.FilterChain.service(FilterChain.java:101)
  at
  
  jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:91)
  at
  
  jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
  at
  
  jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:257)
  at
  
  jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:527)
  at
  
 
 jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:204)
   at
  
 
 jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:349)
   at
  
 
 jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:457)
   at
  
 
 jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:295)
   at
  jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
  
   I am new to cold fusion and would appreciate any help
  you can provide.
  
  
 
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 

RE: Error in url parameter

2008-06-04 Thread Bob Imperial
I don't think Gerald meant it as a solution but a step in identifying where 
there problem might be. You know it's being passed, I would check the db to 
see what datatype that field is to be sure of what it's expecting?

Bob

-Original Message-
From: Shivhare Yogendra [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 04, 2008 3:14 PM
To: CF-Talk
Subject: Re: Error in url parameter

I tried and below is the result so I do have values but error is still there

struct
FORM_ID 67
IO_MODE 1
KEY_ID 71241
KEY_TYPE VPMO_ID
SBCUID dw4694
UIID 86972628
WINSIZE 1000x690


 ThanksÂYogendra Shivhare  Programmer Analyst  INFOSYS TECHNOLOGIES Ltd. 
â?~Life is what happens when youâ?Tre making other plansâ?¦!â?T


--- On Wed, 6/4/08, Gerald Guido [EMAIL PROTECTED] wrote:

 From: Gerald Guido [EMAIL PROTECTED]
 Subject: Re: Error in url parameter
 To: CF-Talk cf-talk@houseoffusion.com
 Date: Wednesday, June 4, 2008, 11:09 PM
 try this Put this before the cfquery and see if you are
 passing the correct
 URL vars.
 cfdump var=#url#
 cfabort



 On Wed, Jun 4, 2008 at 12:25 PM, Yogendra Shivhare 
 [EMAIL PROTECTED] wrote:

  I am getting following error in my applicationElement
 FORM_ID is undefined
  in URL.
 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306835
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


windows performance monitor

2008-06-04 Thread Chad Gray
Since I have CF8 Standard I don't get the built in performance monitoring in 
CFAdmin.

So I thought I would fire up Window's performance monitor and load up some CF8 
counters.

I selected the CF8 Server Performance object and I cant add any counters.  The 
add button is grayed out.

I know in the pasti have done this with CF5 or MX (cant remember).

Anyone know why?  Or how to get them to work?

I have one application that users say it is slowing to a crawl and I need to 
figure out why.

Thanks,
Chad


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306836
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: windows performance monitor

2008-06-04 Thread Alan Rother
You have to enable cfstat in the CF Administrator under Debugging

Enable CFSTAT
The cfstat command-line utility provides real-time performance metrics
for ColdFusion. Using a socket connection to obtain metric data,
cfstat displays the information that ColdFusion writes to System
Monitor without actually using the System Monitor application.



-- 
Alan Rother
Adobe Certified Advanced ColdFusion MX 7 Developer
Manager, Phoenix Cold Fusion User Group, AZCFUG.org

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306837
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: windows performance monitor

2008-06-04 Thread Alan Rother
You have to enable cfstat in the CF Administrator under Debugging

Enable CFSTAT
The cfstat command-line utility provides real-time performance metrics
for ColdFusion. Using a socket connection to obtain metric data,
cfstat displays the information that ColdFusion writes to System
Monitor without actually using the System Monitor application.



-- 
Alan Rother
Adobe Certified Advanced ColdFusion MX 7 Developer
Manager, Phoenix Cold Fusion User Group, AZCFUG.org

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306838
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: windows performance monitor

2008-06-04 Thread Chad Gray
Ah!  Thanks!

I clicked it on, but the setting does not seem to hold.  If I navigate back to 
the Debug page in the CFAdmin it is un-checked.

Do I have to re-start the service?

Thanks!
Chad


 -Original Message-
 From: Alan Rother [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, June 04, 2008 3:41 PM
 To: CF-Talk
 Subject: Re: windows performance monitor
 
 You have to enable cfstat in the CF Administrator under Debugging
 
 Enable CFSTAT
 The cfstat command-line utility provides real-time performance metrics
 for ColdFusion. Using a socket connection to obtain metric data,
 cfstat displays the information that ColdFusion writes to System
 Monitor without actually using the System Monitor application.
 
 
 
 --
 Alan Rother
 Adobe Certified Advanced ColdFusion MX 7 Developer
 Manager, Phoenix Cold Fusion User Group, AZCFUG.org
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306839
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Error in url parameter

2008-06-04 Thread Shivhare Yogendra
Aaron,

Its using cf_sessionMgmt tag

--- On Thu, 6/5/08, Aaron Rouse [EMAIL PROTECTED] wrote:

 From: Aaron Rouse [EMAIL PROTECTED]
 Subject: Re: Error in url parameter
 To: CF-Talk cf-talk@houseoffusion.com
 Date: Thursday, June 5, 2008, 12:49 AM
 How is the sessionMgmt.cfm file ran/called from within the
 iforms_loader.cfm
 file?
/unsubscribe.cfm?user=32796.23019.4


  

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306840
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: windows performance monitor

2008-06-04 Thread Chad Gray
Ya I restarted the CF8 service and the option does not stay turned on.

I click submit and it shows it checked.

I nagigate away from the page and back and it is not checked anymore.

I re-start the service and it still is un-checked.

Strange.


 -Original Message-
 From: Chad Gray [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, June 04, 2008 3:46 PM
 To: CF-Talk
 Subject: RE: windows performance monitor
 
 Ah!  Thanks!
 
 I clicked it on, but the setting does not seem to hold.  If I navigate
 back to the Debug page in the CFAdmin it is un-checked.
 
 Do I have to re-start the service?
 
 Thanks!
 Chad
 
 
  -Original Message-
  From: Alan Rother [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, June 04, 2008 3:41 PM
  To: CF-Talk
  Subject: Re: windows performance monitor
 
  You have to enable cfstat in the CF Administrator under Debugging
 
  Enable CFSTAT
  The cfstat command-line utility provides real-time performance metrics
  for ColdFusion. Using a socket connection to obtain metric data,
  cfstat displays the information that ColdFusion writes to System
  Monitor without actually using the System Monitor application.
 
 
 
  --
  Alan Rother
  Adobe Certified Advanced ColdFusion MX 7 Developer
  Manager, Phoenix Cold Fusion User Group, AZCFUG.org
 
 
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306841
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF with PostgreSQL

2008-06-04 Thread Jochem van Dieten
Russ wrote:
 What I want is what the latest MySQL sort of provides.  I want to have
 separate machines with local storage each running a DB daemon, and to be
 able to at least have automatic failover

So I presume that you mean MySQL replication (since MySQL Cluster is
main-memory and doen't have the local storage).

In PostgreSQL you do that with Slony-1. It is an open source add ons you
can just plug in and you don't even need to restart to do that. For the
automatic failover you need to add a hartbeat and probably STONITH, but
you should be used to that because you need that with MySQL as well to
prevent a split brain.
Apparently you can also do that with Bucardo (never tried that) and
commercially with Mammoth Replicator.


 and even better to have them both
 be master's (basically being able to do load balancing).

Multimaster replication would be done with either PGcluster,
Cybercluster, PLProxy, Bucardo or pgpool-II. All open source and they
all work with different algorithms so you can pretty much mix and match
to your needs.

Greenplum, EnterpriseDB and Continuent also provide commercial solutions
and I am not sure in which list to put Gorda and Postgres-R. And I might
have skipped a few :)


The main reason there is no clustering and / or replication support in
the PostgreSQL core is they really mean something different to
everybody. There is no one size fits all solution so which one should be
put in? There may be some movement on that since core has recently
reached consensus and they plan to include a lossless shared-nothing HA
solution in core that may be extended to do master-slave replication,
but that will probably have to wait to 8.5.

Jochem


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306842
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CF with PostgreSQL

2008-06-04 Thread Russ
 -Original Message-
 From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, June 04, 2008 4:36 PM
 To: CF-Talk
 Subject: Re: CF with PostgreSQL
 
 Russ wrote:
  What I want is what the latest MySQL sort of provides.  I want to have
  separate machines with local storage each running a DB daemon, and to be
  able to at least have automatic failover
 
 So I presume that you mean MySQL replication (since MySQL Cluster is
 main-memory and doen't have the local storage).
 
This is no longer true as of 5.1 I believe.  The only issue seems to be that
it doesn't support enforcement of foreign keys and a few other issues:
http://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-replication-issues.html

 In PostgreSQL you do that with Slony-1. It is an open source add ons you
 can just plug in and you don't even need to restart to do that. For the
 automatic failover you need to add a hartbeat and probably STONITH, but
 you should be used to that because you need that with MySQL as well to
 prevent a split brain.
 Apparently you can also do that with Bucardo (never tried that) and
 commercially with Mammoth Replicator.
 
 
  and even better to have them both
  be master's (basically being able to do load balancing).
 
 Multimaster replication would be done with either PGcluster,
 Cybercluster, PLProxy, Bucardo or pgpool-II. All open source and they
 all work with different algorithms so you can pretty much mix and match
 to your needs.
 
 Greenplum, EnterpriseDB and Continuent also provide commercial solutions
 and I am not sure in which list to put Gorda and Postgres-R. And I might
 have skipped a few :)
 
 
 The main reason there is no clustering and / or replication support in
 the PostgreSQL core is they really mean something different to
 everybody. There is no one size fits all solution so which one should be
 put in? There may be some movement on that since core has recently
 reached consensus and they plan to include a lossless shared-nothing HA
 solution in core that may be extended to do master-slave replication,
 but that will probably have to wait to 8.5.
 
 Jochem
 


Looks like there are a lot of tools for doing multi master replication with
PGCluster.  

How hard is it to port a MS SQL db over?  We have a bunch of stored
procedures which would need to be migrated as well.  Are there any tools
available? 

Russ


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306843
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CSV Generation MEMORY SUCK

2008-06-04 Thread Larry Lyons
Just ran the same code on Open BlueDragon. NThis test probably is not the 
equivalent of the previous tests, at home here I'm running this app on a 
MacBook (core duo 2.16 ghz with 2 gb RAM), running OSX 10.4 Tiger. J2SE 5. But 
the results are similar:

Memory Before: 26 Megs
string  string: 553776ms
String Length: 65
Memory After: 45 Megs -- Increase of 19 Megs

Memory Before: 32 Megs
cfsavecontent: 65ms
String Length: 1400010
Memory After: 39 Megs -- Increase of 8 Megs


 Here are the results of your code with java.lang.runtime. Forgot to 
 mention that the JVM is 1.5.0_15-b04. 
 
 Memory Before: 28 Megs
 string  string: 99642ms
 String Length: 65
 Memory After: 91 Megs -- Increase of 63 Megs
 
 Memory Before: 29 Megs
 cfsavecontent: 63ms
 String Length: 850003
 Memory After: 37 Megs -- Increase of 8 Megs
 
 Basically what this tells me is that you should use cfsavecontent 
 rather than concatenating strings. But I was not expecting such a 
 difference.
 
 larry
 
  Here are the results of your code (again BD for J2EE running on 
 JBoss 
  AS 4.22):
  
  string  string: 33251ms
  String Length: 39
  cfsavecontent: 62ms
  String Length: 570006
  


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306844
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: CSV Generation MEMORY SUCK

2008-06-04 Thread Brad Wood
Thanks Larry.  

~Brad

-Original Message-
From: Larry Lyons [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 04, 2008 1:34 PM
To: CF-Talk
Subject: Re: CSV Generation MEMORY SUCK

Here are the results of your code with java.lang.runtime. Forgot to
mention that the JVM is 1.5.0_15-b04. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306845
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF with PostgreSQL

2008-06-04 Thread Jochem van Dieten
Russ wrote:
 From: Jochem van Dieten:
 Russ wrote:
 What I want is what the latest MySQL sort of provides.  I want to have
 separate machines with local storage each running a DB daemon, and to be
 able to at least have automatic failover
 So I presume that you mean MySQL replication (since MySQL Cluster is
 main-memory and doen't have the local storage).

 This is no longer true as of 5.1 I believe.  The only issue seems to be that
 it doesn't support enforcement of foreign keys and a few other issues:
 http://dev.mysql.com/doc/refman/5.1/en/mysql-cluster-replication-issues.html

That is the documentation for (master-slave) replication of a MySQL 
Cluster (NDB). I am talking about NDB itself. I believe it still is true 
that MySQL Cluster is main-memory and does not have local storage nor 
supports a spill to disk scenario that allows for a database larger then 
main-memory. Together with the lack of durable commits that makes for 
very specialized use-cases.


 How hard is it to port a MS SQL db over?

Depends on which features were used. On your schema level you need to 
convert all your datetime types and redo your full text indexing. You 
want to make all your strings TEXT (unless you have a specific reason to 
want them shorter) ad have a good read to see which more exotic 
datatypes can be useful.
For your queries everything with datetimes and uppercase/lowercase needs 
to be redone and you need to rewrite all your UDFs and stored 
procedures. Start all performance tuning from scratch as well. I am not 
familiar with any tools for porting from MS SQL Server.

Jochem

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306846
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CF Studio 5

2008-06-04 Thread Dave Long
I've had to reformat my computer after 5years of faithful service.

After re-installing Macromedia Studio MX, I realized it only has Homesite
5.0+.

Does anyone know where I can download a copy of ColdFusion Studio 5.0? Of
course, they are very similar but there seem to be some features that are
different. Adobe has insulated itself rather well from users who don't
upgrade so I'm hoping someone here knows of a safe download site.

Dave Long
NorthGoods Merchant Services
103 E. Wisconsin Avenue
Tomahawk, WI 54487-1471
(715) 453-7414





-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306847
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Forum software

2008-06-04 Thread Mark Mandel
I've heard good things about cf4em, but never tried it.

http://www.remotesynthesis.com/cfopensourcelist/index.cfm?event=public.homecategoryID=82A6ADF7-9BC9-AA30-1DBDC61C0D1EBA8B
http://www.remotesynthesis.com/cfopensourcelist/index.cfm?event=public.homecategoryID=84401621-94A8-9B03-42B1F9364761B6CA

(can't link to searches in riaforge... sorry Ray!)

Mark

On Wed, Jun 4, 2008 at 10:28 PM, Raymond Camden [EMAIL PROTECTED] wrote:

 Please do. I know the guy who approves projects and while he is a bit
 slow, he is quite handsome.

 On Wed, Jun 4, 2008 at 6:39 AM, Bobby Hartsfield [EMAIL PROTECTED]
 wrote:
  Well not all... cause some of us have been too lazy to get around to
 listing
  our projects yet ;-)
 
  I'll get to it JeffC!! heh
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306848
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF Studio 5

2008-06-04 Thread Charlie Griefer
y'know, somebody's bound to say it... so i'll just throw out a
suggestion that this might be a good time to check out eclipse and
cfeclipse :)

hey, if you try it and don't like it, you can always resume the search
for CF Studio 5.  Won't cost you anything in the interim.

On Wed, Jun 4, 2008 at 3:02 PM, Dave Long [EMAIL PROTECTED] wrote:
 I've had to reformat my computer after 5years of faithful service.

 After re-installing Macromedia Studio MX, I realized it only has Homesite
 5.0+.

 Does anyone know where I can download a copy of ColdFusion Studio 5.0? Of
 course, they are very similar but there seem to be some features that are
 different. Adobe has insulated itself rather well from users who don't
 upgrade so I'm hoping someone here knows of a safe download site.

 Dave Long
 NorthGoods Merchant Services
 103 E. Wisconsin Avenue
 Tomahawk, WI 54487-1471
 (715) 453-7414





 --
 This message has been scanned for viruses and
 dangerous content by MailScanner, and is
 believed to be clean.


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306849
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CF Studio 5

2008-06-04 Thread Mark Kruger
Troublemaker...   :)


-Original Message-
From: Charlie Griefer [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 04, 2008 5:17 PM
To: CF-Talk
Subject: Re: CF Studio 5

y'know, somebody's bound to say it... so i'll just throw out a suggestion
that this might be a good time to check out eclipse and cfeclipse :)

hey, if you try it and don't like it, you can always resume the search for
CF Studio 5.  Won't cost you anything in the interim.

On Wed, Jun 4, 2008 at 3:02 PM, Dave Long [EMAIL PROTECTED] wrote:
 I've had to reformat my computer after 5years of faithful service.

 After re-installing Macromedia Studio MX, I realized it only has 
 Homesite 5.0+.

 Does anyone know where I can download a copy of ColdFusion Studio 5.0? 
 Of course, they are very similar but there seem to be some features 
 that are different. Adobe has insulated itself rather well from users 
 who don't upgrade so I'm hoping someone here knows of a safe download
site.

 Dave Long
 NorthGoods Merchant Services
 103 E. Wisconsin Avenue
 Tomahawk, WI 54487-1471
 (715) 453-7414





 --
 This message has been scanned for viruses and dangerous content by 
 MailScanner, and is believed to be clean.


 



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306850
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF Studio 5

2008-06-04 Thread Terry Schmitt
What's the diff? I thought Studio was dropped and became Homesite+.

Troublemaker...   :)


y'know, somebody's bound to say it... so i'll just throw out a suggestion
that this might be a good time to check out eclipse and cfeclipse :)

hey, if you try it and don't like it, you can always resume the search for
CF Studio 5.  Won't cost you anything in the interim.

On Wed, Jun 4, 2008 at 3:02 PM, Dave Long [EMAIL PROTECTED] wrote:
site. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306851
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Best CF editor?

2008-06-04 Thread s. isaac dealey
 I can see how a CFC can get large as is it supposed to be a library
 of like functions, so if you had a site that had a calendar that was
 cfc based (for instance) and you had all of you calendaring functions
 in that cfc, that could get huge.  Would you really want to break up
 the functional unit into separate CFC's?  Would that be any more
 efficient than having them in one big file (as long as they were all
 related of course).

Differences would be minimal with regard to how the server handles it -
on my end however, I find that it's easier to work with smaller files, 
whether they're related or not. So in my case, I'd actually prefer if 
I had a library of calendar functions for example, to have a folder 
with several actual files, and I may choose to create a separate file 
for each function or to just group the functions into several different 
categories. For inclusion's sake I would probably create a wrapper 
to load the set -- just a single file that includes all the other 
functions. 

Although in my case when I'm working on my own projects the 
onTap framework has a library manager/loader that expects (mostly) 
each file to contain just the one function and then also uses that same 
file to provide documentation for itself. So when you look at the 
documentation for the framework in a browser, there's a page of docs for
each function library where it's actually including each file in the 
library to show its docs. Helps to keep things tidy, although of course
there are always a few bugs in the docs. 

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 617.365.5732

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306852
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Best CF editor?

2008-06-04 Thread s. isaac dealey
 So if I have a file - file.cfc for example - I could split it up easily?
 
 But would I still be able to instanciate it the same way?

Yeah, CFCs in particular would be functionaly the same. 

-- 
s. isaac dealey  ^  new epoch
 isn't it time for a change? 
 ph: 617.365.5732

http://onTap.riaforge.org/blog



~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306853
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CF Studio 5

2008-06-04 Thread Gerald Guido
 Troublemaker...   :)

Look Mark, you know as well as I that Charlie is a card carrying member of
the CFeclipse Gestapo and is under direct orders from Herr Drew to recruit
members by any and all means possible. I find your lack of faith disturbing.

But yeah Dave, I have a copy of CFS 5.0 shareware on back up. Unless I am a
violating some law or something I can make it available to you. Pls send me
a personal email and I will get you  a copy unless I am violating a law...
then the deal is off (sorry...  I gotta play by the rules).

G$
-- 
The important thing in science is not so much to obtain new facts as to
discover new ways of thinking about them.
- Sir William Bragg


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306854
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Best CF editor?

2008-06-04 Thread Rick Faircloth
Speaking of CF Editors...

Bummer... I wanted to give Dreamweaver CS4 beta a try,
but you have to be a CS3 or GoLive owner to try the beta.

Seems like Adobe might be interested in the feedback of someone
who's never used DW before.

Oh, well...perhaps the trial will be out soon.

Rick

 -Original Message-
 From: s. isaac dealey [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, June 04, 2008 7:32 PM
 To: CF-Talk
 Subject: Re: Best CF editor?
 
  So if I have a file - file.cfc for example - I could split it up easily?
 
  But would I still be able to instanciate it the same way?
 
 Yeah, CFCs in particular would be functionaly the same.
 
 --
 s. isaac dealey  ^  new epoch
  isn't it time for a change?
  ph: 617.365.5732
 
 http://onTap.riaforge.org/blog
 
 
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306855
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


cfhttp redirect problem

2008-06-04 Thread Mike Little
hi guys,

i am using the following code (after inputting order details to db) to send 
form variables to a 3rd party processor.

cfhttp method=post url=http://www.theirwebsite.com/; redirect=yes 
throwonerror=yes
   cfhttpparam name=account_id value=xx type=formfield
   cfhttpparam name=cmd value=_x3party type=formfield
   cfhttpparam name=reference value=#merchantRef# type=formfield
   cfhttpparam name=amount value=#amount# type=formfield
   cfhttpparam name=return_url value=http://www.mywebsitecom/; 
type=formfield
   cfhttpparam name=customer_email value=[EMAIL PROTECTED] 
type=formfield
  /cfhttp

everything runs fine on submitting, however the page does not redirect to their 
site and i receive no error from the cfhttp so i cannot see what is going wrong?

can anyone shed some light on what i may be missing.

thanks heaps.
mike 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306856
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfhttp redirect problem

2008-06-04 Thread Joe Velez
Mike

CFHTTP does not redirect the user to a site
CFHTTP acts like your browser and sends information to the URL you 
specify in the tag. Then, you get response [CFHTTP.FILECONTENT] and do 
what you want with it. Look at it for a SUCCESS or FAILURE type of 
message then display the appropriate info to your user on your site.

You can use CFLOCATION to redirect the user to a different URL

- Joe Velez


Mike Little wrote:
 hi guys,

 i am using the following code (after inputting order details to db) to send 
 form variables to a 3rd party processor.

 cfhttp method=post url=http://www.theirwebsite.com/; redirect=yes 
 throwonerror=yes
cfhttpparam name=account_id value=xx type=formfield
cfhttpparam name=cmd value=_x3party type=formfield
cfhttpparam name=reference value=#merchantRef# type=formfield
cfhttpparam name=amount value=#amount# type=formfield
cfhttpparam name=return_url value=http://www.mywebsitecom/; 
 type=formfield
cfhttpparam name=customer_email value=[EMAIL PROTECTED] 
 type=formfield
   /cfhttp

 everything runs fine on submitting, however the page does not redirect to 
 their site and i receive no error from the cfhttp so i cannot see what is 
 going wrong?

 can anyone shed some light on what i may be missing.

 thanks heaps.
 mike 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306857
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfhttp redirect problem

2008-06-04 Thread Mike Little
thanks joe,

so i should be using cflocation after the cfhttp script?

bacially i just need to make sure the user goes through to the 3rd party 
payment page with the form elements.

for other apps i use a com object but this is a new company the clients has 
chosen to use :o(

mike


Mike

CFHTTP does not redirect the user to a site
CFHTTP acts like your browser and sends information to the URL you 
specify in the tag. Then, you get response [CFHTTP.FILECONTENT] and do 
what you want with it. Look at it for a SUCCESS or FAILURE type of 
message then display the appropriate info to your user on your site.

You can use CFLOCATION to redirect the user to a different URL

- Joe Velez


Mike Little wrote:
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306858
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF with PostgreSQL

2008-06-04 Thread denstar
On Wed, Jun 4, 2008 at 3:44 PM, Jochem van Dieten
[EMAIL PROTECTED] wrote:

 I am not familiar with any tools for porting from MS SQL Server.

Last I did it, I used mysql workbench to grab the data from MS, then I
used some random tool to port mysql to postgres.

Basically it was a chain, and while 90% went pretty smooth,
*amazingly*, there was a bit of futzing with stuff... changing some
datatypes before the port (the real port) on the mssql box helped a
good deal too.  Smoothed things out, if you will.

And I'm loving ORMs, actually, for the code end of the SQL madness.
They generally (but still sorta do!) don't care what sql backend you
use...

Fun stuff.  +1 for Postgres, it's the bee's knees.

-- 
Dave: How many fingers am I holding up in front of your eyes right now?
Wally: Three!
Dave: That's good. That's pretty good, considering that he's blind.

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306859
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Error in url parameter

2008-06-04 Thread TechInfo
Yogendra Shivhare wrote:
 I am getting following error in my applicationElement FORM_ID is undefined in 
 URL. 
 G:\ITO_Services_Webs\iForms\sessionMgmt.cfm: line 103 
 101 : cfquery name=Get_Form datasource=#iForms_DSN# 
 102 : EXEC SP_Get_Form 1
 103 : @Form_ID = #URL.FORM_ID#, 
 104 : @Key_Type = '#URL.Key_Type#', 
 105 : @Key_ID = #URL.Key_ID#
 Form id is always there in url when one try to access the site. Link is 
 http://iforms.sbc.com/iforms_loader.cfm?Form_id=67Key_Type=VPMO_IDKey_ID=71241SBCUID=dw4694IO_Mode=1uiid=86972628
   

What is the 1 at the end of line 102?  If that's a parameter, 
shouldn't there be a comma after it?

Jevo

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306860
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Error in url parameter

2008-06-04 Thread Shivhare Yogendra
Sorry that was a typo. There is no 1 ther I have mistyped while giving no to 
code line

 Thanks    Yogendra Shivhare  Programmer Analyst  INFOSYS TECHNOLOGIES Ltd.  
‘Life is what happens when you’re making other plans…!’ 


--- On Thu, 6/5/08, TechInfo [EMAIL PROTECTED] wrote:

 From: TechInfo [EMAIL PROTECTED]
 Subject: Re: Error in url parameter
 To: CF-Talk cf-talk@houseoffusion.com
 Date: Thursday, June 5, 2008, 5:55 AM
 Yogendra Shivhare wrote:
  I am getting following error in my applicationElement
 FORM_ID is undefined in URL. 
 
 G:\ITO_Services_Webs\iForms\sessionMgmt.cfm:
 line 103 
  101 : cfquery name=Get_Form
 datasource=#iForms_DSN# 
  102 : EXEC SP_Get_Form 1
  103 : @Form_ID = #URL.FORM_ID#, 
  104 : @Key_Type = '#URL.Key_Type#', 
  105 : @Key_ID = #URL.Key_ID#
  Form id is always there in url when one try to access
 the site. Link is
 http://iforms.sbc.com/iforms_loader.cfm?Form_id=67Key_Type=VPMO_IDKey_ID=71241SBCUID=dw4694IO_Mode=1uiid=86972628

 
 What is the 1 at the end of line 102?  If
 that's a parameter, 
 shouldn't there be a comma after it?
 
 Jevo
 
 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306861
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Forum software

2008-06-04 Thread Bobby Hartsfield
I replied but never saw it come through so sorry if this is a dupe...

 Please do. 

I most certainly will. I started a new job recently and free time is once
again non-existent

..:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
http://cf4em.com




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306862
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CF Studio 5

2008-06-04 Thread Dave Long
Thanks Gerald,

I understand about playing by the rules. It should be legal because I bought
and paid for Macromedia Studio MX and it was they who upgraded HS 5 plus to
CF Studio 5 in the first place.  If anyone knows otherwise, please advise.

As often happens when one corporation swallows another, the new owners only
seem to care about the old company's end users if they buy their new stuff.
I bought a lifetime subscription to MusicMatch Jukebox and after Yahoo
bought them out, they shut down the server with the registration key info,
so now I can't register the re-installed copy and it locks up trying to find
it. My attorney is looking into the possibility of a class action suit but
that's a long shot and highly unlikely to resolve the problem.

I'll send you a direct message tomorrow after someone has had a chance to
let us know if it is legal or not.

Dave Long
NorthGoods Merchant Services
103 E. Wisconsin Avenue
Tomahawk, WI 54487-1471
(715) 453-7414


-Original Message-
From: Gerald Guido [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 04, 2008 6:41 PM
To: CF-Talk
Subject: Re: CF Studio 5

 Troublemaker...   :)

Look Mark, you know as well as I that Charlie is a card carrying member of
the CFeclipse Gestapo and is under direct orders from Herr Drew to recruit
members by any and all means possible. I find your lack of faith disturbing.

But yeah Dave, I have a copy of CFS 5.0 shareware on back up. Unless I am a
violating some law or something I can make it available to you. Pls send me
a personal email and I will get you  a copy unless I am violating a law...
then the deal is off (sorry...  I gotta play by the rules).

G$
--
The important thing in science is not so much to obtain new facts as to
discover new ways of thinking about them.
- Sir William Bragg




~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306863
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: cfhttp redirect problem

2008-06-04 Thread Joe Velez
Yep, cfinclude should work for you

if you're sending them from your site to the payment gateway (thats what 
it looks like) are you sure you want to pass the merchant ID in the url?

You probably don't even need the cfhttp, just do cflocation 
url='http://website.com/?var1=urlencodedformat(val1)etc=urlencodedformat(etc)' 
addtoken='no'

Joe Velez

Mike Little wrote:
 thanks joe,

 so i should be using cflocation after the cfhttp script?

 bacially i just need to make sure the user goes through to the 3rd party 
 payment page with the form elements.

 for other apps i use a com object but this is a new company the clients has 
 chosen to use :o(

 mike


   
 Mike

 CFHTTP does not redirect the user to a site
 CFHTTP acts like your browser and sends information to the URL you 
 specify in the tag. Then, you get response [CFHTTP.FILECONTENT] and do 
 what you want with it. Look at it for a SUCCESS or FAILURE type of 
 message then display the appropriate info to your user on your site.

 You can use CFLOCATION to redirect the user to a different URL

 - Joe Velez


 Mike Little wrote:
 

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306864
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Recommendations for a Knowledgebase written in CFML?

2008-06-04 Thread Alex Sherwood
Greetings,

I've searched high and low and have yet to find a knowledgebase application 
written in CFML. Project Management/Time Entry apps seem to be plenty - KB 
apps, not so much! Places I've searched: Google upteen ways, Charlie Aerhart, 
Adobe.com Developer Forums, etc.

If anyone has experience with a pre-built KB app. written in CFML, it would be 
greatly appreciated.

Thanks! 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306865
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Recommendations for a Knowledgebase written in CFML?

2008-06-04 Thread sslone
Try perhaps riaforge.com?

Quoting Alex Sherwood [EMAIL PROTECTED]:

 Greetings,

 I've searched high and low and have yet to find a knowledgebase 
 application written in CFML.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306866
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: cfhttp redirect problem

2008-06-04 Thread Mike Little
yes joe, cflocation with the varibles attached to the url works!!

however, like you ask - how safe is this for transferring these variables?

thanks for your help.
mike 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306867
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Recommendations for a Knowledgebase written in CFML?

2008-06-04 Thread Alex Sherwood
Try perhaps riaforge.com?

Quoting Alex Sherwood [EMAIL PROTECTED]:

 Greetings,

 I've searched high and low and have yet to find a knowledgebase 
 application written in CFML.

The search function is broken at riaforge.com. I browsed all CF projects, 
though, and did not find one. The best I've seen on the net is 
www.kbpublisher.com, but it's PHP. ;-(

Thanks. 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306868
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Recommendations for a Knowledgebase written in CFML?

2008-06-04 Thread Raymond Camden
What was broken with the search?

On Wed, Jun 4, 2008 at 10:17 PM, Alex Sherwood [EMAIL PROTECTED] wrote:
Try perhaps riaforge.com?

Quoting Alex Sherwood [EMAIL PROTECTED]:

 Greetings,

 I've searched high and low and have yet to find a knowledgebase
 application written in CFML.

 The search function is broken at riaforge.com. I browsed all CF projects, 
 though, and did not find one. The best I've seen on the net is 
 www.kbpublisher.com, but it's PHP. ;-(

 Thanks.

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306869
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Recommendations for a Knowledgebase written in CFML?

2008-06-04 Thread James Holmes
Works for me (if that helps, which I suspect it doesn't).

On Thu, Jun 5, 2008 at 11:47 AM, Raymond Camden [EMAIL PROTECTED] wrote:
 What was broken with the search?

 On Wed, Jun 4, 2008 at 10:17 PM, Alex Sherwood [EMAIL PROTECTED] wrote:
Try perhaps riaforge.com?

-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306870
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CF with PostgreSQL

2008-06-04 Thread Wil Genovese
Fun stuff.  +1 for Postgres, it's the bee's knees.

Cool deal!

I was just digging through RiaForge and noticed that TransferORM works  
with PostgreSQL 8.x.  I guess I am going to learn Transfer tonight.



Wil Genovese

One man with courage makes a majority.
-Andrew Jackson

A fine is a tax for doing wrong. A tax is a fine for doing well.

On Jun 4, 2008, at 7:34 PM, denstar wrote:

 On Wed, Jun 4, 2008 at 3:44 PM, Jochem van Dieten
 [EMAIL PROTECTED] wrote:
 
 I am not familiar with any tools for porting from MS SQL Server.

 Last I did it, I used mysql workbench to grab the data from MS, then I
 used some random tool to port mysql to postgres.

 Basically it was a chain, and while 90% went pretty smooth,
 *amazingly*, there was a bit of futzing with stuff... changing some
 datatypes before the port (the real port) on the mssql box helped a
 good deal too.  Smoothed things out, if you will.

 And I'm loving ORMs, actually, for the code end of the SQL madness.
 They generally (but still sorta do!) don't care what sql backend you
 use...

 Fun stuff.  +1 for Postgres, it's the bee's knees.

 -- 
 Dave: How many fingers am I holding up in front of your eyes right  
 now?
 Wally: Three!
 Dave: That's good. That's pretty good, considering that he's blind.

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306871
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Recommendations for a Knowledgebase written in CFML?

2008-06-04 Thread Alex Sherwood
What was broken with the search?

On Wed, Jun 4, 2008 at 10:17 PM, Alex Sherwood [EMAIL PROTECTED] wrote:


Looks to be working now. Was stuck in the Loading.. state, but appears OK 
now. No KB found, though!

Any recommendations on a CFML-based KB?!

Thanks! 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306872
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Recommendations for a Knowledgebase written in CFML?

2008-06-04 Thread Wil Genovese
I also experienced a bit of slowness when the search was Loading

However, the reason for this reply is I did see Context-based Help  
tag on RiaForge.  Does this do what you want?

Cheers,

Wil Genovese

One man with courage makes a majority.
-Andrew Jackson

A fine is a tax for doing wrong. A tax is a fine for doing well.

On Jun 5, 2008, at 12:26 AM, Alex Sherwood wrote:

 What was broken with the search?

 On Wed, Jun 4, 2008 at 10:17 PM, Alex Sherwood [EMAIL PROTECTED] 
  wrote:


 Looks to be working now. Was stuck in the Loading.. state, but  
 appears OK now. No KB found, though!

 Any recommendations on a CFML-based KB?!

 Thanks!

 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306873
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4