Re: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Andy Allan

Trivia fact: Macromedia did consider rebranding the product for 6.0,
which as we all know was the first version to be built on Java.

On 22 June 2010 05:39, Sean Corfield seancorfi...@gmail.com wrote:

 On Mon, Jun 21, 2010 at 12:44 PM, Robert Harrison
 rob...@austin-williams.com wrote:
 Because the best links I got out of my previous email were at best bleak.
 The best link prompted an on-list response that we have 4 years to learn a
 new language.

 Bear in mind that Microsoft introduced ASP at the end of 1996 and
 essentially replaced it with ASP.NET just five years later. ASP.NET is
 just over 8 years old. CFML is already 15 years old and still going
 strong with a new version already being planned (and I believe Adobe
 have said they have the next two versions on their schedule which
 probably stretches out about four years - so you've got a couple of
 years at least of CF11 after that before, no doubt, CF12 follows it
 and so on).

 That Gartner report also said the rise of free open source CFML engine
 helps protect your investment in CF technology (because there will
 always be runtime engines for it).

 The suggestion to rebrand ColdFusion (it's one word, not two, BTW),
 comes up in most ColdFusion is Dead discussions and, as folks tend
 to point out, renaming it won't magically make it more popular
 (unfortunately).

 Adobe seem very dedicated to ColdFusion. They just invested a lot of
 time and money creating an IDE for it (ColdFusion Builder rocks!). The
 CF product team folks are currently visiting customers getting
 feedback for ColdFusion 10 and ColdFusion Builder 2.0 (and later
 versions - they've already outlined a release schedule that has CFB2
 and CFB3).
 --
 Sean A Corfield -- (904) 302-SEAN
 Railo Technologies, Inc. -- http://getrailo.com/
 An Architect's View -- http://corfield.org/

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

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334716
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Tom Chiverton

On Monday 21 Jun 2010 20:20:11 you wrote:
 I don't know if anyone from Adobe monitors this list, but I'm thinking it
 may be time to consider rebranding CF.

Sigh. Do we have to have the 'ActionScript Server' argument again too ?

-- 
Tom Chiverton
Helping to proactively network enterprise real-time integrated sexy content as 
part of the IT team of the year 2010, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
“partner” to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.co

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334717
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Pathing Problem

2010-06-22 Thread WebSite CFTalk

If you have created a virtual directory in IIS pointing to e:\images you should 
be able to use something like this:

img src=/images/imagename.ext

Or:
img src=www.urltosite.com/images/imagename.ext



-Original Message-
From: Richard Steele [mailto:r...@photoeye.com] 
Sent: 21. juni 2010 15:14
To: cf-talk
Subject: Pathing Problem


Our images reside on a separate drive e:/images. Our website is on 
c:\inetpub\wwwroot.

How do I show the images on the e drive?

Adding a virtual directory images in IIS and having img src in our code point 
to  e:\images doesn't seem to work. 

Thanks in advance. 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334718
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Pathing Problem

2010-06-22 Thread Bobby Hartsfield

That OR should begin with a protocol of course. 

img src=http://www.urltosite.com/images/imagename.ext;
img src=https://www.urltosite.com/images/imagename.ext;
 
But as anonymous said, in IIS, you can create a virtual directory. If you
name that directory 'images', you would use it in your code just as if it
were a normal directory.

Just be sure that when you create the virtual directory to the other
machine, you use a Connect As account that has permission to read them.


.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
 
-Original Message-
From: WebSite CFTalk [mailto:cft...@website.no] 
Sent: Tuesday, June 22, 2010 7:46 AM
To: cf-talk
Subject: RE: Pathing Problem


If you have created a virtual directory in IIS pointing to e:\images you
should be able to use something like this:

img src=/images/imagename.ext

Or:
img src=www.urltosite.com/images/imagename.ext



-Original Message-
From: Richard Steele [mailto:r...@photoeye.com] 
Sent: 21. juni 2010 15:14
To: cf-talk
Subject: Pathing Problem


Our images reside on a separate drive e:/images. Our website is on
c:\inetpub\wwwroot.

How do I show the images on the e drive?

Adding a virtual directory images in IIS and having img src in our code
point to  e:\images doesn't seem to work. 

Thanks in advance. 





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334719
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Daniel Mackey

Hi All,

I was wondering if somebody could help with a problem we have encountered
since moving to ColdFusion 9 from ColdFusion 8.

When we use CFContent to serve a file, it fails on large files (300+mb) but
works on smaller (-30mb) files. It fails consistantly without a ColdFusion
error, the browser receives a 404 error

Example response in Chrome : Error 6 (net::ERR_FILE_NOT_FOUND): The file or
directory could not be found.

Nothing changed on the server except for the ColdFusion application server.

Server : 64bit Windows Server, ColdFusion 9 Standard

Hoping somebody has come across this before as I have exhausted all the
usual places without any luck.

Thanks in advance,
Dan.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334720
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Justin Scott

 Trivia fact: Macromedia did consider rebranding the product
 for 6.0, which as we all know was the first version to be
 built on Java.

They sort of did, a little bit, when they added that MX nonsense to the
name.


-Justin



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334721
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF vs. ASP.Net

2010-06-22 Thread Jose Diaz

Hi Guys,

Unfortunatly the company I work for decided to move away from CF :( and
proceeded to get shot of all the cf devs we had.
I was one of two survivors who they see as legacy application developers grr
even thou I decided to become an MCPD, they still see us a just CF devs.

Anyhoo I did build the following site: www.cfdot.net which shows code
comparisons for most of the common langauge syntax tasks.

If anything it will show how CF achieves in one line what .net does in 10 ;)
(my little dig back heh)

Jose

On Mon, Jun 21, 2010 at 10:52 PM, Sean Corfield seancorfi...@gmail.comwrote:


 On Mon, Jun 21, 2010 at 11:34 AM, Dave Watts dwa...@figleaf.com wrote:
  Well, there ya go, we got another 4 years to learn new languages...
 Adobe,
  way to set a bleak future for your own product!
  Adobe didn't write that, Gartner did. And overall, it's a pretty
  positive whitepaper.

 Particularly since Gartner has, in the past, been rather negative
 about ColdFusion...

 Nice to see that Gartner view the presence of established open-source
 alternatives to Adobe's ColdFusion as helping protect investment in
 CF technology.
 --
 Sean A Corfield -- (904) 302-SEAN
 Railo Technologies, Inc. -- http://getrailo.com/
 An Architect's View -- http://corfield.org/

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

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334722
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Raymond Camden

Ok, I'm now straying into OT area, but I must be the only who liked
the idea of PRODUCT YEAR as a brand. Ie, Windows 95, Windows 98,
Windows 2000. To me it was a very clear way to know the release of the
version you are using.

On Tue, Jun 22, 2010 at 8:30 AM, Justin Scott
jscott-li...@gravityfree.com wrote:

 Trivia fact: Macromedia did consider rebranding the product
 for 6.0, which as we all know was the first version to be
 built on Java.

 They sort of did, a little bit, when they added that MX nonsense to the
 name.



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334723
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Problems with SpreadSheetFormat Columns??

2010-06-22 Thread Ryan Bentley

Hi all,
I could use a little help with this one as I can't seem to find a solution for 
this anywhere, and I have definitely been wasting too much of my time on 
something so small! Anyways, I am wondering if there are any known issues with 
the SpreadsheetFormatColumns function in regards to formatting datetime fields 
from sql? I have searched and searched, and tried every variation I could think 
of with the following code, but cannot get it to format the dates. I would 
definitely appreciate any feedback on this one, or if anyone knows of any 
issues with this.
Here is one of my code versions:
cfset sObj=SpreadsheetNew()
cfset SpreadsheetAddRow(sObj, Client,Leave Owner,Leave Number,Request 
Date,Leave Reason,Elig Confirmed Date,Packet Mailed Date)
cfset SpreadsheetAddRows(sObj, drilldowns)cfset 
SpreadsheetFormatColumns(sObj, {dataformat=mm/dd/}, 4,6-7)cfset 
SpreadsheetFormatRow(sObj, {bold=TRUE, alignment=center}, 1)

cfspreadsheet action=write    name=sObj    
filename=filename#dateformat(now(), 'mmdd')#.xls    overwrite=true
I could very easily write this differently, or convert the fields in sql, but 
since I started this to try out some of the CFSpreadsheet stuff, I wanted to 
see if there was a solution while still using it this way.
Th

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334724
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Tom Chiverton

On Tuesday 22 Jun 2010 14:11:24 you wrote:
 Hi All,
 
 I was wondering if somebody could help with a problem we have encountered
 since moving to ColdFusion 9 from ColdFusion 8.
 
 When we use CFContent to serve a file, it fails on large files (300+mb) but
 works on smaller (-30mb) files. It fails consistantly without a ColdFusion
 error, the browser receives a 404 error

Does it get this error immediately ? Or after transferring some of the file ?
I'd suspect some setting you've not copied into the new server, like request 
timeout or RAM limits.

-- 
Tom Chiverton
Helping to completely establish visionary second-generation one-to-one niches 
as part of the IT team of the year 2010, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
“partner” to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.co

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334725
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Michael Grant

Yes you are straying OT, and yes, I agree with you. :)

