Re: BOLT!

2009-04-17 Thread Judah McAuley

Not to mention that Visual Studio continues to be a fine IDE and seems
to be coping with C# as it gains a great deal more dynamic features
like lambda expressions, duck typing, etc. Still not sure how great
Bolt will be out of the gate but there are some decent IDEs out there
that they can take some cues from, so I'm cautiously optimistic.

Judah

On Fri, Apr 17, 2009 at 6:51 PM, Adam Haskell  wrote:
>
> I think this is a fairly closed minded view on things. No offense but if you
> look at other loosely typed dynamic languages like groovy the IDE support
> for it (IDEA) is very impressive.Or something slightly more close to
> ColdFusion like Ruby also has some very impressive support. That being said,
> this is the first gen IDE from Adobe, I wouldn't expect much more than
> cfEclipse. I'm not saying Adobe can't/won't deliver I just think having too
> high expectations for a First Gen product is irrsponsible to myself and not
> fair to a company.
>
>
> Adam

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321780
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BOLT!

2009-04-17 Thread Adam Haskell

I think this is a fairly closed minded view on things. No offense but if you
look at other loosely typed dynamic languages like groovy the IDE support
for it (IDEA) is very impressive.Or something slightly more close to
ColdFusion like Ruby also has some very impressive support. That being said,
this is the first gen IDE from Adobe, I wouldn't expect much more than
cfEclipse. I'm not saying Adobe can't/won't deliver I just think having too
high expectations for a First Gen product is irrsponsible to myself and not
fair to a company.


Adam

On Fri, Apr 17, 2009 at 1:24 PM, Dave Watts  wrote:

>
> > That, and the fact that the tools for other platforms/languages like
> Java, .Net
> > and Flex for that matter, run circles around the current CF IDE
> offerings.
>
> Well, I don't think that's going to change entirely. CF is different
> from Java, .NET and Flex, in that it's compiled when it's first run
> and it's loosely typed. The nice things (to me) about working in those
> other environments is that there is a distinct separation between
> compile time and run time, so my IDE can help me in ways that wouldn't
> be possible with a loosely-typed language that doesn't get compiled
> prior to runtime.
>
> Dave Watts, CTO, Fig Leaf Software
> http://www.figleaf.com/
>
> Fig Leaf Software provides the highest caliber vendor-authorized
> instruction at our training centers in Washington DC, Atlanta,
> Chicago, Baltimore, Northern Virginia, or on-site at your location.
> Visit http://training.figleaf.com/ for more information!
>
> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321779
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: application.cfc subdirectories and links

2009-04-17 Thread Adrian Moreno

IMO, your best option is going to be setting your header, footer, etc. links to 
absolute paths. 

Meaning if your application root is www.mysite.com, then all of your primary 
links need to point to /aboutUs.cfm. The ensures that no matter how deep you 
are in the site, that link will always point to www.mysite.com/aboutUs.cfm.

Most every other option is going to involve parsing the URL and figuring out 
where you are relative to your root and that's going to be more of a pain than 
resetting all those links.

If you want, you can set an application variable as a placeholder for your 
application roor, i.e.  I have used the Application.cfc onRequestStart and onRequestEnd for 
> the layout of 
> my site, i.e. common header, mainnavigation and footer on all pages.
> 
> Now the problem comes in where I have some files in a subdirectory: 
> (The 
> application.cfc is only in the root directory)
> 
> the main navigation (siteroot\mainnav.cfm) is included in the 
> application.cfc onRequestStart, but if this is called from the 
> siteroot\subdir\somefile.cfm the links points to (e.g.) 
> siteroot\subdir\aboutUs.cfm instead of siteroot\aboutUs.cfm
> 
> Is there a way I can reference the links relative to the included 
> template (siteroot\mainnav.cfm) instead of relative to the page I am 
> on?
> 
> I don't want to use absolute links, because that is a lot of links I 
> will have to go and update... 
> 
> Thanks! 


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321778
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: application.cfc subdirectories and links

2009-04-17 Thread Peter Boughton

Create a mapping to the siteroot, and do  ? 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321777
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: application.cfc subdirectories and links

2009-04-17 Thread Ben Nadel

Liz,

This is not a great solution, but you could put a dynamic Base tag in the
head:

Main directory:



Sub directory:



I think that would work as a stop-gap.

-- 
Ben Nadel
Adobe Community Expert
Adobe Certified Advanced ColdFusion Developer
Manager New York ColdFusion User Group
http://www.bennadel.com

Need ColdFusion Help?
http://www.bennadel.com/Ask-Ben


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321776
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


application.cfc subdirectories and links

2009-04-17 Thread Elizabeth Meyer

I have used the Application.cfc onRequestStart and onRequestEnd for the layout 
of 
my site, i.e. common header, mainnavigation and footer on all pages.

Now the problem comes in where I have some files in a subdirectory: (The 
application.cfc is only in the root directory)

the main navigation (siteroot\mainnav.cfm) is included in the application.cfc 
onRequestStart, but if this is called from the siteroot\subdir\somefile.cfm the 
links points to (e.g.) siteroot\subdir\aboutUs.cfm instead of 
siteroot\aboutUs.cfm

Is there a way I can reference the links relative to the included template 
(siteroot\mainnav.cfm) instead of relative to the page I am on?

I don't want to use absolute links, because that is a lot of links I will have 
to go and update... 

Thanks! 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321775
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Using Ajax to populate checkmarks?

2009-04-17 Thread Charlie Griefer

On Fri, Apr 17, 2009 at 1:18 PM, Richard White  wrote:
>
>>What did you use?  Or what *would* you recommend we use.
>
> we have built various AJAX applications and have always used JSMX 
> (http://www.lalabird.com/)
>
> it is very simple to use and many people recommended it to us when we were 
> first looking

I may have been one of those people and... I'd like to modify my answer a bit :)

I used JSMX quite a bit because, as you say, it is very lightweight
and does a wonderful job of encapsulating the ugly (?) magic of the
XMLHTTPRequest.

But that was pre-jQuery.  jQuery is really an amazing framework that
handles the AJAX stuff just as easily as JSMX (IMO), but also gives
you the ability to manipulate DOM elements easily.  Awesome community,
lots of great support (*very* high traffic mailing list, books, etc).

Presumably, JSMX is working fine for you, and I wouldn't suggest going
out and switching just to switch.  But if you find yourself in a
position where you need to do some client side manipulation, it might
be an opportunity to see how jQuery can kill both of those birds with
one very elegant stone.

-- 
I have failed as much as I have succeeded. But I love my life. I love
my wife. And I wish you my kind of success

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321774
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Using Ajax to populate checkmarks?

2009-04-17 Thread Richard White

>What did you use?  Or what *would* you recommend we use.  

we have built various AJAX applications and have always used JSMX 
(http://www.lalabird.com/)

it is very simple to use and many people recommended it to us when we were 
first looking 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321773
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: help with a grey area

2009-04-17 Thread Richard White

thanks for all the replies. i agree that it is easier with this to go with the 
flow and stay within the guidelines that are set... after all the customer is 
always right.. and as it was mentioned CYA!!!

thanks also for your comments roger, we will look into all these regulations 
too 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321772
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: Using Ajax to populate checkmarks?

2009-04-17 Thread Josh Nathanson

Yeah, that's not too difficult with something like jQuery.  

Basically you'd do a $.getJSON call to your fuseaction, return your data,
then run a function to check the checkboxes based on the data you returned.
That function would be dependent on how you returned the data and what your
markup is like for the checkboxes.

The first thing to do is make sure you're getting the JSON data back that
you expect, by using Firebug or some other debugging method.  Once you have
that working, you can write the function that updates the checkboxes.

-- Josh

-Original Message-
From: Dan LeGate [mailto:d...@legeek.com] 
Sent: Friday, April 17, 2009 11:07 AM
To: cf-talk
Subject: Using Ajax to populate checkmarks?


Hi all,

We have an application we're building that will allow users to pick a
"template" user to pre-populate some checkboxes based on that user's
privileges, but not on initial load of the form.  Initially ALL 
checkboxes will be unchecked when the page loads, however, based on this 
lookup, it will check certain boxes without having to reload the form. 
User's will be selecting a template from a select menu, and that would 
trigger the lookup.

Has anyone done anything like that, where, based on a database lookup,
you are able to "check" certain checkboxes on the page AFTER THE PAGE 
HAS LOADED? (i.e. this is an Ajax lookup)

What did you use?  Or what *would* you recommend we use.  Would JQuery
lend itself nicely to this?  We're open to anything.  Have any example code?

We'd also be calling it from within a Fusebox 5.5 (xml approach) app, so
any hints/suggestions there would be greatly appreciated.

Also, we are on ColdFusion 7, so can't use the new CFAJAX stuff.

Any help is appreciated.

Thanks!

Dan



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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321771
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Bulk mailshot - Out of memory errors

2009-04-17 Thread Dave Watts

> Hi all, we are getting the following error when sending a bulk
> newsletter with cfmail (130,000 emails), "GC overhead limit exceeded"
> (java out of memory error), followed by "Heap space" errors on
> subsequent requests to the server. On this legacy system, we are
> sending 1,000 emails at a time using cfmail as follows:
>
>  from="#trim(qry_getnewslettertype.returnEmail)#"
> subject="#Replace(Replace(qry_getnewslettertype.subject,'[TheUsersFirstName]',Trim(firstName),'all'),'theUserID',Val(userID),'all')#"
>                                        query="getHTMLusers"
>                                        maxrows="#getHTMLusers.recordcount#"
>                                        startrow="1"
>                                        
> type="html">#Replace(Replace(Replace(Replace(outputted_html_text,
> '|', '|#Val(userID)#',
> 'ALL'),'[TheUsersFirstName]',Trim(firstName),'All'),'theUserID',Val(userID),'All'),'tempUserID',Val(userID),'All')#
> 
>
> Apologies for the readability. I suspect that all those Replace()es
> that are executing on every iteration may be causing the issue with CF
> not cleaning up the strings nicely. Does this make sense?