On Tue, Jun 22, 2010 at 9:47 AM, Raymond Camden rcam...@gmail.com wrote:


 Ok, I'm now straying into OT area, but I must be the only who liked
 the idea of PRODUCT YEAR as a brand. Ie, Windows 95, Windows 98,
 Windows 2000. To me it was a very clear way to know the release of the
 version you are using.

 On Tue, Jun 22, 2010 at 8:30 AM, Justin Scott
 jscott-li...@gravityfree.com wrote:
 
  Trivia fact: Macromedia did consider rebranding the product
  for 6.0, which as we all know was the first version to be
  built on Java.
 
  They sort of did, a little bit, when they added that MX nonsense to the
  name.
 
 

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334726
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Andy Matthews

The flip side of that is it's also too easy to tell how out of date you are.

:) 

-Original Message-
From: Raymond Camden [mailto:rcam...@gmail.com] 
Sent: Tuesday, June 22, 2010 8:48 AM
To: cf-talk
Subject: Re: Is it time for Adobe to Rebrand Cold Fusion?


Ok, I'm now straying into OT area, but I must be the only who liked the idea
of PRODUCT YEAR as a brand. Ie, Windows 95, Windows 98, Windows 2000. To me
it was a very clear way to know the release of the version you are using.

On Tue, Jun 22, 2010 at 8:30 AM, Justin Scott jscott-li...@gravityfree.com
wrote:

 Trivia fact: Macromedia did consider rebranding the product for 6.0, 
 which as we all know was the first version to be built on Java.

 They sort of did, a little bit, when they added that MX nonsense to 
 the name.





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334727
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Daniel Mackey

Hi Tom,

Everything has been double-checked and request limits checked. I tried on
anther CF9 server and the same thing happens. CF8 with the exact same
settings works

I'm at a complete loss and wondering if anyone else out there with CF9 could
try a simple test and see what happens?

cfheader name=Content-Disposition value=attachment; filename=cf9.exe
cfcontent type=unknown file=C:\temp\cf9.exe deletefile=No

Dan.

On Tue, Jun 22, 2010 at 2:50 PM, Tom Chiverton tom.chiver...@halliwells.com
 wrote:


 On Tuesday 22 Jun 2010 14:11:24 you wrote:
  Hi All,
 
  I was wondering if somebody could help with a problem we have encountered
  since moving to ColdFusion 9 from ColdFusion 8.
 
  When we use CFContent to serve a file, it fails on large files (300+mb)
 but
  works on smaller (-30mb) files. It fails consistantly without a
 ColdFusion
  error, the browser receives a 404 error

 Does it get this error immediately ? Or after transferring some of the file
 ?
 I'd suspect some setting you've not copied into the new server, like
 request
 timeout or RAM limits.

 --
 Tom Chiverton
 Helping to completely establish visionary second-generation one-to-one
 niches
 as part of the IT team of the year 2010, '09 and '08

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England and
 Wales under registered number OC307980 whose registered office address is at
 Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A
 list of members is available for inspection at the registered office
 together with a list of those non members who are referred to as partners.
  We use the word “partner” to refer to a member of the LLP, or an employee
 or consultant with equivalent standing and qualifications. Regulated by the
 Solicitors Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and
 may be confidential or legally privileged.  If you are not the addressee you
 must not read it and must not use any information contained in nor copy it
 nor inform any person other than Halliwells LLP or the addressee of its
 existence or contents.  If you have received this email in error please
 delete it and notify Halliwells LLP IT Department on 0870 365 2500.

 For more information about Halliwells LLP visit www.halliwells.co

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334728
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Tom Chiverton

On Tuesday 22 Jun 2010 14:57:12 Daniel Mackey wrote:
 cfheader name=Content-Disposition value=attachment; filename=cf9.exe
 cfcontent type=unknown file=C:\temp\cf9.exe deletefile=No

Confirmed broken I think - congratulations, you've found a bug in ColdFusion 
:-)

I'm on 64bit SuSE Linux here, so used the CF9.0.0 installer for that O/S - 
file not found in FireFox.
Change the 'file' patch in CFCONTENT to a much smaller file like /etc/hosts 
and it all works as expected. Fun fun fun.

-- 
Tom Chiverton
Helping to continually disseminate vertical eigth-generation exceptional B2C 
e-tailers as part of the IT team of the year 2010, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
“partner” to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.co

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334729
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Cfwindow

2010-06-22 Thread Paul Alkema

Hi,

Does anyone know if there is any possible way to close all open cfwindows
when a new cfwindow is opened? I would like to have only one cfwindow open
at a time.

 

Regards,

Paul 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334730
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Tom Chiverton

Update:
I now can't get anything to work on the box, because :

Error,jrpp-15,06/22/10,15:10:25,billpack,Java heap space The 
specific sequence of files included or processed is: 
/home/chivertont/workspace/billpack/webroot/t.cfm'' 
java.lang.OutOfMemoryError: Java heap space

Of course a swift bounce of CF fixes that, but I wonder if you could try 
increasing you heap size to beyond the file size and see what happens ?

-- 
Tom Chiverton
Helping to greatly seize B2B mission-critical compelling niches as part of the 
IT team of the year 2010, '09 and '08



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A list 
of members is available for inspection at the registered office together with a 
list of those non members who are referred to as partners.  We use the word 
“partner” to refer to a member of the LLP, or an employee or consultant with 
equivalent standing and qualifications. Regulated by the Solicitors Regulation 
Authority.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 2500.

For more information about Halliwells LLP visit www.halliwells.co

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334731
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Daniel Mackey

Ugghhh. I was secretly hoping that wasn't going to be the case...

Anyone got any alternatives? Could this be performed using Java?

Dan.

On Tue, Jun 22, 2010 at 3:10 PM, Tom Chiverton tom.chiver...@halliwells.com
 wrote:


 On Tuesday 22 Jun 2010 14:57:12 Daniel Mackey wrote:
  cfheader name=Content-Disposition value=attachment;
 filename=cf9.exe
  cfcontent type=unknown file=C:\temp\cf9.exe deletefile=No

 Confirmed broken I think - congratulations, you've found a bug in
 ColdFusion
 :-)

 I'm on 64bit SuSE Linux here, so used the CF9.0.0 installer for that O/S -
 file not found in FireFox.
 Change the 'file' patch in CFCONTENT to a much smaller file like
 /etc/hosts
 and it all works as expected. Fun fun fun.

 --
 Tom Chiverton
 Helping to continually disseminate vertical eigth-generation exceptional
 B2C
 e-tailers as part of the IT team of the year 2010, '09 and '08

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England and
 Wales under registered number OC307980 whose registered office address is at
 Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A
 list of members is available for inspection at the registered office
 together with a list of those non members who are referred to as partners.
  We use the word “partner” to refer to a member of the LLP, or an employee
 or consultant with equivalent standing and qualifications. Regulated by the
 Solicitors Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and
 may be confidential or legally privileged.  If you are not the addressee you
 must not read it and must not use any information contained in nor copy it
 nor inform any person other than Halliwells LLP or the addressee of its
 existence or contents.  If you have received this email in error please
 delete it and notify Halliwells LLP IT Department on 0870 365 2500.

 For more information about Halliwells LLP visit www.halliwells.co

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334732
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Cfwindow

2010-06-22 Thread morgan l

Check out the code here:
http://www.coldfusionguy.com/ColdFusion/blog/index.cfm/2007/12/20/JavaScript-to-Identify-Current-CFWindows

http://www.coldfusionguy.com/ColdFusion/blog/index.cfm/2007/12/20/JavaScript-to-Identify-Current-CFWindowsIt
doesn't close them, but it's simple enough to remove the alert and replace
with ColdFusion.Window.hide()

On Tue, Jun 22, 2010 at 9:11 AM, Paul Alkema paulalkemadesi...@gmail.comwrote:


 Hi,

 Does anyone know if there is any possible way to close all open cfwindows
 when a new cfwindow is opened? I would like to have only one cfwindow open
 at a time.



 Regards,

 Paul



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334733
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Daniel Mackey

That's interesting. I don't get any messages logged and the server stays
up

I might give the heap space a lash and see

I'm always confused as to where to set the heap, perma and all that jazz and
what effects it all has

Dan.

On Tue, Jun 22, 2010 at 3:11 PM, Tom Chiverton tom.chiver...@halliwells.com
 wrote:


 Update:
 I now can't get anything to work on the box, because :

 Error,jrpp-15,06/22/10,15:10:25,billpack,Java heap space The
 specific sequence of files included or processed is:
 /home/chivertont/workspace/billpack/webroot/t.cfm'' 
 java.lang.OutOfMemoryError: Java heap space

 Of course a swift bounce of CF fixes that, but I wonder if you could try
 increasing you heap size to beyond the file size and see what happens ?

 --
 Tom Chiverton
 Helping to greatly seize B2B mission-critical compelling niches as part of
 the
 IT team of the year 2010, '09 and '08

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England and
 Wales under registered number OC307980 whose registered office address is at
 Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  A
 list of members is available for inspection at the registered office
 together with a list of those non members who are referred to as partners.
  We use the word “partner” to refer to a member of the LLP, or an employee
 or consultant with equivalent standing and qualifications. Regulated by the
 Solicitors Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and
 may be confidential or legally privileged.  If you are not the addressee you
 must not read it and must not use any information contained in nor copy it
 nor inform any person other than Halliwells LLP or the addressee of its
 existence or contents.  If you have received this email in error please
 delete it and notify Halliwells LLP IT Department on 0870 365 2500.

 For more information about Halliwells LLP visit www.halliwells.co

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334734
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Daniel Mackey