It's possible that this is contributing to the problem. You could try
the ReplaceList function instead, which should get you to the same
place.

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

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321770
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: help with a grey area

2009-04-17 Thread Roger Austin

Richard White wrote:
> our clients run tests on patients for research purposes. 

  At this point, you have run into HIPAA, FDA/OECD GCP, and
perhaps FISMA regulations. Oh yeah, then you have the human
research subjects regulations also. You need to read these
and understand them. At least, your client should be
familiar with them.
  You may be dealing with medical records. Security in that
area is not something to take lightly. Splitting out the
identifiers could be the least of your problems.

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321765
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Problem with CFDocument splitting text at page break

2009-04-17 Thread Rick Root

On Fri, Apr 17, 2009 at 3:04 PM, Tony Bentley  wrote:
>
> For instance, if you know that the amount of rows will always be like your 
> example, you can add a page break after every other table. Do the math; how 
> many rows are allowed on a page? If the rows are greater than allowed, add a 
> table/TH and a page break so it will return a header with the continued 
> results on the next page.

The content is TOO dynamic to do that..  Too bad it can't break up
tables better.. it has no problem with plain text...

Ah well.

-- 
Rick Root
New Brian Vander Ark Album, songs in the music player and cool behind
the scenes video at www.myspace.com/brianvanderark

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321769
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Bulk mailshot - Out of memory errors

2009-04-17 Thread Dominic Watson

Hi all, we are getting the following error when sending a bulk
newsletter with cfmail (130,000 emails), "GC overhead limit exceeded"
(java out of memory error), followed by "Heap space" errors on
subsequent requests to the server. On this legacy system, we are
sending 1,000 emails at a time using cfmail as follows:

#Replace(Replace(Replace(Replace(outputted_html_text,
'|', '|#Val(userID)#',
'ALL'),'[TheUsersFirstName]',Trim(firstName),'All'),'theUserID',Val(userID),'All'),'tempUserID',Val(userID),'All')#


Apologies for the readability. I suspect that all those Replace()es
that are executing on every iteration may be causing the issue with CF
not cleaning up the strings nicely. Does this make sense?

I realise there could be many other factors in play and we have been
investigating various memory and GC settings in the cf instance - but
I'd like to know thoughts on that particular code (of which I am not
an author or fan).

Thanks in advance,

Dominic

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321768
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Problem with CFDocument splitting text at page break

2009-04-17 Thread Tony Bentley

Ahh yes. Not possible to do it using CSS or HTML styles.

If the page has dynamic content, you are going to have to either anticipate the 
content's max height and insert page breaks or allow for broken content.

For instance, if you know that the amount of rows will always be like your 
example, you can add a page break after every other table. Do the math; how 
many rows are allowed on a page? If the rows are greater than allowed, add a 
table/TH and a page break so it will return a header with the continued results 
on the next page.

If you're not getting my blah, blah let me know and I will setup an example. 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321767
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Using Ajax to populate checkmarks?

2009-04-17 Thread Dan LeGate

Hi all,

We have an application we're building that will allow users to pick a
"template" user to pre-populate some checkboxes based on that user's
privileges, but not on initial load of the form.  Initially ALL 
checkboxes will be unchecked when the page loads, however, based on this 
lookup, it will check certain boxes without having to reload the form. 
User's will be selecting a template from a select menu, and that would 
trigger the lookup.

Has anyone done anything like that, where, based on a database lookup,
you are able to "check" certain checkboxes on the page AFTER THE PAGE 
HAS LOADED? (i.e. this is an Ajax lookup)

What did you use?  Or what *would* you recommend we use.  Would JQuery
lend itself nicely to this?  We're open to anything.  Have any example code?

We'd also be calling it from within a Fusebox 5.5 (xml approach) app, so
any hints/suggestions there would be greatly appreciated.

Also, we are on ColdFusion 7, so can't use the new CFAJAX stuff.

Any help is appreciated.

Thanks!

Dan

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321766
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: help with a grey area

2009-04-17 Thread Phillip Vector

The client pays you. So voice your concerns (if you fear legal issues
coming from it, record yourself giving the concerns) and then do what
they say. It's called CYA for a reason. :)

On Fri, Apr 17, 2009 at 6:41 AM, Richard White  wrote:
>
> hi
>
> our clients run tests on patients for research purposes.
>
> As part of their data protection they are 'told' to not keep personal 
> identifiers (patient first name, last name, dob etc...) in the same database 
> as their test data.
>
> we have created a cf application that uses all cf security we know about, the 
> database is stored on a seperate mysql vps, it can only be accessed via the 
> cf app, and the the cf app controls individual access to the personal data 
> (if someone does not have rights then they cannot read or write to the 
> personal data)
>
> however we are getting pressure from places to split the data into 2 database 
> as it doesnt fit in with the 'terminology'
>
> personally i am struggling with the need to split it into 2 databases.
>
> i would appreciate your opinions on this as my opinion is:
>
> - our cf application handles all of this and i don't see that placing them in 
> seperate databases will make it more secure
>
> - even if they are in separate databases... if they are stored on the same 
> MySQL VPS then someone will be able to piece them together if they get into 
> the backend anyway
>
> - if the 2 databases are stored on separate MySQL VPS's would this not open a 
> security issue.  and if someone gets into our cf app code then they will see 
> the details of both the databases anyway and again can piece it together
>
> - we also discussed encrypting the data in the personal identifier columns in 
> another thread 
> (http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:59153) where 
> the outcome was that encryption would not provide any real benefit, and was 
> therefore not necessary.
>
> thanks for your opinions
>
> richard
>
> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321764
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: multiple cfapplications

2009-04-17 Thread Chad Gray

Some sections (folders) of the web site we use an application.cfm and store 
user login logic in it.

So the application.cfm file fires first and if the user is not logged in then 
displays a login page.




> -Original Message-
> From: Ben Nadel [mailto:b...@bennadel.com]
> Sent: Friday, April 17, 2009 12:41 PM
> To: cf-talk
> Subject: Re: multiple cfapplications
> 
> 
> Chad,
> 
> No, only the nearest parent Application.cfm fires.
> 
> May I ask the reason for the nested Application.cfm files?
> 
> --
> Ben Nadel
> Adobe Community Expert
> Adobe Certified Advanced ColdFusion Developer
> Manager New York ColdFusion User Group
> http://www.bennadel.com
> 
> Need ColdFusion Help?
> http://www.bennadel.com/Ask-Ben
> 
> 
> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321763
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: help with a grey area

2009-04-17 Thread Al Musella, DPM

When it comes to something like this, the best 
approach is to just go along with it. It really 
isn't much trouble to separate out the personal information.
  Then, if there is ever any problem - you can say you took precautions.

I do something similar and always have the 
personal info in a different s.  When it is time 
to analyze the data, you can give the 
statisticians a backup of the entire database and 
not worry that there is any personal information in it.

At 09:41 AM 4/17/2009, you wrote:

>hi
>
>our clients run tests on patients for research purposes.
>
>As part of their data protection they are 'told' 
>to not keep personal identifiers (patient first 
>name, last name, dob etc...) in the same database as their test data.
>
>we have created a cf application that uses all 
>cf security we know about, the database is 
>stored on a seperate mysql vps, it can only be 
>accessed via the cf app, and the the cf app 
>controls individual access to the personal data 
>(if someone does not have rights then they 
>cannot read or write to the personal data)
>
>however we are getting pressure from places to 
>split the data into 2 database as it doesnt fit in with the 'terminology'
>
>personally i am struggling with the need to split it into 2 databases.
>
>i would appreciate your opinions on this as my opinion is:
>
>- our cf application handles all of this and i 
>don't see that placing them in seperate databases will make it more secure
>
>- even if they are in separate databases... if 
>they are stored on the same MySQL VPS then 
>someone will be able to piece them together if they get into the backend anyway
>
>- if the 2 databases are stored on separate 
>MySQL VPS's would this not open a security 
>issue.  and if someone gets into our cf app code 
>then they will see the details of both the 
>databases anyway and again can piece it together
>
>- we also discussed encrypting the data in the 
>personal identifier columns in another thread 
>(http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:59153) 
>where the outcome was that encryption would not 
>provide any real benefit, and was therefore not necessary.
>
>thanks for your opinions
>
>richard
>
>

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321762
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BOLT!

2009-04-17 Thread Dave Watts

> That, and the fact that the tools for other platforms/languages like Java, 
> .Net
> and Flex for that matter, run circles around the current CF IDE offerings.

Well, I don't think that's going to change entirely. CF is different
from Java, .NET and Flex, in that it's compiled when it's first run
and it's loosely typed. The nice things (to me) about working in those
other environments is that there is a distinct separation between
compile time and run time, so my IDE can help me in ways that wouldn't
be possible with a loosely-typed language that doesn't get compiled
prior to runtime.

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

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

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321761
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BOLT!

2009-04-17 Thread Gerald Guido

>>I'd have to do something terrible to you with Jell-O and a duck suite

There are ppl that would pay good money for something like that. US
Congressmen for instance.

But in all seriousness. I asked Sharad Kumar Kiri, practically begged
(twice), if I could get in on some hot steamy Bolt prerelease action. I was
told, basically: No.

Personally I am looking forward to Bolt *much* more than I am CF 9. Given my
cognitive challenges; dyslexia and written language  disabilities (i.e.
spelling) to the tune of 3 std. deviations ... (for the statistically
challenged, that is the technical term for "Freakin Ass Load"), I am fairly
IDE dependent. That, and the fact that the tools for other
platforms/languages like Java, .Net and Flex for that matter, run circles
around the current CF IDE offerings. I always feel the need to applogise to
Mark Drew every time I say stuff like that. Sorry dude. ;o).

But yeah... I am CHOMPING AT THE BIT to get my mitts on that fun nugget.

G!

On Fri, Apr 17, 2009 at 11:34 AM, Mark Kruger wrote:

>
> We have one copy running in house... Can't say more or I'd have to do
> something terrible to you with Jell-O and a duck suite. (I didn't want to
> be
> clichéd :)
>
> -Mk



-- 
Gerald Guido
http://www.myinternetisbroken.com
http://www.cfsimple.org/

"To invent, you need a good imagination and a pile of junk."
-- Thomas A. Edison


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321760
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Problem with CFDocument splitting text at page break

2009-04-17 Thread Rick Root

On Fri, Apr 17, 2009 at 1:56 PM, Tony Bentley  wrote:
>
> Try getting the document to pass W3C HTML validation and declare a doctype. 
> So basically you will want to create a valid html document complete with 
> doctype declaration. That should help your formatting issues. You will need 
> to remove the cfdocument tags to validate it.

I did declare a doctype... but I did have some bad HTML ... so I fixed
the bad HTML and ran it through the w3c validator...

here's the HTML version:

http://www.it.dev.duke.edu/public/pdftest4.cfm

And here's the PDF version - showing the same problem with the text at
the end of page 2:

http://www.it.dev.duke.edu/public/pdftest5.cfm
http://www.it.dev.duke.edu/public/pdftest5.txt

-- 
Rick Root
New Brian Vander Ark Album, songs in the music player and cool behind
the scenes video at www.myspace.com/brianvanderark

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321759
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Problem with CFDocument splitting text at page break

2009-04-17 Thread Tony Bentley

Try getting the document to pass W3C HTML validation and declare a doctype. So 
basically you will want to create a valid html document complete with doctype 
declaration. That should help your formatting issues. You will need to remove 
the cfdocument tags to validate it.


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321758
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: multiple cfapplications

2009-04-17 Thread Mark Kruger

Chad,

If you need the application in /root to fire then you have a couple of
choices 

In your /root/users/Application.cfm file you can do something like
 which would fire it for you, or
you can delete the application.cfc file in the /users folder causing CF to
search one folder back and find the /root/application.cfm file.

-mark
 


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: Chad Gray [mailto:cg...@careyweb.com] 
Sent: Friday, April 17, 2009 11:24 AM
To: cf-talk
Subject: RE: multiple cfapplications


Ok.. makes sense.

What happens if someone has a bookmark to a sub folder "users" that has its
application.cfm page with the same application name as the Root
application.cfm file.

Does the root application.cfm fire at all?

Like if I have session.foo or application.foo defined in the Root
application.cfm.
 
Will those variable be set when a user hits the "users" folder
application.cfm?



> -Original Message-
> From: Ben Nadel [mailto:b...@bennadel.com]
> Sent: Friday, April 17, 2009 12:03 PM
> To: cf-talk
> Subject: Re: multiple cfapplications
> 
> 
> Chad,
> 
> Applications on the same box that have the same name *are* the same 
> application, as far as ColdFusion is concerned. It uses the 
> CFApplication tag (or Application.cfc THIS.Name property) to bind the 
> current page request to a defined memory space in ColdFusion 
> application server.
> 
> So, yes, if one app defined a variable and then a sub-folder with a 
> different CFApp tag with the *same* name is called, it will also have 
> access to that variable.
> 
> --
> Ben Nadel
> Adobe Community Expert
> Adobe Certified Advanced ColdFusion Developer Manager New York 
> ColdFusion User Group http://www.bennadel.com
> 
> Need ColdFusion Help?
> http://www.bennadel.com/Ask-Ben
> 
> 
> 



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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321757
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: multiple cfapplications

2009-04-17 Thread Mark Kruger

Chad,

No.. The root would not fire, but anything put in the "application" scope
(anything named application.this or application.that) would exist in both
scopes, and if you chose to overwrite application.something it would be
overwritten in both scopes.

-mark
 


Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: Chad Gray [mailto:cg...@careyweb.com] 
Sent: Friday, April 17, 2009 11:24 AM
To: cf-talk
Subject: RE: multiple cfapplications


Ok.. makes sense.

What happens if someone has a bookmark to a sub folder "users" that has its
application.cfm page with the same application name as the Root
application.cfm file.

Does the root application.cfm fire at all?

Like if I have session.foo or application.foo defined in the Root
application.cfm.
 
Will those variable be set when a user hits the "users" folder
application.cfm?



> -Original Message-
> From: Ben Nadel [mailto:b...@bennadel.com]
> Sent: Friday, April 17, 2009 12:03 PM
> To: cf-talk
> Subject: Re: multiple cfapplications
> 
> 
> Chad,
> 
> Applications on the same box that have the same name *are* the same 
> application, as far as ColdFusion is concerned. It uses the 
> CFApplication tag (or Application.cfc THIS.Name property) to bind the 
> current page request to a defined memory space in ColdFusion 
> application server.
> 
> So, yes, if one app defined a variable and then a sub-folder with a 
> different CFApp tag with the *same* name is called, it will also have 
> access to that variable.
> 
> --
> Ben Nadel
> Adobe Community Expert
> Adobe Certified Advanced ColdFusion Developer Manager New York 
> ColdFusion User Group http://www.bennadel.com
> 
> Need ColdFusion Help?
> http://www.bennadel.com/Ask-Ben
> 
> 
> 



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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321756
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: multiple cfapplications

2009-04-17 Thread Ben Nadel

Chad,

No, only the nearest parent Application.cfm fires.

May I ask the reason for the nested Application.cfm files?

-- 
Ben Nadel
Adobe Community Expert
Adobe Certified Advanced ColdFusion Developer
Manager New York ColdFusion User Group
http://www.bennadel.com

Need ColdFusion Help?
http://www.bennadel.com/Ask-Ben


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321755
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: multiple cfapplications