Unfortunately changing the heap (to 1024) didn't make a blind bit of
difference :-(

Anyone got any suggestions on a possible work around?

Dan.

On Tue, Jun 22, 2010 at 3:24 PM, Daniel Mackey dmac...@gmail.com wrote:

 That's interesting. I don't get any messages logged and the server stays
 up

 I might give the heap space a lash and see

 I'm always confused as to where to set the heap, perma and all that jazz
 and what effects it all has

 Dan.


 On Tue, Jun 22, 2010 at 3:11 PM, Tom Chiverton 
 tom.chiver...@halliwells.com wrote:


 Update:
 I now can't get anything to work on the box, because :

 Error,jrpp-15,06/22/10,15:10:25,billpack,Java heap space The
 specific sequence of files included or processed is:
 /home/chivertont/workspace/billpack/webroot/t.cfm'' 
 java.lang.OutOfMemoryError: Java heap space

 Of course a swift bounce of CF fixes that, but I wonder if you could try
 increasing you heap size to beyond the file size and see what happens ?

 --
 Tom Chiverton
 Helping to greatly seize B2B mission-critical compelling niches as part of
 the
 IT team of the year 2010, '09 and '08

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England
 and Wales under registered number OC307980 whose registered office address
 is at Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.
  A list of members is available for inspection at the registered office
 together with a list of those non members who are referred to as partners.
  We use the word “partner” to refer to a member of the LLP, or an employee
 or consultant with equivalent standing and qualifications. Regulated by the
 Solicitors Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and
 may be confidential or legally privileged.  If you are not the addressee you
 must not read it and must not use any information contained in nor copy it
 nor inform any person other than Halliwells LLP or the addressee of its
 existence or contents.  If you have received this email in error please
 delete it and notify Halliwells LLP IT Department on 0870 365 2500.

 For more information about Halliwells LLP visit www.halliwells.co

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334735
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Cameron Childress

On Tue, Jun 22, 2010 at 9:54 AM, Andy Matthews li...@commadelimited.com wrote:
 The flip side of that is it's also too easy to tell how out of date you are.

Which is a great thing I think.  Instead of asking why won't this
code work on CF5?, people would be forced to sheepishly ask why
won't this code work on CF2000?.

-Cameron

...

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334736
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Joe Rinehart

Do we really want Livecycle Application Server?

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334737
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Eric Roberts

I agree with you there Ray...it does delineate it nicely.

-Original Message-
From: Raymond Camden [mailto:rcam...@gmail.com] 
Sent: Tuesday, June 22, 2010 8:48 AM
To: cf-talk
Subject: Re: Is it time for Adobe to Rebrand Cold Fusion?


Ok, I'm now straying into OT area, but I must be the only who liked
the idea of PRODUCT YEAR as a brand. Ie, Windows 95, Windows 98,
Windows 2000. To me it was a very clear way to know the release of the
version you are using.

On Tue, Jun 22, 2010 at 8:30 AM, Justin Scott
jscott-li...@gravityfree.com wrote:

 Trivia fact: Macromedia did consider rebranding the product
 for 6.0, which as we all know was the first version to be
 built on Java.

 They sort of did, a little bit, when they added that MX nonsense to the
 name.





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334738
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Paul Alkema

Did you restart the ColdFusion service after making this change? Increasing
the Maximum JVM Heap Size doesn't take effect until the cf service is
restarted.

How much disk space is left on your server? How much ram does your server
have?

-Original Message-
From: Daniel Mackey [mailto:dmac...@gmail.com] 
Sent: Tuesday, June 22, 2010 10:39 AM
To: cf-talk
Subject: Re: CFContent failing on large files since moving to ColdFusion 9


Unfortunately changing the heap (to 1024) didn't make a blind bit of
difference :-(

Anyone got any suggestions on a possible work around?

Dan.

On Tue, Jun 22, 2010 at 3:24 PM, Daniel Mackey dmac...@gmail.com wrote:

 That's interesting. I don't get any messages logged and the server stays
 up

 I might give the heap space a lash and see

 I'm always confused as to where to set the heap, perma and all that jazz
 and what effects it all has

 Dan.


 On Tue, Jun 22, 2010 at 3:11 PM, Tom Chiverton 
 tom.chiver...@halliwells.com wrote:


 Update:
 I now can't get anything to work on the box, because :

 Error,jrpp-15,06/22/10,15:10:25,billpack,Java heap space The
 specific sequence of files included or processed is:
 /home/chivertont/workspace/billpack/webroot/t.cfm'' 
 java.lang.OutOfMemoryError: Java heap space

 Of course a swift bounce of CF fixes that, but I wonder if you could try
 increasing you heap size to beyond the file size and see what happens ?

 --
 Tom Chiverton
 Helping to greatly seize B2B mission-critical compelling niches as part
of
 the
 IT team of the year 2010, '09 and '08

 

 This email is sent for and on behalf of Halliwells LLP.

 Halliwells LLP is a limited liability partnership registered in England
 and Wales under registered number OC307980 whose registered office
address
 is at Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3
3EB.
  A list of members is available for inspection at the registered office
 together with a list of those non members who are referred to as
partners.
  We use the word partner to refer to a member of the LLP, or an
employee
 or consultant with equivalent standing and qualifications. Regulated by
the
 Solicitors Regulation Authority.

 CONFIDENTIALITY

 This email is intended only for the use of the addressee named above and
 may be confidential or legally privileged.  If you are not the addressee
you
 must not read it and must not use any information contained in nor copy
it
 nor inform any person other than Halliwells LLP or the addressee of its
 existence or contents.  If you have received this email in error please
 delete it and notify Halliwells LLP IT Department on 0870 365 2500.

 For more information about Halliwells LLP visit www.halliwells.co

 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334739
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFContent failing on large files since moving to ColdFusion 9

2010-06-22 Thread Daniel Mackey

Yeah, I restarted the service.

We have 1 terrabyte free and 24gigs of RAM.

I'm truly perplexed at this one. Exact same code ran fine on CF8 with the
same settings on the same server

Dan.

On Tue, Jun 22, 2010 at 4:24 PM, Paul Alkema paulalkemadesi...@gmail.comwrote:


 Did you restart the ColdFusion service after making this change? Increasing
 the Maximum JVM Heap Size doesn't take effect until the cf service is
 restarted.

 How much disk space is left on your server? How much ram does your server
 have?

 -Original Message-
 From: Daniel Mackey [mailto:dmac...@gmail.com]
 Sent: Tuesday, June 22, 2010 10:39 AM
 To: cf-talk
 Subject: Re: CFContent failing on large files since moving to ColdFusion 9


 Unfortunately changing the heap (to 1024) didn't make a blind bit of
 difference :-(

 Anyone got any suggestions on a possible work around?

 Dan.

 On Tue, Jun 22, 2010 at 3:24 PM, Daniel Mackey dmac...@gmail.com wrote:

  That's interesting. I don't get any messages logged and the server stays
  up
 
  I might give the heap space a lash and see
 
  I'm always confused as to where to set the heap, perma and all that jazz
  and what effects it all has
 
  Dan.
 
 
  On Tue, Jun 22, 2010 at 3:11 PM, Tom Chiverton 
  tom.chiver...@halliwells.com wrote:
 
 
  Update:
  I now can't get anything to work on the box, because :
 
  Error,jrpp-15,06/22/10,15:10:25,billpack,Java heap space The
  specific sequence of files included or processed is:
  /home/chivertont/workspace/billpack/webroot/t.cfm'' 
  java.lang.OutOfMemoryError: Java heap space
 
  Of course a swift bounce of CF fixes that, but I wonder if you could try
  increasing you heap size to beyond the file size and see what happens ?
 
  --
  Tom Chiverton
  Helping to greatly seize B2B mission-critical compelling niches as part
 of
  the
  IT team of the year 2010, '09 and '08
 
  
 
  This email is sent for and on behalf of Halliwells LLP.
 
  Halliwells LLP is a limited liability partnership registered in England
  and Wales under registered number OC307980 whose registered office
 address
  is at Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3
 3EB.
   A list of members is available for inspection at the registered office
  together with a list of those non members who are referred to as
 partners.
   We use the word partner to refer to a member of the LLP, or an
 employee
  or consultant with equivalent standing and qualifications. Regulated by
 the
  Solicitors Regulation Authority.
 
  CONFIDENTIALITY
 
  This email is intended only for the use of the addressee named above and
  may be confidential or legally privileged.  If you are not the addressee
 you
  must not read it and must not use any information contained in nor copy
 it
  nor inform any person other than Halliwells LLP or the addressee of its
  existence or contents.  If you have received this email in error please
  delete it and notify Halliwells LLP IT Department on 0870 365 2500.
 
  For more information about Halliwells LLP visit www.halliwells.co
 
 



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334740
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Eric Cobb

It works on getting managers to upgrade too!

We're still running CF2000, when CF2009 is already out.  We're 9 years 
behind everyone else! 

Thanks,

Eric Cobb
ECAR Technologies, LLC
http://www.ecartech.com
http://www.cfgears.com



Cameron Childress wrote:
 On Tue, Jun 22, 2010 at 9:54 AM, Andy Matthews li...@commadelimited.com 
 wrote:
   
 The flip side of that is it's also too easy to tell how out of date you are.
 

 Which is a great thing I think.  Instead of asking why won't this
 code work on CF5?, people would be forced to sheepishly ask why
 won't this code work on CF2000?.

 -Cameron

 ...

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334741
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF on IIS and 405 error

2010-06-22 Thread Kris Jones

Developing on localhost -- XP, or Win7. Dev, Stage, Production are all
Win2008 Servers.

Cheers,
Kris


On Mon, Jun 21, 2010 at 9:46 AM, Matthew Small
chestypul...@beachbum.net wrote:

 Are you using Windows XP or 2000 as the webserver?  If so, then this applies.
 http://support.microsoft.com/kb/216493

Thanks Bobby,
Just tried that, same result.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334742
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CFlickr help upload to a group

2010-06-22 Thread Rick Mason

I am building a web form that uploads pictures to our account on Flickr.
Using the CFlickr library examples I was able to get the form posting to
Flickr.  But I need it to post to a specific group within our account.  In
Flickr parlance groups are sort of like folders and depending on the posters
location it should go to one of two groups.

There is an API http://chris.m0nk3y.net/projects/CFlickr/Documentation/ but
I have been struggling to figure it out this morning.  Anyone done something
similar willing to share how they did it?



Rick Mason


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334743
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Justifying CF against ASP.NET

2010-06-22 Thread Robert Harrison

I was asking for links yesterday to help justify CF against ASP.NET.  Got
some help from the list; also found a good resource on Adobe.

In case anyone want to see:

http://www.adobe.com/products/coldfusion/pdfs/cf_evangelist_kit.pdf 



Robert B. Harrison
Director of Interactive Services
Austin  Williams
125 Kennedy Drive, Suite 100 
Hauppauge NY 11788
P : 631.231.6600 Ext. 119 
F : 631.434.7022
http://www.austin-williams.com 

Great advertising can't be either/or.  It must be .

Plug in to our blog: AW Unplugged
http://www.austin-williams.com/unplugged




 

__ Information from ESET Smart Security, version of virus signature
database 5218 (20100622) __

The message was checked by ESET Smart Security.

http://www.eset.com
 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334744
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Facebook Connect and coldfusion

2010-06-22 Thread Kris Jones

We're using FBConnect for a site in development now. It works fine, no
problem. Except when FB does something stupid and breaks the API.
Which happens every couple of weeks.

Cheers,
Kris

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334745
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Is it time for Adobe to Rebrand Cold Fusion? [spamtrap bayes][spamtrap heur]

2010-06-22 Thread Paul Hastings

On 6/22/2010 8:47 PM, Raymond Camden wrote:

 Ok, I'm now straying into OT area, but I must be the only who liked
 the idea of PRODUCT YEAR as a brand. Ie, Windows 95, Windows 98,
 Windows 2000. To me it was a very clear way to know the release of the
 version you are using.

named you kids that way too ray?

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334746
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Migrating ColdFusion aka Java cacerts file.

2010-06-22 Thread Ian Skinner

We upgraded some of our servers from CF 8 to CF 9 a couple of weeks 
ago.  Two of these servers are expected to make cfhttp SSL 
requests to other of our servers that are configure with self signed 
certificates.  So, of course, we had imported these self signed 
certificates into these servers making the cfhttp... requests cacerts 
keystore.

Somewhat disappointingly, after the upgrade we found out that our 
cacerts key store was again the default list and our servers no longer 
trusted the other servers.

I re-imported the self signed certificates today.  But, I was wondering 
can one just copy the cacerts file from an old server to a new server?  
Or is the file encrypted in some manner to prevent it from being 
'tampered' with by moving it someplace else?

TIA
Ian


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334747
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF vs. ASP.Net

2010-06-22 Thread Sean Corfield

On Tue, Jun 22, 2010 at 6:47 AM, Jose Diaz bleached...@gmail.com wrote:
 Unfortunatly the company I work for decided to move away from CF :( and
 proceeded to get shot of all the cf devs we had.

Sorry to hear that - glad you survived tho'...

 Anyhoo I did build the following site: www.cfdot.net which shows code
 comparisons for most of the common langauge syntax tasks.

:)

One thing to consider: many of the (CF) code examples could use
cfscript now and the comparison would then look 'better' in terms of
presenting CF as a 'regular' language...
-- 
Sean A Corfield -- (904) 302-SEAN
Railo Technologies, Inc. -- http://getrailo.com/
An Architect's View -- http://corfield.org/

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

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334748
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Is it time for Adobe to Rebrand Cold Fusion? [spamtrap bayes][spamtrap heur]

2010-06-22 Thread Eric Roberts

Now there's an idea...at least it would help remembering the year they were
born hehehehe

-Original Message-
From: Paul Hastings [mailto:p...@sustainablegis.com] 
Sent: Tuesday, June 22, 2010 12:45 PM
To: cf-talk
Subject: Re: Is it time for Adobe to Rebrand Cold Fusion? [spamtrap
bayes][spamtrap heur]


On 6/22/2010 8:47 PM, Raymond Camden wrote:

 Ok, I'm now straying into OT area, but I must be the only who liked
 the idea of PRODUCT YEAR as a brand. Ie, Windows 95, Windows 98,
 Windows 2000. To me it was a very clear way to know the release of the
 version you are using.

named you kids that way too ray?



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334749
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Is it time for Adobe to Rebrand Cold Fusion? [spamtrap bayes][spamtrap heur]

2010-06-22 Thread Ian Skinner

On 6/22/2010 11:48 AM, Eric Roberts wrote:
 Now there's an idea...at least it would help remembering the year they were
 born hehehehe


But could get confusing with twins, triplets, etc as well as people who 
get really busy and mange to have a birth in the first quarter AND the 
forth quarter of the year!

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334750
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Speaking of the cacerts file.

2010-06-22 Thread Ian Skinner

Can anybody give me some idea of what a person of ill intent could do if 
they got their greedy little hands on access to this file?

As I understand it they would have to have command line access to the 
system to modify it, would they not?  Or at least file system access to 
remove or replace it.

But other then just whipping it clean for the joy of the chaos of it, 
what other havoc might one cause with changes to the ColdFusion keystore?



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334751
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Is it time for Adobe to Rebrand Cold Fusion? [spamtrap bayes][spamtrap heur]

2010-06-22 Thread Judah McAuley

Those are service pack releases.

On Tue, Jun 22, 2010 at 12:04 PM, Ian Skinner h...@ilsweb.com wrote:

 On 6/22/2010 11:48 AM, Eric Roberts wrote:
 Now there's an idea...at least it would help remembering the year they were
 born hehehehe


 But could get confusing with twins, triplets, etc as well as people who
 get really busy and mange to have a birth in the first quarter AND the
 forth quarter of the year!

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334752
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Is it time for Adobe to Rebrand Cold Fusion? [spamtrap bayes][spamtrap heur]

2010-06-22 Thread Rick Faircloth

Just tag 'em... Ray 1.1, Ray 1.2, Ray 1.3

:o)


-Original Message-
From: Ian Skinner [mailto:h...@ilsweb.com] 
Sent: Tuesday, June 22, 2010 3:05 PM
To: cf-talk
Subject: Re: Is it time for Adobe to Rebrand Cold Fusion? [spamtrap
bayes][spamtrap heur]


On 6/22/2010 11:48 AM, Eric Roberts wrote:
 Now there's an idea...at least it would help remembering the year they
were
 born hehehehe


But could get confusing with twins, triplets, etc as well as people who 
get really busy and mange to have a birth in the first quarter AND the 
forth quarter of the year!



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334753
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread DURETTE, STEVEN J (ATTASIAIT)

Wait...

Wouldn't that be Ray 2010.1, Ray 2010.2, Ray 2010.3?

:)

Steve


-Original Message-
From: Rick Faircloth [mailto:r...@whitestonemedia.com] 
Sent: Tuesday, June 22, 2010 4:58 PM
To: cf-talk
Subject: RE: Is it time for Adobe to Rebrand Cold Fusion? [spamtrap
bayes][spamtrap heur]


Just tag 'em... Ray 1.1, Ray 1.2, Ray 1.3

:o)


-Original Message-
From: Ian Skinner [mailto:h...@ilsweb.com] 
Sent: Tuesday, June 22, 2010 3:05 PM
To: cf-talk
Subject: Re: Is it time for Adobe to Rebrand Cold Fusion? [spamtrap
bayes][spamtrap heur]


On 6/22/2010 11:48 AM, Eric Roberts wrote:
 Now there's an idea...at least it would help remembering the year they
were
 born hehehehe


But could get confusing with twins, triplets, etc as well as people who 
get really busy and mange to have a birth in the first quarter AND the 
forth quarter of the year!





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334754
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


cfdot.net (was: CF vs. ASP.Net)

2010-06-22 Thread Jordan Michaels

This is pretty sweet Jose.

Thanks for taking the time to create this site! An excellent resource 
indeed.

Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
Open BlueDragon Steering Committee
Railo Community Distributions

On 06/22/2010 06:47 AM, Jose Diaz wrote:

 Hi Guys,

 Unfortunatly the company I work for decided to move away from CF :( and
 proceeded to get shot of all the cf devs we had.
 I was one of two survivors who they see as legacy application developers grr
 even thou I decided to become an MCPD, they still see us a just CF devs.

 Anyhoo I did build the following site: www.cfdot.net which shows code
 comparisons for most of the common langauge syntax tasks.

 If anything it will show how CF achieves in one line what .net does in 10 ;)
 (my little dig back heh)

 Jose

 On Mon, Jun 21, 2010 at 10:52 PM, Sean Corfieldseancorfi...@gmail.comwrote:


 On Mon, Jun 21, 2010 at 11:34 AM, Dave Wattsdwa...@figleaf.com  wrote:
 Well, there ya go, we got another 4 years to learn new languages...
 Adobe,
 way to set a bleak future for your own product!
 Adobe didn't write that, Gartner did. And overall, it's a pretty
 positive whitepaper.

 Particularly since Gartner has, in the past, been rather negative
 about ColdFusion...

 Nice to see that Gartner view the presence of established open-source
 alternatives to Adobe's ColdFusion as helping protect investment in
 CF technology.
 --
 Sean A Corfield -- (904) 302-SEAN
 Railo Technologies, Inc. -- http://getrailo.com/
 An Architect's View -- http://corfield.org/

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



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334755
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: cfdot.net (was: CF vs. ASP.Net)