2009-04-17 Thread Chad Gray

Ok.. makes sense.

What happens if someone has a bookmark to a sub folder "users" that has its 
application.cfm page with the same application name as the Root application.cfm 
file.

Does the root application.cfm fire at all?

Like if I have session.foo or application.foo defined in the Root 
application.cfm.
 
Will those variable be set when a user hits the "users" folder application.cfm?



> -Original Message-
> From: Ben Nadel [mailto:b...@bennadel.com]
> Sent: Friday, April 17, 2009 12:03 PM
> To: cf-talk
> Subject: Re: multiple cfapplications
> 
> 
> Chad,
> 
> Applications on the same box that have the same name *are* the same
> application, as far as ColdFusion is concerned. It uses the CFApplication
> tag (or Application.cfc THIS.Name property) to bind the current page
> request
> to a defined memory space in ColdFusion application server.
> 
> So, yes, if one app defined a variable and then a sub-folder with a
> different CFApp tag with the *same* name is called, it will also have
> access
> to that variable.
> 
> --
> Ben Nadel
> Adobe Community Expert
> Adobe Certified Advanced ColdFusion Developer
> Manager New York ColdFusion User Group
> http://www.bennadel.com
> 
> Need ColdFusion Help?
> http://www.bennadel.com/Ask-Ben
> 
> 
> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321754
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CF Report Builder and Excel format

2009-04-17 Thread funand learning

Hi Everyone,



I was trying to display a report in excel format in report builder. It shows
the data, but I do not find the print button options, whereas I can see it
with other formats. Is this the way it is, or do I need to format anything
more within my report for showing up the print button option?This is only
happening for excel format

It would be great if someone can help me with this


Thanks


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321753
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Startup scripts on Linux

2009-04-17 Thread Phillip Duba

Thanks Ryan. I actually just tried what you suggested and it did spawn a
second, however, I'm doing a little more research into the issue and may be
a permissions issue on the jvm.config file itself. I'm going to play with
that and see. I was worried I had the wrong syntax but as of right now, I
don't think that's it, plus it's always good to have second set of eyes
looking at it,

Phil

On Fri, Apr 17, 2009 at 11:43 AM, Ryan Stille  wrote:

>
> I'm not seeing a problem with your script.  When I change it to echo out
> the start up commands instead of running them, this is what I get:
>
> The ColdFusion 8 server is starting up and will be available shortly.
> su cfuser -c nohup /opt/jrun4/bin/jrun -start cfusion -config
> jvm.config_dev > /opt/jrun4/logs/cfusion-event.log &
> su cfuser -c nohup /opt/jrun4/bin/jrun -start dev_inter -config
> jvm.config_dev >
>
> /opt/jrun4/servers/dev_inter/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
> &
> su cfuser -c nohup /opt/jrun4/bin/jrun -start dev_www -config
> jvm.config_dev >
>
> /opt/jrun4/servers/dev_www/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
> &
> su cfuser -c nohup /opt/jrun4/bin/jrun -start test_inter -config
> jvm.config_test >
>
> /opt/jrun4/servers/test_inter/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
> &
> su cfuser -c nohup /opt/jrun4/bin/jrun -start test_www -config
> jvm.config_test >
>
> /opt/jrun4/servers/test_www/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
> &
> ==
> ColdFusion 8 has been started.
> ColdFusion 8 will write logs to /opt/jrun4/logs/cfusion-event.log
> ==
>
>
> It all looks good.   What happens if you just try to run one of those
> commands directly, like this:
> su cfuser -c nohup /opt/jrun4/bin/jrun -start test_www -config
> jvm.config_test >
>
> /opt/jrun4/servers/test_www/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
> &
>
> Does that cause two instances to start up?
>
> -Ryan
>
> Phillip Duba wrote:
> > Hey everyone,
> >
> > I'm trying to create/modify the coldfusion8multi start startup scripts to
> > utilize a different jvm.config folder for each instance of ColdFusion 8
> > that's been created. Essentially, I have dev and test instances on the
> same
> > box, each with it's own jvm.config. The script is below, compiled from
> > documentation from Adobe and various blog posts/other emails (thanks
> Steve
> > Erat!). What I see when I use the script to start the services, is that
> all
> > the services get started with the -config setting, but then a duplicate
> set
> > are spawned without the -config and the first set of services are then
> > stopped. Here's the abbreviated script:
> >
> > #!/bin/sh
> > # MultiServer cfusion instance Init-Script
> >
> > CF_DIR="/opt/jrun4"
> > RUNTIME_USER="cfuser"
> > devservers="dev_inter dev_www"
> > testservers="test_inter test_www"
> >
> > cfstart() {
> > echo "The ColdFusion 8 server is starting up and will be available
> shortly."
> > su $RUNTIME_USER -c "nohup $CF_DIR/bin/jrun -start cfusion -config
> > jvm.config_dev > $CF_DIR/logs/cfusion-event.log &"
> > #su $RUNTIME_USER -c "nohup $CF_DIR/bin/jrun -start admin -config
> > jvm.config_dev > $CF_DIR/logs/admin-event.log &"
> > for server in $devservers
> > do
> > su $RUNTIME_USER -c "nohup $CF_DIR/bin/jrun -start $server -config
> > jvm.config_dev >
> >
> $CF_DIR/servers/$server/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
> > &"
> > done
> > for server in $testservers
> > do
> > su $RUNTIME_USER -c "nohup $CF_DIR/bin/jrun -start $server -config
> > jvm.config_test >
> >
> $CF_DIR/servers/$server/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
> > &"
> > done
> > echo
> > "=="
> > echo "ColdFusion 8 has been started."
> > echo "ColdFusion 8 will write logs to $CF_DIR/logs/cfusion-event.log"
> > echo
> > "=="
> > }
> >
> > ...
> >
> > case $1 in
> > start)
> > cfstart
> > ;;
> >
> > ...
> > esac
> >
> > exit 0
> >
> > Any insight/help would be appreciated. This is ColdFusion 8.0.1
> Enterprise,
> > 64-bit, on RHEL 5 64-bit. Thanks,
> >
> > Phil
> >
> >
> >
>
> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321752
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: multiple cfapplications

2009-04-17 Thread Mark Kruger

Check out this post.

http://www.coldfusionmuse.com/index.cfm/2005/8/19/application.variables 

It outlines some of the fundamentals and pitfalls.


If you want to use a 'base' + extended application model, the
application.cfc makes it make sense a little more. You can create your base
somewhere and then "extend" it wherever you need it - overwriting the
functions/variables that are needed for the application you are using.

-Mark

Mark A. Kruger, CFG, MCSE
(402) 408-3733 ext 105
www.cfwebtools.com
www.coldfusionmuse.com
www.necfug.com

-Original Message-
From: Chad Gray [mailto:cg...@careyweb.com] 
Sent: Friday, April 17, 2009 10:57 AM
To: cf-talk
Subject: multiple cfapplications


If I have many cfapplication.cfm files on a web site in different folders
how do they work together?

Say I have application.cfm on the root of the web site with an application
name "foo".

Then in a "user" folder I have an application.cfm page and it's application
name is also "foo".

How do they interact?  Do they inherent each other's settings?  

What if I have a application.cfm page in a "login" folder and it's
application name is "goo".

Does it overwrite the root application.cfm???

Thanks!




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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321751
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: multiple cfapplications

2009-04-17 Thread Ben Nadel

Chad,

Applications on the same box that have the same name *are* the same
application, as far as ColdFusion is concerned. It uses the CFApplication
tag (or Application.cfc THIS.Name property) to bind the current page request
to a defined memory space in ColdFusion application server.

So, yes, if one app defined a variable and then a sub-folder with a
different CFApp tag with the *same* name is called, it will also have access
to that variable.

-- 
Ben Nadel
Adobe Community Expert
Adobe Certified Advanced ColdFusion Developer
Manager New York ColdFusion User Group
http://www.bennadel.com

Need ColdFusion Help?
http://www.bennadel.com/Ask-Ben


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321750
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


multiple cfapplications

2009-04-17 Thread Chad Gray

If I have many cfapplication.cfm files on a web site in different folders how 
do they work together?

Say I have application.cfm on the root of the web site with an application name 
"foo".

Then in a "user" folder I have an application.cfm page and it's application 
name is also "foo".

How do they interact?  Do they inherent each other's settings?  

What if I have a application.cfm page in a "login" folder and it's application 
name is "goo".

Does it overwrite the root application.cfm???

Thanks!


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321749
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Startup scripts on Linux

2009-04-17 Thread Ryan Stille

I'm not seeing a problem with your script.  When I change it to echo out 
the start up commands instead of running them, this is what I get:

The ColdFusion 8 server is starting up and will be available shortly.
su cfuser -c nohup /opt/jrun4/bin/jrun -start cfusion -config 
jvm.config_dev > /opt/jrun4/logs/cfusion-event.log &
su cfuser -c nohup /opt/jrun4/bin/jrun -start dev_inter -config 
jvm.config_dev > 
/opt/jrun4/servers/dev_inter/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
 
&
su cfuser -c nohup /opt/jrun4/bin/jrun -start dev_www -config 
jvm.config_dev > 
/opt/jrun4/servers/dev_www/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
 
&
su cfuser -c nohup /opt/jrun4/bin/jrun -start test_inter -config 
jvm.config_test > 
/opt/jrun4/servers/test_inter/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
 
&
su cfuser -c nohup /opt/jrun4/bin/jrun -start test_www -config 
jvm.config_test > 
/opt/jrun4/servers/test_www/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
 
&
==
ColdFusion 8 has been started.
ColdFusion 8 will write logs to /opt/jrun4/logs/cfusion-event.log
==


It all looks good.   What happens if you just try to run one of those 
commands directly, like this:
su cfuser -c nohup /opt/jrun4/bin/jrun -start test_www -config 
jvm.config_test > 
/opt/jrun4/servers/test_www/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
 
&

Does that cause two instances to start up?

-Ryan

Phillip Duba wrote:
> Hey everyone,
>
> I'm trying to create/modify the coldfusion8multi start startup scripts to
> utilize a different jvm.config folder for each instance of ColdFusion 8
> that's been created. Essentially, I have dev and test instances on the same
> box, each with it's own jvm.config. The script is below, compiled from
> documentation from Adobe and various blog posts/other emails (thanks Steve
> Erat!). What I see when I use the script to start the services, is that all
> the services get started with the -config setting, but then a duplicate set
> are spawned without the -config and the first set of services are then
> stopped. Here's the abbreviated script:
>
> #!/bin/sh
> # MultiServer cfusion instance Init-Script
>
> CF_DIR="/opt/jrun4"
> RUNTIME_USER="cfuser"
> devservers="dev_inter dev_www"
> testservers="test_inter test_www"
>
> cfstart() {
> echo "The ColdFusion 8 server is starting up and will be available shortly."
> su $RUNTIME_USER -c "nohup $CF_DIR/bin/jrun -start cfusion -config
> jvm.config_dev > $CF_DIR/logs/cfusion-event.log &"
> #su $RUNTIME_USER -c "nohup $CF_DIR/bin/jrun -start admin -config
> jvm.config_dev > $CF_DIR/logs/admin-event.log &"
> for server in $devservers
> do
> su $RUNTIME_USER -c "nohup $CF_DIR/bin/jrun -start $server -config
> jvm.config_dev >
> $CF_DIR/servers/$server/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
> &"
> done
> for server in $testservers
> do
> su $RUNTIME_USER -c "nohup $CF_DIR/bin/jrun -start $server -config
> jvm.config_test >
> $CF_DIR/servers/$server/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
> &"
> done
> echo
> "=="
> echo "ColdFusion 8 has been started."
> echo "ColdFusion 8 will write logs to $CF_DIR/logs/cfusion-event.log"
> echo
> "=="
> }
>
> ...
>
> case $1 in
> start)
> cfstart
> ;;
>
> ...
> esac
>
> exit 0
>
> Any insight/help would be appreciated. This is ColdFusion 8.0.1 Enterprise,
> 64-bit, on RHEL 5 64-bit. Thanks,
>
> Phil
>
>
> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321748
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BOLT!

2009-04-17 Thread Rick Faircloth

Thanks, Mark and Alan, for some word on the issue!

Rick

On Fri, Apr 17, 2009 at 11:34 AM, Mark Kruger wrote:

>
> We have one copy running in house... Can't say more or I'd have to do
> something terrible to you with Jell-O and a duck suite. (I didn't want to
> be
> clichéd :)
>
> -Mk
>
> -Original Message-
> From: Alan Rother [mailto:alan.rot...@gmail.com]
> Sent: Friday, April 17, 2009 10:28 AM
> To: cf-talk
> Subject: Re: BOLT!
>
>
> I'm probably going to get in trouble for this.. but I can tell you with
> absolute certainty, the public beta has not been released yet. Very few
> people outside of Adobe have gotten their hands on Bolt yet. Be patient,
> when it's ready they'll open it up to the public beta.
>
> The only reason I'm saying this is I know your pain... Waiting for
> something
> super cool like this is a killer.. especially when you don't hear anything
> one way or the other...
>
>
> =]
>
> --
> 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;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321747
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


FW: BOLT!

2009-04-17 Thread Mark Kruger

Shouldn't that be "suit" ... What's a duck suite anyway? Some kind of
wetland litigation no doubt. 

-mk
-Original Message-
From: Mark Kruger [mailto:mkru...@cfwebtools.com]
Sent: Friday, April 17, 2009 10:34 AM
To: 'cf-talk@houseoffusion.com'
Subject: RE: BOLT!

We have one copy running in house... Can't say more or I'd have to do
something terrible to you with Jell-O and a duck suite. (I didn't want to be
clichéd :)

-Mk

-Original Message-
From: Alan Rother [mailto:alan.rot...@gmail.com]
Sent: Friday, April 17, 2009 10:28 AM
To: cf-talk
Subject: Re: BOLT!


I'm probably going to get in trouble for this.. but I can tell you with
absolute certainty, the public beta has not been released yet. Very few
people outside of Adobe have gotten their hands on Bolt yet. Be patient,
when it's ready they'll open it up to the public beta.

The only reason I'm saying this is I know your pain... Waiting for something
super cool like this is a killer.. especially when you don't hear anything
one way or the other...


=]

--
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;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321746
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: BOLT!

2009-04-17 Thread Mark Kruger

We have one copy running in house... Can't say more or I'd have to do
something terrible to you with Jell-O and a duck suite. (I didn't want to be
clichéd :)

-Mk

-Original Message-
From: Alan Rother [mailto:alan.rot...@gmail.com] 
Sent: Friday, April 17, 2009 10:28 AM
To: cf-talk
Subject: Re: BOLT!


I'm probably going to get in trouble for this.. but I can tell you with
absolute certainty, the public beta has not been released yet. Very few
people outside of Adobe have gotten their hands on Bolt yet. Be patient,
when it's ready they'll open it up to the public beta.

The only reason I'm saying this is I know your pain... Waiting for something
super cool like this is a killer.. especially when you don't hear anything
one way or the other...


=]

--
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;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321745
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 issues - In words of one syllable please :-)

2009-04-17 Thread Paul Vernon

> http://www.bennadel.com/blog/1535-ColdFusion-SESSION-Is-Always-Created-
> Even-If-OnSessionStart-Fails.htm
> http://www.bennadel.com/blog/1536-ColdFusion-Session-Management-And-
> Asynchronous-Page-Requests.htm
> 
> I have had mysterious SESSION issues and I think I finally figured it
> out!--
> 

Hi Ben,

I tend to read your blog a lot it seems to rank highly for the more obscure
issues that I encounter when debugging stuff in CF. As far as I can tell
though, I'm not having session start issues, rather session timeout issues
in relation to J2EE sessions and the error gets thrown on the http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321744
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BOLT!

2009-04-17 Thread Alan Rother

I'm probably going to get in trouble for this.. but I can tell you
with absolute certainty, the public beta has not been released yet. Very few
people outside of Adobe have gotten their hands on Bolt yet. Be patient,
when it's ready they'll open it up to the public beta.

The only reason I'm saying this is I know your pain... Waiting for something
super cool like this is a killer.. especially when you don't hear anything
one way or the other...


=]

-- 
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;207172674;29440083;f

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321743
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 issues - In words of one syllable please :-)

2009-04-17 Thread Phillip Duba

Paul, make sure you have 20 minutes for both the default and maximum
settings. I had the default set at 20, but the maximum was set at 60 minutes
and there ended up being 2 applications that used that maximum setting, or
at least were above the default.

Phil

On Fri, Apr 17, 2009 at 10:56 AM, Paul Vernon <
paul.ver...@web-architect.co.uk> wrote:

>
> > First, why it happens. When using J2EE sessions, the session is
> > handled by the J2EE server (JRun in your case). JRun has an internal
> > setting for the duration of sessions; that's controlled in the XML
> > file. Now, CF also has its own timeouts, which control how long to
> > keep using the same JRun session; if CF's session timeout is longer
> > than JRun's, CF is looking for a dead JRun session and you get the
> > invalid session error. Make sure the MAXIMUM CF session timeout
> > setting is less than the JRun setting.
>
> This is what I don't understand... I have the CF Admin settings set to 20
> mins for the session life. The JSEE sessions were set at 30 mins and I saw
> lots of errors. I've now increased the time to 35 minutes and although the
> errors are reduced in number, they still happen...
>
> As you have stated the issue, the errors should not have happened in the
> first place with our setup and increasing the J2EE session timeout by a
> further 5 minutes seems like an odd way to reduce the errors we've seen
> but,
> nevertheless, that is what it has done.
>
> I'm thinking this may be a timing issue on multi-CPU deployments. I
> remember
> back in the day looking at task manager stats where the System Idle time
> would read close to 48 hours when the server was re-booted 24 hours
> previously because the clock was accounting for the idle time on both
> processors... I wonder if the JRun session timeout process is looking at a
> ticker in the system that is effectively halving/quartering etc. the
> entered
> value in relation to the number of processors in the system and causing
> these timing anomalies? The idea (in my mind at least) has merit.
>
> > Second, the JSESSION cookie is the only one used for J2EE sessions.
> > The CFID and CFTOKEN cookies are used for client variables; you can
> > prevent them from being set for new users with the setClientCookies
> > setting in your application tag/cfc (set it to false).
>
> That sorts out that bit. Thanks!
>
> Paul
>
>
>
> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321742
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Session issues - In words of one syllable please :-)

2009-04-17 Thread Paul Vernon

> First, why it happens. When using J2EE sessions, the session is
> handled by the J2EE server (JRun in your case). JRun has an internal
> setting for the duration of sessions; that's controlled in the XML
> file. Now, CF also has its own timeouts, which control how long to
> keep using the same JRun session; if CF's session timeout is longer
> than JRun's, CF is looking for a dead JRun session and you get the
> invalid session error. Make sure the MAXIMUM CF session timeout
> setting is less than the JRun setting.

This is what I don't understand... I have the CF Admin settings set to 20
mins for the session life. The JSEE sessions were set at 30 mins and I saw
lots of errors. I've now increased the time to 35 minutes and although the
errors are reduced in number, they still happen...

As you have stated the issue, the errors should not have happened in the
first place with our setup and increasing the J2EE session timeout by a
further 5 minutes seems like an odd way to reduce the errors we've seen but,
nevertheless, that is what it has done.

I'm thinking this may be a timing issue on multi-CPU deployments. I remember
back in the day looking at task manager stats where the System Idle time
would read close to 48 hours when the server was re-booted 24 hours
previously because the clock was accounting for the idle time on both
processors... I wonder if the JRun session timeout process is looking at a
ticker in the system that is effectively halving/quartering etc. the entered
value in relation to the number of processors in the system and causing
these timing anomalies? The idea (in my mind at least) has merit.

> Second, the JSESSION cookie is the only one used for J2EE sessions.
> The CFID and CFTOKEN cookies are used for client variables; you can
> prevent them from being set for new users with the setClientCookies
> setting in your application tag/cfc (set it to false).

That sorts out that bit. Thanks!

Paul



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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321741
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BOLT!

2009-04-17 Thread Wil Genovese

Adam Lehman posted somewhere, about a month ago, a brief update.  Since Bolt
is not start on the same dev cycle as the next CF version it is not as fully
developed yet. They are working hard to get it up to speed.

I suspect they are really hoping to release it a the same time the release
the next version of CF, but I do not know that.

Wil



On Fri, Apr 17, 2009 at 9:14 AM, Eric Roberts <
ow...@threeravensconsulting.com> wrote:

>
> I applied a long time ago and haven't heard anything as of yet either.
>
> Eric
>
> On Fri, Apr 17, 2009 at 8:07 AM, Jose Diaz  wrote:
>
> >
> > Hello All,
> >
> > I have applied to Adobe for the Bolt beta but not heard a peep. Has
> anybody
> > had any news on when we can get to play with the new shiney toy?
> >
> > Jose Diaz
> >
> >
> >
>
> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321740
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Problem with CFDocument splitting text at page break

2009-04-17 Thread Rick Root

We're using cfdocument to output some reports that contain data in
tables.  Most of the data is confidential so I can't share exact
reports but I can duplicate the problem with some simple examples:

See the following, and note the last row of numbers on the second page.

http://www.it.dev.duke.edu/public/pdftest.pdf
http://www.it.dev.duke.edu/public/pdftest.txt (cfm source)

I also tried removing the headers

http://www.it.dev.duke.edu/public/pdftest2.cfm
http://www.it.dev.duke.edu/public/pdftest2.txt

and defining the pageheight and pagewidth:

http://www.it.dev.duke.edu/public/pdftest3.cfm
http://www.it.dev.duke.edu/public/pdftest3.txt

After much googling we've been unable to determine a solution.

We're on CF8.0.1 with the most recent cumulative hotfix applied
(cumulative hotfix 2)
-- 
Rick Root
New Brian Vander Ark Album, songs in the music player and cool behind
the scenes video at www.myspace.com/brianvanderark

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321739
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 issues - In words of one syllable please :-)

2009-04-17 Thread James Holmes

First, why it happens. When using J2EE sessions, the session is
handled by the J2EE server (JRun in your case). JRun has an internal
setting for the duration of sessions; that's controlled in the XML
file. Now, CF also has its own timeouts, which control how long to
keep using the same JRun session; if CF's session timeout is longer
than JRun's, CF is looking for a dead JRun session and you get the
invalid session error. Make sure the MAXIMUM CF session timeout
setting is less than the JRun setting.

Second, the JSESSION cookie is the only one used for J2EE sessions.
The CFID and CFTOKEN cookies are used for client variables; you can
prevent them from being set for new users with the setClientCookies
setting in your application tag/cfc (set it to false).

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

2009/4/17 Paul Vernon :
>
> Can someone explain why the "Session is invalid null" occurs?
>
> We have a site on a dedicated server running CF 8 (8,0,1,195765) Standard 
> edition. It gets around 11,000 users a day and for the most part is issue 
> free.
>
> I've searched HoF etc., I've read the tech notes and I've subsequently 
> altered the session-timeout value in the web.xml config file so the timeout 
> is larger than the session timeout in the CF admin settings. Altering the 
> session-timeout value has *definitely reduced* this error occurring but it 
> hasn't fixed the problem and my gut instinct is that by altering the 
> session-timeout value I'm just hiding the problem rather than dealing with it.
>
> Prior to altering the value, the error was happening around 60 or 70 times a 
> day, altering the value has reduced this error to a couple of times a day. I 
> suspect increasing the session-timeout value to an even larger number will 
> eradicate the problem but because I don’t understand the mechanics of why 
> it's happening in the first place, this solution just doesn't feel right.
>
> Also, J2EE sessions are enabled and I see the jsessionid in the headers of 
> requests but I still see CFID and CFTOKEN values too. I may have got this 
> wrong but I thought that the jsessionid negated the need for CFID and CFTOKEN?
>
> Any explanations as to exactly how the session cookies work and why the 
> session null error happens in the first place are gratefully received

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321738
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 issues - In words of one syllable please :-)

2009-04-17 Thread Ben Nadel

Paul,

You might want to check these posts:

http://www.bennadel.com/blog/1535-ColdFusion-SESSION-Is-Always-Created-Even-If-OnSessionStart-Fails.htm
http://www.bennadel.com/blog/1536-ColdFusion-Session-Management-And-Asynchronous-Page-Requests.htm

I have had mysterious SESSION issues and I think I finally figured it out!--



Ben Nadel
Adobe Community Expert
Adobe Certified Advanced ColdFusion Developer
Manager New York ColdFusion User Group
http://www.bennadel.com

Need ColdFusion Help?
http://www.bennadel.com/Ask-Ben


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321737
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Startup scripts on Linux

2009-04-17 Thread Phillip Duba

Hey everyone,

I'm trying to create/modify the coldfusion8multi start startup scripts to
utilize a different jvm.config folder for each instance of ColdFusion 8
that's been created. Essentially, I have dev and test instances on the same
box, each with it's own jvm.config. The script is below, compiled from
documentation from Adobe and various blog posts/other emails (thanks Steve
Erat!). What I see when I use the script to start the services, is that all
the services get started with the -config setting, but then a duplicate set
are spawned without the -config and the first set of services are then
stopped. Here's the abbreviated script:

#!/bin/sh
# MultiServer cfusion instance Init-Script

CF_DIR="/opt/jrun4"
RUNTIME_USER="cfuser"
devservers="dev_inter dev_www"
testservers="test_inter test_www"

cfstart() {
echo "The ColdFusion 8 server is starting up and will be available shortly."
su $RUNTIME_USER -c "nohup $CF_DIR/bin/jrun -start cfusion -config
jvm.config_dev > $CF_DIR/logs/cfusion-event.log &"
#su $RUNTIME_USER -c "nohup $CF_DIR/bin/jrun -start admin -config
jvm.config_dev > $CF_DIR/logs/admin-event.log &"
for server in $devservers
do
su $RUNTIME_USER -c "nohup $CF_DIR/bin/jrun -start $server -config
jvm.config_dev >
$CF_DIR/servers/$server/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
&"
done
for server in $testservers
do
su $RUNTIME_USER -c "nohup $CF_DIR/bin/jrun -start $server -config
jvm.config_test >
$CF_DIR/servers/$server/cfusion.ear/cfusion.war/WEB-INF/cfusion/logs/cfusion-event.log
&"
done
echo
"=="
echo "ColdFusion 8 has been started."
echo "ColdFusion 8 will write logs to $CF_DIR/logs/cfusion-event.log"
echo
"=="
}

...

case $1 in
start)
cfstart
;;

...
esac

exit 0

Any insight/help would be appreciated. This is ColdFusion 8.0.1 Enterprise,
64-bit, on RHEL 5 64-bit. Thanks,

Phil


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321736
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BOLT!

2009-04-17 Thread Eric Roberts

I applied a long time ago and haven't heard anything as of yet either.

Eric

On Fri, Apr 17, 2009 at 8:07 AM, Jose Diaz  wrote:

>
> Hello All,
>
> I have applied to Adobe for the Bolt beta but not heard a peep. Has anybody
> had any news on when we can get to play with the new shiney toy?
>
> Jose Diaz
>
>
> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321735
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: dynamic form and converting list of form variables

2009-04-17 Thread Chad Gray

Ah cool... I did not know there was a CFQueryParam with type LIST.  That is 
awesome!

I had visions of looping and parsing lists etc...  much easier your way!



-Original Message-
From: Casey Dougall [mailto:ca...@uberwebsitesolutions.com] 
Sent: Friday, April 17, 2009 10:04 AM
To: cf-talk
Subject: Re: dynamic form and converting list of form variables


On Fri, Apr 17, 2009 at 9:57 AM, Chad Gray  wrote:

>
> I have a form that has a bunch of checkbox fields that are dynamically
> created from a database.
>
> I need to take the fields selected and evaluate them and convert them to a
> list that I can use in a SQL query.
>
> Here is what is coming in to the action page:
>
> FIELDNAMES=PICTCATEGORYNAME1,PICTCATEGORYNAME3,PICTCATEGORYNAME5
> PICTCATEGORYNAME1=designed it myself
> PICTCATEGORYNAME3=clothes
> PICTCATEGORYNAME5=accessories
>
> I need to take this data and get it into my SQL’s IN function.
>
> SELECT *
> FROM profiles
> WHERE pictcategoryname IN ('designed it myself','clothes','accessories')
>
> Are there any magical CF functions that can deliver this?  The form fields
> will be changing according to what the user selected.
>
>
If you use the same name for each check box, they will be in a list, so
instead of PICTCATEGORYNAME12345 etc, you just name all check boxes
PICTCATEGORYNAME.

Then it would already be in that list as needed,

WHERE pictcategoryname IN ()

Casey



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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321734
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: dynamic form and converting list of form variables

2009-04-17 Thread Casey Dougall

On Fri, Apr 17, 2009 at 9:57 AM, Chad Gray  wrote:

>
> I have a form that has a bunch of checkbox fields that are dynamically
> created from a database.
>
> I need to take the fields selected and evaluate them and convert them to a
> list that I can use in a SQL query.
>
> Here is what is coming in to the action page:
>
> FIELDNAMES=PICTCATEGORYNAME1,PICTCATEGORYNAME3,PICTCATEGORYNAME5
> PICTCATEGORYNAME1=designed it myself
> PICTCATEGORYNAME3=clothes
> PICTCATEGORYNAME5=accessories
>
> I need to take this data and get it into my SQL’s IN function.
>
> SELECT *
> FROM profiles
> WHERE pictcategoryname IN ('designed it myself','clothes','accessories')
>
> Are there any magical CF functions that can deliver this?  The form fields
> will be changing according to what the user selected.
>
>
If you use the same name for each check box, they will be in a list, so
instead of PICTCATEGORYNAME12345 etc, you just name all check boxes
PICTCATEGORYNAME.

Then it would already be in that list as needed,

WHERE pictcategoryname IN ()

Casey

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321733
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


dynamic form and converting list of form variables

2009-04-17 Thread Chad Gray

I have a form that has a bunch of checkbox fields that are dynamically created 
from a database.
 
I need to take the fields selected and evaluate them and convert them to a list 
that I can use in a SQL query.
 
Here is what is coming in to the action page:
 
FIELDNAMES=PICTCATEGORYNAME1,PICTCATEGORYNAME3,PICTCATEGORYNAME5
PICTCATEGORYNAME1=designed it myself
PICTCATEGORYNAME3=clothes
PICTCATEGORYNAME5=accessories
 
I need to take this data and get it into my SQL’s IN function.
 
SELECT *
FROM profiles
WHERE pictcategoryname IN ('designed it myself','clothes','accessories')
 
Are there any magical CF functions that can deliver this?  The form fields will 
be changing according to what the user selected.


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321732
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BOLT!

2009-04-17 Thread Eric Cobb

I don't think Bolt has gone into Beta yet.  Doesn't Adobe usually do a 
big announcement when a product's Beta testing starts?  (They certainly 
did with Flex 3!)  It's my understanding that right now they're just 
allowing people to put their name on the list for when it finally does 
go into Beta.

All they say on Labs is "BETA APPLICATIONS NOW BEING ACCEPTED!".  It 
doesn't say the Beta has started.
http://labs.adobe.com/wiki/index.php/Bolt


Thanks,

Eric Cobb
Certified Macromedia ColdFusion MX 7 Developer
http://www.cfgears.com


Jose Diaz wrote:
> Hello All,
> 
> I have applied to Adobe for the Bolt beta but not heard a peep. Has anybody
> had any news on when we can get to play with the new shiney toy?
> 
> Jose Diaz
> 
> 
> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321731
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Session issues - In words of one syllable please :-)

2009-04-17 Thread Paul Vernon

Can someone explain why the "Session is invalid null" occurs?

We have a site on a dedicated server running CF 8 (8,0,1,195765) Standard 
edition. It gets around 11,000 users a day and for the most part is issue free.
 
I've searched HoF etc., I've read the tech notes and I've subsequently altered 
the session-timeout value in the web.xml config file so the timeout is larger 
than the session timeout in the CF admin settings. Altering the session-timeout 
value has *definitely reduced* this error occurring but it hasn't fixed the 
problem and my gut instinct is that by altering the session-timeout value I'm 
just hiding the problem rather than dealing with it.

Prior to altering the value, the error was happening around 60 or 70 times a 
day, altering the value has reduced this error to a couple of times a day. I 
suspect increasing the session-timeout value to an even larger number will 
eradicate the problem but because I don’t understand the mechanics of why 
it's happening in the first place, this solution just doesn't feel right.

Also, J2EE sessions are enabled and I see the jsessionid in the headers of 
requests but I still see CFID and CFTOKEN values too. I may have got this wrong 
but I thought that the jsessionid negated the need for CFID and CFTOKEN?

Any explanations as to exactly how the session cookies work and why the session 
null error happens in the first place are gratefully received!

Paul





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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321730
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: BOLT!

2009-04-17 Thread Andy Matthews

Several of my coworkers were overheard talking about being on the Bolt beta
months ago. I'm pretty sure the beta's been out since like Jan or Feb.


andy 

-Original Message-
From: Rick Faircloth [mailto:r...@whitestonemedia.com] 
Sent: Friday, April 17, 2009 8:16 AM
To: cf-talk
Subject: Re: BOLT!


Hi, Jose...

I applied for beta participation, too, but was apparently turned down.
I also expected news from Adobe sooner than this.
Disappointed so far...

Rick

On Fri, Apr 17, 2009 at 9:07 AM, Jose Diaz  wrote:

>
> Hello All,
>
> I have applied to Adobe for the Bolt beta but not heard a peep. Has 
> anybody had any news on when we can get to play with the new shiney toy?
>
> Jose Diaz
>
>
> 



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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321729
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Populated PDF form won't open

2009-04-17 Thread Tom McNeer

Hi Dave,

Thanks for jumping in. Your knowledge is always greatly appreciated.

On Thu, Apr 16, 2009 at 6:18 PM, Dave Watts  wrote:

>
> When you say you created the PDF form in Acrobat Pro, you mean
> LiveCycle Designer, right?


Nope. I mean Acrobat 9 Pro, part of CS4. So there was no choice of form
type.

The odd thing is that the original form can be opened and used perfectly
well in Reader 8. It's when I use CF to populate the form and re-save it
that the resulting file causes the error.




-- 
Thanks,

Tom

Tom McNeer
MediumCool
http://www.mediumcool.com
1735 Johnson Road NE
Atlanta, GA 30306
404.589.0560


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321728
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: BOLT!

2009-04-17 Thread Rob Parkhill

I think that there are a bunch of people in that boat, who applied and have
not been notified...
Rob

On Fri, Apr 17, 2009 at 9:15 AM, Rick Faircloth wrote:

>
> Hi, Jose...
>
> I applied for beta participation, too, but was apparently turned down.
> I also expected news from Adobe sooner than this.
> Disappointed so far...
>
> Rick
>
> On Fri, Apr 17, 2009 at 9:07 AM, Jose Diaz  wrote:
>
> >
> > Hello All,
> >
> > I have applied to Adobe for the Bolt beta but not heard a peep. Has
> anybody
> > had any news on when we can get to play with the new shiney toy?
> >
> > Jose Diaz
> >
> >
> >
>
> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321727
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BOLT!

2009-04-17 Thread Rick Faircloth

Hi, Jose...

I applied for beta participation, too, but was apparently turned down.
I also expected news from Adobe sooner than this.
Disappointed so far...

Rick

On Fri, Apr 17, 2009 at 9:07 AM, Jose Diaz  wrote:

>
> Hello All,
>
> I have applied to Adobe for the Bolt beta but not heard a peep. Has anybody
> had any news on when we can get to play with the new shiney toy?
>
> Jose Diaz
>
>
> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321726
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: BOLT!

2009-04-17 Thread Francois Levesque

I also haven't received any news, but if it's anything like with other Adobe
NDA's anyone in the beta wouldn't be able to tell you that they are :P.
Francois Levesque
http://blog.critical-web.com/


On Fri, Apr 17, 2009 at 9:07 AM, Jose Diaz  wrote:

>
> Hello All,
>
> I have applied to Adobe for the Bolt beta but not heard a peep. Has anybody
> had any news on when we can get to play with the new shiney toy?
>
> Jose Diaz
>
>
> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321725
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: help with a grey area

2009-04-17 Thread Matt Quackenbush

I would suggest consulting the appropriate attorney(s).  :-)


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321724
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


BOLT!

2009-04-17 Thread Jose Diaz

Hello All,

I have applied to Adobe for the Bolt beta but not heard a peep. Has anybody
had any news on when we can get to play with the new shiney toy?

Jose Diaz


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321723
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


help with a grey area

2009-04-17 Thread Richard White

hi

our clients run tests on patients for research purposes. 

As part of their data protection they are 'told' to not keep personal 
identifiers (patient first name, last name, dob etc...) in the same database as 
their test data.

we have created a cf application that uses all cf security we know about, the 
database is stored on a seperate mysql vps, it can only be accessed via the cf 
app, and the the cf app controls individual access to the personal data (if 
someone does not have rights then they cannot read or write to the personal 
data)

however we are getting pressure from places to split the data into 2 database 
as it doesnt fit in with the 'terminology'

personally i am struggling with the need to split it into 2 databases.

i would appreciate your opinions on this as my opinion is:

- our cf application handles all of this and i don't see that placing them in 
seperate databases will make it more secure

- even if they are in separate databases... if they are stored on the same 
MySQL VPS then someone will be able to piece them together if they get into the 
backend anyway

- if the 2 databases are stored on separate MySQL VPS's would this not open a 
security issue.  and if someone gets into our cf app code then they will see 
the details of both the databases anyway and again can piece it together

- we also discussed encrypting the data in the personal identifier columns in 
another thread 
(http://www.houseoffusion.com/groups/cf-talk/thread.cfm/threadid:59153) where 
the outcome was that encryption would not provide any real benefit, and was 
therefore not necessary.

thanks for your opinions

richard 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321722
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: CFIMAGE - for all formats

2009-04-17 Thread Fawzi Amadu

Actually as many formats as possible, but mainly jpeg, giff.


>What is the image type?
>
>
>
>> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321721
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: Calendar Functionality

2009-04-17 Thread Steve LaBadie

Jason,

Sorry if I didn't make myself clear. The calendar as written highlights
the current date (today's date) only and is linked to the master events
calendar for that given week. What I would like to do is have all the
dates active and linked to their perspective events. I have attached the
entire code.

Steve LaBadie, Web Manager
East Stroudsburg University
200 Prospect St.
East Stroudsburg, Pa 18301
570-422-3999
http://www.esu.edu
slaba...@po-box.esu.edu


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321720
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: CFIMAGE - for all formats

2009-04-17 Thread Adrian Lynch

This one got me too a while ago:

http://cferror.org/error.cfm?errorID=1

Adrian

> -Original Message-
> From: Fawzi Amadu [mailto:abd...@gmail.com]
> Sent: 17 April 2009 12:26
> To: cf-talk
> Subject: CFIMAGE - for all formats
> 
> 
> Hi, I am trying to resize images with CFIMAGE but when I process my
> code, I keep getting an error that: The images/consumer/ image format
> is not supported on this operating system.
> 
> Initially I left the format attribute out and got the same error with a
> suggestion that I try using GetReadableImageFormats(), but this hasn't
> resolved the problem.
> 
> How can I resolve this problem, TIA
> 
> 
> 
> Here's the code:
> 
> The error occurred in C:\ColdFusion8\wwwroot\e-
> Ghana\process_simpleSearchResults.cfm: line 45
> 43 :
> 44 : 
> 45 :  action="resize" width="100" height="60" name="resizedImg" format=
> GetReadableImageFormats()>
> 46 : 
> 47 : #Cnsmr_ProductDESCRIPTION#
>    href="showProductDetail.cfm?Cnsmr_ProductID=#URLEncodedFormat(TRIM(Cnsm
> r_ProductID))#">#Cnsmr_ProductMODELNo#  


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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321719
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: CFIMAGE - for all formats

2009-04-17 Thread Michael Dinowitz

What is the image type?

On Fri, Apr 17, 2009 at 7:25 AM, Fawzi Amadu  wrote:

>
> Hi, I am trying to resize images with CFIMAGE but when I process my code, I
> keep getting an error that: The images/consumer/ image format is not
> supported on this operating system.
>
> Initially I left the format attribute out and got the same error with a
> suggestion that I try using GetReadableImageFormats(), but this hasn't
> resolved the problem.
>
> How can I resolve this problem, TIA
>
>
>
> Here's the code:
>
> The error occurred in
> C:\ColdFusion8\wwwroot\e-Ghana\process_simpleSearchResults.cfm: line 45
> 43 :
> 44 : 
> 45 :  width="100" height="60" name="resizedImg" format= GetReadableImageFormats()>
> 46 : 
> 47 : #Cnsmr_ProductDESCRIPTION#
>    href="showProductDetail.cfm?Cnsmr_ProductID=#URLEncodedFormat(TRIM(Cnsmr_ProductID))#">#Cnsmr_ProductMODELNo#
>  
>
> 

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321718
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


CFIMAGE - for all formats

2009-04-17 Thread Fawzi Amadu

Hi, I am trying to resize images with CFIMAGE but when I process my code, I 
keep getting an error that: The images/consumer/ image format is not supported 
on this operating system. 

Initially I left the format attribute out and got the same error with a 
suggestion that I try using GetReadableImageFormats(), but this hasn't resolved 
the problem.

How can I resolve this problem, TIA



Here's the code:

The error occurred in 
C:\ColdFusion8\wwwroot\e-Ghana\process_simpleSearchResults.cfm: line 45
43 :   
44 : 
45 : 
46 : 
47 : #Cnsmr_ProductDESCRIPTION# 
  #Cnsmr_ProductMODELNo#
   

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

Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:321717
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4