2010-06-22 Thread Bobby Hartsfield

Note that you spelled ColdFusion as Coldfusion on the home page. 

development knowledge from Coldfusion to C#.net and  
 
.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
 
-Original Message-
From: Jordan Michaels [mailto:jor...@viviotech.net] 
Sent: Tuesday, June 22, 2010 5:48 PM
To: cf-talk
Subject: cfdot.net (was: CF vs. ASP.Net)


This is pretty sweet Jose.

Thanks for taking the time to create this site! An excellent resource 
indeed.

Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
Open BlueDragon Steering Committee
Railo Community Distributions

On 06/22/2010 06:47 AM, Jose Diaz wrote:

 Hi Guys,

 Unfortunatly the company I work for decided to move away from CF :( and
 proceeded to get shot of all the cf devs we had.
 I was one of two survivors who they see as legacy application developers
grr
 even thou I decided to become an MCPD, they still see us a just CF devs.

 Anyhoo I did build the following site: www.cfdot.net which shows code
 comparisons for most of the common langauge syntax tasks.

 If anything it will show how CF achieves in one line what .net does in 10
;)
 (my little dig back heh)

 Jose

 On Mon, Jun 21, 2010 at 10:52 PM, Sean
Corfieldseancorfi...@gmail.comwrote:


 On Mon, Jun 21, 2010 at 11:34 AM, Dave Wattsdwa...@figleaf.com  wrote:
 Well, there ya go, we got another 4 years to learn new languages...
 Adobe,
 way to set a bleak future for your own product!
 Adobe didn't write that, Gartner did. And overall, it's a pretty
 positive whitepaper.

 Particularly since Gartner has, in the past, been rather negative
 about ColdFusion...

 Nice to see that Gartner view the presence of established open-source
 alternatives to Adobe's ColdFusion as helping protect investment in
 CF technology.
 --
 Sean A Corfield -- (904) 302-SEAN
 Railo Technologies, Inc. -- http://getrailo.com/
 An Architect's View -- http://corfield.org/

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



 



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334756
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: cfdot.net (was: CF vs. ASP.Net)

2010-06-22 Thread Bobby Hartsfield

While you are in there, you might want to spell check the rest of the home
page :-)
 
Im not trying to nitpick, I only noticed them (except for Coldfusion... that
usually stands out to me) because I sent the link to my colleagues along
with the text from the home page as a description for the link.

Outlook barked at me when I hit send.

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

-Original Message-
From: Bobby Hartsfield [mailto:bo...@acoderslife.com] 
Sent: Tuesday, June 22, 2010 6:10 PM
To: cf-talk
Subject: RE: cfdot.net (was: CF vs. ASP.Net)


Note that you spelled ColdFusion as Coldfusion on the home page. 

development knowledge from Coldfusion to C#.net and  
 
.:.:.:.:.:.:.:.:.:.:.:.:.:.
Bobby Hartsfield
http://acoderslife.com
 
-Original Message-
From: Jordan Michaels [mailto:jor...@viviotech.net] 
Sent: Tuesday, June 22, 2010 5:48 PM
To: cf-talk
Subject: cfdot.net (was: CF vs. ASP.Net)


This is pretty sweet Jose.

Thanks for taking the time to create this site! An excellent resource 
indeed.

Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
Open BlueDragon Steering Committee
Railo Community Distributions

On 06/22/2010 06:47 AM, Jose Diaz wrote:

 Hi Guys,

 Unfortunatly the company I work for decided to move away from CF :( and
 proceeded to get shot of all the cf devs we had.
 I was one of two survivors who they see as legacy application developers
grr
 even thou I decided to become an MCPD, they still see us a just CF devs.

 Anyhoo I did build the following site: www.cfdot.net which shows code
 comparisons for most of the common langauge syntax tasks.

 If anything it will show how CF achieves in one line what .net does in 10
;)
 (my little dig back heh)

 Jose

 On Mon, Jun 21, 2010 at 10:52 PM, Sean
Corfieldseancorfi...@gmail.comwrote:


 On Mon, Jun 21, 2010 at 11:34 AM, Dave Wattsdwa...@figleaf.com  wrote:
 Well, there ya go, we got another 4 years to learn new languages...
 Adobe,
 way to set a bleak future for your own product!
 Adobe didn't write that, Gartner did. And overall, it's a pretty
 positive whitepaper.

 Particularly since Gartner has, in the past, been rather negative
 about ColdFusion...

 Nice to see that Gartner view the presence of established open-source
 alternatives to Adobe's ColdFusion as helping protect investment in
 CF technology.
 --
 Sean A Corfield -- (904) 302-SEAN
 Railo Technologies, Inc. -- http://getrailo.com/
 An Architect's View -- http://corfield.org/

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



 





~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334757
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF Shopping carts

2010-06-22 Thread Jordan Michaels

Have you checked out Cartweaver yet?

https://www.cartweaver.com/store/detail/?id=cw3cfm

It's a cheap $300 and is licensed per developer, not per site.

Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
Open BlueDragon Steering Committee
Railo Community Distributions

On 06/18/2010 09:26 PM, Eric Roberts wrote:

 My client is looking to host locally, so it has to be something we can
 install ourselves.  Thanks!

 Eric

 -Original Message-
 From: Brian Hendel [mailto:sp...@splicedigital.com]
 Sent: Friday, June 18, 2010 9:28 PM
 To: cf-talk
 Subject: Re: CF Shopping carts


 Hi there.

 I don't have a free or cheap solution for you, but I have developed my own
 custom CF cart solution powering some high sales site, and I have a
 dedicated CF server on which I host my solutions. If you are interesting in
 chatting, feel free to drop me a line!  I typically handle the entire
 process for you (templating, configuration, payment gateway setup, shipping,
 etc).

 brian [-at-] splicedigital [-dot-] com

 Cheers.

 -Brian



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334758
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: cfdot.net (was: CF vs. ASP.Net)

2010-06-22 Thread C. Hatton Humphrey

 Im not trying to nitpick, I only noticed them (except for Coldfusion... that
 usually stands out to me) because I sent the link to my colleagues along
 with the text from the home page as a description for the link.

Two things that bug me -

1. It's C# which is one code-behind language for .NET.  I have yet to
have someone give me a quantifiable performance-based reason why it
better than other languages in the family.

2. The .NET version does not include the ASP.NET part of the
equation.  For example:
http://www.cfdot.net/cfdot/Pages/CodeDetail.aspx?id=7 (CFOutput) the
.NET code is simply setting the .Text property of a text box.  Where's
the creation of the object?

It's a great concept but as implemented it only confuses the whole CF
vs .NET conversation.

Hatton

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334759
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Speaking of the cacerts file.

2010-06-22 Thread James Holmes

In theoretical land:

You have an app that connects to the bank via some complex, highly secure
webservices API over SSL to transfer money etc. Assume Scumbag A wants that
money. Scumbag A manages to exploit your external DNS server to point the
bank's URL, so the info you send goes to the scumbag instead of the bank.
However, on connecting, your CF server will fail because the self-signed
certificate they've generated in the name of the bank isn't trusted by the
CA certs in the keystore. Nothing bad happens.

Now imagine they somehow changed the keystore, to insert a CA that trusts
their self-signed certificate. Your server now happily connects and sends
all of your banking details, passwords etc to Scumbag A. Bad things happen.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/


On 23 June 2010 04:20, Ian Skinner h...@ilsweb.com wrote:


 Can anybody give me some idea of what a person of ill intent could do if
 they got their greedy little hands on access to this file?

 As I understand it they would have to have command line access to the
 system to modify it, would they not?  Or at least file system access to
 remove or replace it.

 But other then just whipping it clean for the joy of the chaos of it,
 what other havoc might one cause with changes to the ColdFusion keystore?



 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334760
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Migrating ColdFusion aka Java cacerts file.

2010-06-22 Thread James Holmes

You can usually move it from place to place.

However, if you do copy the old one, you're likely to overwrite important
new, updated or revoked certificates, so I'd recommend adding your own certs
each time.

--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/


On 23 June 2010 02:37, Ian Skinner h...@ilsweb.com wrote:


 We upgraded some of our servers from CF 8 to CF 9 a couple of weeks
 ago.  Two of these servers are expected to make cfhttp SSL
 requests to other of our servers that are configure with self signed
 certificates.  So, of course, we had imported these self signed
 certificates into these servers making the cfhttp... requests cacerts
 keystore.

 Somewhat disappointingly, after the upgrade we found out that our
 cacerts key store was again the default list and our servers no longer
 trusted the other servers.

 I re-imported the self signed certificates today.  But, I was wondering
 can one just copy the cacerts file from an old server to a new server?
 Or is the file encrypted in some manner to prevent it from being
 'tampered' with by moving it someplace else?

 TIA
 Ian


 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334761
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Is it time for Adobe to Rebrand Cold Fusion?

2010-06-22 Thread Rick Faircloth

Even better! :o)


-Original Message-
From: DURETTE, STEVEN J (ATTASIAIT) [mailto:sd1...@att.com] 
Sent: Tuesday, June 22, 2010 5:00 PM
To: cf-talk
Subject: RE: Is it time for Adobe to Rebrand Cold Fusion?


Wait...

Wouldn't that be Ray 2010.1, Ray 2010.2, Ray 2010.3?

:)

Steve


-Original Message-
From: Rick Faircloth [mailto:r...@whitestonemedia.com] 
Sent: Tuesday, June 22, 2010 4:58 PM
To: cf-talk
Subject: RE: Is it time for Adobe to Rebrand Cold Fusion? [spamtrap
bayes][spamtrap heur]


Just tag 'em... Ray 1.1, Ray 1.2, Ray 1.3

:o)


-Original Message-
From: Ian Skinner [mailto:h...@ilsweb.com] 
Sent: Tuesday, June 22, 2010 3:05 PM
To: cf-talk
Subject: Re: Is it time for Adobe to Rebrand Cold Fusion? [spamtrap
bayes][spamtrap heur]


On 6/22/2010 11:48 AM, Eric Roberts wrote:
 Now there's an idea...at least it would help remembering the year they
were
 born hehehehe


But could get confusing with twins, triplets, etc as well as people who 
get really busy and mange to have a birth in the first quarter AND the 
forth quarter of the year!







~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology-Michael-Dinowitz/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:334762
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm