Re: CF + Android + A-GPS Coordinates

2010-05-25 Thread Brian Swartzfager

Hey, Arsalan,

The web browser that comes with the Android OS is capable of accessing the GPS 
information from the phone via the Geolocation functions built into HTML 5, but 
that only sends that information to the browser page.  To get that GPS 
information back to your ColdFusion application to do any sort of server-side 
processing, you'd have to send it to your server via AJAX or a form submission.

--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:333971
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF + Android + A-GPS Coordinates

2010-05-25 Thread Arsalan Tariq Keen

hmmm... that seems viable... can you please shed some more light. Any 
documents or readables on this?


Regards,
Arsalan

--
From: Brian Swartzfager bcswa...@umd.edu
Sent: Tuesday, May 25, 2010 4:55 PM
To: cf-talk cf-talk@houseoffusion.com
Subject: Re: CF + Android + A-GPS Coordinates


 Hey, Arsalan,

 The web browser that comes with the Android OS is capable of accessing the 
 GPS information from the phone via the Geolocation functions built into 
 HTML 5, but that only sends that information to the browser page.  To get 
 that GPS information back to your ColdFusion application to do any sort of 
 server-side processing, you'd have to send it to your server via AJAX or a 
 form submission.

 --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:333972
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF + Android + A-GPS Coordinates

2010-05-25 Thread Raj Vijay

I did a quick search and found this blog post which does what you are looking 
for.
http://www.buildcontext.com/blog/2010/01/05/browser-based-geolocation-experiment-powerful-mobile-web-html5/

The demo is here: http://www.bctx.info/wx
I looked at the code using Firebug and it's straight-forward.
Hope you will share your experiment/experience.

Raj 

~|
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:333973
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFGRID - Empty Response help

2010-05-25 Thread Emily McGill

Thanks for the help. I went in yesterday to try this change and noticed at that 
point (after hours of staring at it last week), it was a darn typo actually. 
Fixed it right up. 
This line - cfcase value=invoiceAactive
has the double a in the invoiceActive line. No wonder my response was empty! 

Isn't that always the way it is? So, I apologize for wasting everyone's time 
and I really appreciate the help. I am sure I will need more and I am learning 
a lot just by listening in on the conversation here!

Em

Emily, 

This line needs a set 

cf link = a href=AppExt.cfm?apprid= 

Ok, I have read and read and read and I can't figure out what I have got
going on here. I have a cfc which gets the data to populate the cfgrid. (I
am so new to all this, not even funny). I do not have an application.cfc, so
that rules out half the answers to this problem. I have another cfc to a
different page and when that has no data, it just shows the empty grid. So,
I don't think it is a configuration type problem.
The grid is fine when there is data, but I can't figure out how to stop the
nasty pop-up error when the dataset is empty. Here is the call:
cfgrid name=reportsGrid stripeRows=yes selectColor=##ccaa66
 stripeRowColor=##cc width=800 selectmode=row format=html
autowidth=true pagesize=50
bind=cfc:ApprenticeCFC/apprenticeReports.getApprenticeReportData({cfgridpag
e},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection},'#report#')

And here is the CFC:
cffunction name=getApprenticeReportData access=remote
 cfargument name=page required=yes
 cfargument name=pageSize required=yes
 cfargument name=gridsortcolumn required=yes
 cfargument name=gridsortdirection required=yes
 cfargument name=report type=string required=yes
 cfargument name=days type=string
 cfargument name=waiting type=boolean
 cfargument name=denied type=boolean
 cfargument name=receiving type=boolean
 cfargument name=usedReceive type=boolean
 cfargument name=idate type=date
!---  cfset var link = 
  cf link = a href=AppExt.cfm?apprid= 
   cfelseif action is cancellation
   cfset link = a href=AppCancel.cfm?apprid= 
   cfelseif action is completion
   cfset link = a href=AppComplete.cfm?apprid= 
   cfelseif action is recognition
   cfset link = a href=AppRecognize.cfm?apprid= 
   cfelseif action is interim
   cfset link = a href=AppInterim.cfm?apprid= 
   cfelse
   cfset link = a href=amendApprentice.cfm?apprid= 
 /cfif---
cfswitch expression =#report#

   cfcase value=invoiceAactive
 cfquery name=invoiceActive datasource=appr
select distinct po.occ_title,ap.occ_code, a.appr_id, a.appr_last_name||',
'||a.appr_first_name appr_last_name,
a.appr_first_name, ap.spon_prog_num spon_prog_num,
decode(updated_expected_compl, null,
to_char(expected_completion, '/mm/dd'),to_char(updated_expected_compl,
'mm/dd/'))  expected_completion,
to_char(ap.register_date, '/mm/dd') register_date,
CASE WHEN (trunc86400*(sysdate-birth_date))/60)/60)/24/365) BETWEEN 16
AND 18) THEN 'Y'
  WHEN (trunc86400*(sysdate-birth_date))/60)/60)/24/365)  18) THEN
null
 END YOUTH, to_char(i.invoice_date_2009, '/mm/dd') invoice_date_2009,
invoice_id, to_char(paid_date_2009, '/mm/dd') paid_date_2009,
to_char(voided_date_2009, '/mm/dd') voided_date_2009
from r_apprentice a, r_rais_user u, spon_login sl, r_appr_program ap,
 r_prog_occupation po, invoices i
where  upper(u.USER_ID) = upper('#Session.username#') and u.user_id =
sl.USER_ID
and a.appr_id = ap.APPR_ID and sl.spon_prog_num = ap.spon_prog_num and
terminate_rsn is null
and ap.spon_prog_num = po.spon_prog_num and ap.occ_code = po.occ_code and
i.appr_id = a.appr_id
cfif gridsortcolumn neq ''
   order by #gridsortcolumn# #gridsortdirection#
   cfelse
   order by invoice_id
   /cfif
/cfquery
 cfreturn queryconvertforgrid(invoiceActive,page,pagesize)/
 /cfcase
   /cfswitch
/cffunction


Please, please help. I apologize if I have missed a solution out there
somewhere, I have hunted and hunted, but everything seems to be either a
problem with the application.cfc or something more advanced than I am using.

This is the first time I ever posted a question anywhere in 13 years of IT
work, so let me know if you need more info or anything.









. 

~|
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:333974
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF8 - 32bit to 64bit

2010-05-25 Thread Martin, Dustin W

Has anyone ever upgraded from the 32bit to 64bit version of CF8? Does that 
require us pay for an upgrade is that free to do?

Dustin Martin
Application Analyst
The Kroger Co.
Phone: 502.429.4875
Fax: 502.429.4899

This e-mail message, including any attachments, is for the sole use of the 
intended recipient(s) and may contain information that is confidential and 
protected by law from unauthorized disclosure. Any unauthorized review, use, 
disclosure or distribution is prohibited. If you are not the intended 
recipient, please contact the sender by reply e-mail and destroy all copies of 
the original message.

~|
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:333975
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CF8 - 32bit to 64bit

2010-05-25 Thread Justin Scott

 Has anyone ever upgraded from the 32bit to 64bit
 version of CF8? Does that require us pay for an
 upgrade is that free to do?

The upgrade itself is free, but is only applicable to enterprise license
holders.  The 64-bit version will not accept a standard license key for
installation.


-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:333976
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF8 - 32bit to 64bit

2010-05-25 Thread Alan Rother

In CF8, 64 bit was only available on Enterprise. So if you have an
enterprise license, then you can simply re-install on 64bit hardware with a
64bit OS and you're good to go.

If you don't have enterprise you'l either need to upgrade to CF8 Enterprise
OR and this is awesome, just upgrade to CF9 standard.

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

=]
http://www.adobe.com/products/coldfusion/pdfs/cf9_feature_comparison_matrix_ue.pdf
-- 
Alan Rother
Adobe Certified Advanced ColdFusion MX 7 Developer
Manager, Phoenix Cold Fusion User Group, AZCFUG.org


~|
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:333977
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF8 - 32bit to 64bit

2010-05-25 Thread Sean Corfield

On Tue, May 25, 2010 at 8:34 AM, Martin, Dustin W
dustin.mar...@kroger.com wrote:
 Has anyone ever upgraded from the 32bit to 64bit version of CF8? Does that 
 require us pay for an upgrade is that free to do?

Someone pointed me at this (old) blog post today and I wondered if
folks here had any more up to date experience about running CF on
64-bit:

http://www.cfwhisperer.com/post.cfm/64-bit-architecture-and-apparent-issues-with-java-applications

(FWIW, all my deployments these days are to 64-bit systems but I don't
have any 32-bit systems to compare to - with the exception of my blog
which runs on a 32-bit cloud server at EWH)
-- 
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:333978
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CFGRID - Empty Response help

2010-05-25 Thread Scott Stewart

Emily..

no problem at all.. sometimes the worst bugs, just need a fresh set of
eyes ...no time wasted, glad I could help

On Tue, May 25, 2010 at 11:19 AM, Emily McGill cassadinec...@gmail.com wrote:

 Thanks for the help. I went in yesterday to try this change and noticed at 
 that point (after hours of staring at it last week), it was a darn typo 
 actually. Fixed it right up.
 This line - cfcase value=invoiceAactive
 has the double a in the invoiceActive line. No wonder my response was empty!

 Isn't that always the way it is? So, I apologize for wasting everyone's time 
 and I really appreciate the help. I am sure I will need more and I am 
 learning a lot just by listening in on the conversation here!

 Em

Emily,

This line needs a set

cf link = a href=AppExt.cfm?apprid= 

Ok, I have read and read and read and I can't figure out what I have got
going on here. I have a cfc which gets the data to populate the cfgrid. (I
am so new to all this, not even funny). I do not have an application.cfc, so
that rules out half the answers to this problem. I have another cfc to a
different page and when that has no data, it just shows the empty grid. So,
I don't think it is a configuration type problem.
The grid is fine when there is data, but I can't figure out how to stop the
nasty pop-up error when the dataset is empty. Here is the call:
cfgrid name=reportsGrid stripeRows=yes selectColor=##ccaa66
 stripeRowColor=##cc width=800 selectmode=row format=html
autowidth=true pagesize=50
bind=cfc:ApprenticeCFC/apprenticeReports.getApprenticeReportData({cfgridpag
e},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection},'#report#')

And here is the CFC:
cffunction name=getApprenticeReportData access=remote
 cfargument name=page required=yes
 cfargument name=pageSize required=yes
 cfargument name=gridsortcolumn required=yes
 cfargument name=gridsortdirection required=yes
 cfargument name=report type=string required=yes
 cfargument name=days type=string
 cfargument name=waiting type=boolean
 cfargument name=denied type=boolean
 cfargument name=receiving type=boolean
 cfargument name=usedReceive type=boolean
 cfargument name=idate type=date
!---  cfset var link = 
  cf link = a href=AppExt.cfm?apprid= 
   cfelseif action is cancellation
   cfset link = a href=AppCancel.cfm?apprid= 
   cfelseif action is completion
   cfset link = a href=AppComplete.cfm?apprid= 
   cfelseif action is recognition
   cfset link = a href=AppRecognize.cfm?apprid= 
   cfelseif action is interim
   cfset link = a href=AppInterim.cfm?apprid= 
   cfelse
   cfset link = a href=amendApprentice.cfm?apprid= 
 /cfif---
cfswitch expression =#report#

       cfcase value=invoiceAactive
 cfquery name=invoiceActive datasource=appr
select distinct po.occ_title,ap.occ_code, a.appr_id, a.appr_last_name||',
'||a.appr_first_name appr_last_name,
a.appr_first_name, ap.spon_prog_num spon_prog_num,
decode(updated_expected_compl, null,
to_char(expected_completion, '/mm/dd'),to_char(updated_expected_compl,
'mm/dd/'))  expected_completion,
to_char(ap.register_date, '/mm/dd') register_date,
CASE WHEN (trunc86400*(sysdate-birth_date))/60)/60)/24/365) BETWEEN 16
AND 18) THEN 'Y'
      WHEN (trunc86400*(sysdate-birth_date))/60)/60)/24/365)  18) THEN
null
 END YOUTH, to_char(i.invoice_date_2009, '/mm/dd') invoice_date_2009,
invoice_id, to_char(paid_date_2009, '/mm/dd') paid_date_2009,
to_char(voided_date_2009, '/mm/dd') voided_date_2009
from r_apprentice a, r_rais_user u, spon_login sl, r_appr_program ap,
 r_prog_occupation po, invoices i
where  upper(u.USER_ID) = upper('#Session.username#') and u.user_id =
sl.USER_ID
and a.appr_id = ap.APPR_ID and sl.spon_prog_num = ap.spon_prog_num and
terminate_rsn is null
and ap.spon_prog_num = po.spon_prog_num and ap.occ_code = po.occ_code and
i.appr_id = a.appr_id
cfif gridsortcolumn neq ''
       order by #gridsortcolumn# #gridsortdirection#
       cfelse
       order by invoice_id
       /cfif
/cfquery
 cfreturn queryconvertforgrid(invoiceActive,page,pagesize)/
 /cfcase
   /cfswitch
/cffunction


Please, please help. I apologize if I have missed a solution out there
somewhere, I have hunted and hunted, but everything seems to be either a
problem with the application.cfc or something more advanced than I am using.

This is the first time I ever posted a question anywhere in 13 years of IT
work, so let me know if you need more info or anything.









.

 

~|
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:333979
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CF8 - 32bit to 64bit

2010-05-25 Thread Justin Scott

 If you don't have enterprise you'l either need to
 upgrade to CF8 Enterprise OR and this is awesome,
 just upgrade to CF9 standard.

Nice, we're not running 9 yet and I didn't realize that the 64-bit edition
for 9 would work with standard.  Awesome.  More ammunition for getting the
upgrade.


-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:333980
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: CF8 - 32bit to 64bit

2010-05-25 Thread Martin, Dustin W

That blog post is quite interesting. Certainly something to investigate. Have 
you run into any issues running 64bit vs 32bit? Anything that could end up 
biting me?

Dustin Martin
Application Analyst
The Kroger Co.
Phone: 502.429.4875
Fax: 502.429.4899


-Original Message-
From: Sean Corfield [mailto:seancorfi...@gmail.com]
Sent: Tuesday, May 25, 2010 12:40 PM
To: cf-talk
Subject: Re: CF8 - 32bit to 64bit


On Tue, May 25, 2010 at 8:34 AM, Martin, Dustin W
dustin.mar...@kroger.com wrote:
 Has anyone ever upgraded from the 32bit to 64bit version of CF8? Does that 
 require us pay for an upgrade is that free to do?

Someone pointed me at this (old) blog post today and I wondered if
folks here had any more up to date experience about running CF on
64-bit:

http://www.cfwhisperer.com/post.cfm/64-bit-architecture-and-apparent-issues-with-java-applications

(FWIW, all my deployments these days are to 64-bit systems but I don't
have any 32-bit systems to compare to - with the exception of my blog
which runs on a 32-bit cloud server at EWH)
--
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:333981
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF8 - 32bit to 64bit

2010-05-25 Thread Mike Chabot

My understanding is that switching from 32-bit to 64-bit will
negatively impact speed, unless the program is able to use the
additional address space to boost performance beyond that speed hit. I
assume that ColdFusion should benefit from being 64-bit if you also
give it more than 4 GB of RAM and use that extra RAM to cache
additional objects. If the Web sites don't make use of the additional
RAM, then I would expect 64-bit CF to perform worse than 32-bit CF, in
addition to introducing other potential issues surrounding 64-bit
software.

The a href=http://dotnetrocks.com/archives.aspxDot Net Rocks/a
podcast in the past couple months has had a few good discussions with
Microsoft engineers on developing 32-bit apps versus 64-bit apps and
why Visual Studio 2010 is only a 32-bit application. The definitive
statement from the Microsoft software engineers was that making a
program like VS 2010 or MS Word 2010 64-bit would make it slower
without adding much value since those programs don't benefit from
giving them massive amount of RAM. The only reason to make a 64-bit
version of MS Word would be because the majority of people assume
64-bit is better than 32-bit, so the marketplace starts demanding
64-bit versions of products, even though they would be
slower-performing products.

-Mike Chabot

On Tue, May 25, 2010 at 12:39 PM, Sean Corfield seancorfi...@gmail.com wrote:

 On Tue, May 25, 2010 at 8:34 AM, Martin, Dustin W
 dustin.mar...@kroger.com wrote:
 Has anyone ever upgraded from the 32bit to 64bit version of CF8? Does that 
 require us pay for an upgrade is that free to do?

 Someone pointed me at this (old) blog post today and I wondered if
 folks here had any more up to date experience about running CF on
 64-bit:

 http://www.cfwhisperer.com/post.cfm/64-bit-architecture-and-apparent-issues-with-java-applications

 (FWIW, all my deployments these days are to 64-bit systems but I don't
 have any 32-bit systems to compare to - with the exception of my blog
 which runs on a 32-bit cloud server at EWH)
 --
 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:333982
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF8 - 32bit to 64bit

2010-05-25 Thread Wil Genovese

Yeah, I've done a lot with 64 bit CF.  The biggest most critical hardware item 
is RAM.  Make sure you have enough.  The nature of the 64-bit JVM is that your 
application will use more of the JVM heap memory than it did on the 32bit 
version. This has been found to be the case by many people.  However, RAM is 
your friend.  I typically do not use less than 8Gb minimum physical RAM  on my 
LINUX server configurations. If you're on Windows 64bit server then even more!  

Don't be afraid to then set your min/max JVM heap to what we would  normally 
think is insane.   The 64-bit JVM is made to handle this.   in another blog 
post Mike Brunt  know did there sending your JVM heap greater than 32 GB had 
diminishing returns. I'm pretty sure most of us are safe from having to have 
the need for a 32 GB JVM heap.

The first thing you should do is monitor your CF application to determine how 
much  JVM memory it currently is using.  Now look at what your JVM and heap 
size is set to your JVM.config file.   If your actual CF application memory 
usage is less than of what your JVM heap is set to there is a chance the same 
heap size will continue to work for you. But this is not a guarantee.  Your 
current JVM heap setting should be used as your very minimum base when 
converting the 64-bit. You may find quickly that you will have to increase your 
JVM heap to a much larger size than we had originally set for 32-bit settings. 
This is where effective monitoring comes into play so you can see exactly what 
your application is doing and what it needs.  You may find other settings in 
your JVM.config file also need to be adjusted. See my blog posts on JVM tuning 
at http://www.trunkful.com for additional JVM tuning tips.   All and please the 
first thing you should do is upgrade to the newest JVM version 1.6-20 (?) I 
think we're at.

Once you have your JVM tuned you will find your CF application will run as fast 
or faster than when it was on a 32-bit system, the main benefit you will get 
from 64-bit is scalability. Your ColdFusion application should be able to scale 
to much larger usage loads that on a 32-bit system.

Shout if you need help,


Wil Genovese
Sr. Web Application Developer/
Systems Administrator

Wil Genovese Consulting
wilg...@trunkful.com
www.trunkful.com

On May 25, 2010, at 1:25 PM, Martin, Dustin W wrote:

 
 That blog post is quite interesting. Certainly something to investigate. Have 
 you run into any issues running 64bit vs 32bit? Anything that could end up 
 biting me?
 
 Dustin Martin
 Application Analyst
 The Kroger Co.
 Phone: 502.429.4875
 Fax: 502.429.4899
 
 
 -Original Message-
 From: Sean Corfield [mailto:seancorfi...@gmail.com]
 Sent: Tuesday, May 25, 2010 12:40 PM
 To: cf-talk
 Subject: Re: CF8 - 32bit to 64bit
 
 
 On Tue, May 25, 2010 at 8:34 AM, Martin, Dustin W
 dustin.mar...@kroger.com wrote:
 Has anyone ever upgraded from the 32bit to 64bit version of CF8? Does that 
 require us pay for an upgrade is that free to do?
 
 Someone pointed me at this (old) blog post today and I wondered if
 folks here had any more up to date experience about running CF on
 64-bit:
 
 http://www.cfwhisperer.com/post.cfm/64-bit-architecture-and-apparent-issues-with-java-applications
 
 (FWIW, all my deployments these days are to 64-bit systems but I don't
 have any 32-bit systems to compare to - with the exception of my blog
 which runs on a 32-bit cloud server at EWH)
 --
 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:333983
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF8 - 32bit to 64bit

2010-05-25 Thread Wil Genovese

Sheesh, sometimes my Voice Recognition software is worse than my dyslexia.

in another blog post Mike Brunt  know did there sending your JVM heap greater 
than 32 GB had diminishing returns.

Should be  In another blog post Mike Brunt noted that setting your JVM heap 
greater than 32 GB had diminishing returns.

I try, what can I say?

Wil Genovese
Sr. Web Application Developer/
Systems Administrator

Wil Genovese Consulting
651-894-4238
wilg...@trunkful.com
www.trunkful.com

On May 25, 2010, at 2:00 PM, Wil Genovese wrote:

  in another blog post Mike Brunt  know did there sending your JVM heap 
 greater than 32 GB had diminishing returns. I'm pretty sure most of us are 
 safe from having to have the need for a 32 GB JVM heap.


~|
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:333984
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


CF Builder Install Problem

2010-05-25 Thread Rick Colman

The trial version of CF Builder thinks I already have Eclipse installed, 
and is asking for the relevant directory.

I can't recall such an install, but who knows.

Any ideas appreciated.

Rick.

~|
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:333985
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Need CF help- is anyone available

2010-05-25 Thread cfcom

Having serious problem with a piece of code
Is there anyone who could take a look 
Been racking my head on this all day

Please contact off list 

And thank you in advane


~|
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:333986
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF Builder Install Problem

2010-05-25 Thread Won Lee

From memory...

You may install CF Builder as a stand alone or plugin.  It asks you for the
eclipse directory if you are installing as a plugin.  i think CF Builder
actually ships with Eclipse.  I can't go through the install process because
I don't have rights on this system but that is what I remember.

W

On Tue, May 25, 2010 at 4:02 PM, Rick Colman rcol...@cox.net wrote:


 The trial version of CF Builder thinks I already have Eclipse installed,
 and is asking for the relevant directory.

 I can't recall such an install, but who knows.

 Any ideas appreciated.

 Rick.

 

~|
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:333987
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Need CF help- is anyone available

2010-05-25 Thread Phillip Vector

The best solution is to ask directly here. It allows for allot of
people to help.

So what's the issue?

On Tue, May 25, 2010 at 1:47 PM, cfcom cf...@aceligent.com wrote:

 Having serious problem with a piece of code
 Is there anyone who could take a look
 Been racking my head on this all day

 Please contact off list

 And thank you in advane


 

~|
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:333988
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Need CF help- is anyone available

2010-05-25 Thread Charlie Griefer

You'd have a greater likelihood of having more sets of eyes on it (and thus
a greater likelihood of getting a solution) if you were to just post the
question/code to the list.

IMO, of course :)

On Tue, May 25, 2010 at 1:47 PM, cfcom cf...@aceligent.com wrote:


 Having serious problem with a piece of code
 Is there anyone who could take a look
 Been racking my head on this all day

 Please contact off list

 And thank you in advane


 

~|
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:333989
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: CF8 - 32bit to 64bit

2010-05-25 Thread Alan Rother

CFX Tags..

If you are using any CFX tags written in C++ they most likely will not run.
Most CFX tags are compiled for 32bit...

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


~|
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:333990
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Need CF help- is anyone available

2010-05-25 Thread cfcom

We have a legacy site that was originally written without error handling.
Yesterday the old programmer ran a script to clear out the images folder
that had grown to 20 gigs. He set up a new image folder but all the images
stopped showing up in queries. We've spent all day chasing down globals but
it keeps throwing errors and the pictures aren't showing up. 

Heres notes from what the old programmer did: wrote a script to break up the
directory in to smaller directories.  The created 900 subdirectories inside
a new folder called images_new  The image 90031_7.jpg will be in the folder
images_houses_new\900\ because it begins with 900.  then put a url
redirect on the original directory to redirect any 404 errors to a script
which will try to find the correct image. also threw the file
Directorybreaker.exe into the root dir of the e drive.  running it with the
old dir as param one and the new drive as param two will break up any new
images. only updated the listings pages. His note goes on to something about
creating an object called Image.cfc and then extend that to HouseImages.cfc 

With the exception of the images-folder too big before he touched the code
we had most things functioning and now they are not. - any help would be
greatly appreciated.


 -Original Message-
 From: Phillip Vector [mailto:vec...@mostdeadlygame.com]
 Sent: 2010-05-25 16:50
 To: cf-talk
 Subject: Re: Need CF help- is anyone available


 The best solution is to ask directly here. It allows for allot of
 people to help.

 So what's the issue?

 On Tue, May 25, 2010 at 1:47 PM, cfcom cf...@aceligent.com wrote:

 Having serious problem with a piece of code
 Is there anyone who could take a look
 Been racking my head on this all day

 Please contact off list

 And thank you in advane




 

~|
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:333991
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Need CF help- is anyone available

2010-05-25 Thread William Seiter

It sounds like the images were moved to their new homes, but the site code
might still be pointing to the old location.  Or the old location isn't
accessible to the new site.

If the code is pointing to an image that does exist, take a look at the
permissions on the directory to verify that your site has access to files
there.

Hope this helps,
William

-Original Message-
From: cfcom [mailto:cf...@aceligent.com] 
Sent: Tuesday, May 25, 2010 2:28 PM
To: cf-talk
Subject: RE: Need CF help- is anyone available


We have a legacy site that was originally written without error handling.
Yesterday the old programmer ran a script to clear out the images folder
that had grown to 20 gigs. He set up a new image folder but all the images
stopped showing up in queries. We've spent all day chasing down globals but
it keeps throwing errors and the pictures aren't showing up. 

Heres notes from what the old programmer did: wrote a script to break up the
directory in to smaller directories.  The created 900 subdirectories inside
a new folder called images_new  The image 90031_7.jpg will be in the folder
images_houses_new\900\ because it begins with 900.  then put a url
redirect on the original directory to redirect any 404 errors to a script
which will try to find the correct image. also threw the file
Directorybreaker.exe into the root dir of the e drive.  running it with the
old dir as param one and the new drive as param two will break up any new
images. only updated the listings pages. His note goes on to something about
creating an object called Image.cfc and then extend that to HouseImages.cfc 

With the exception of the images-folder too big before he touched the code
we had most things functioning and now they are not. - any help would be
greatly appreciated.


 -Original Message-
 From: Phillip Vector [mailto:vec...@mostdeadlygame.com]
 Sent: 2010-05-25 16:50
 To: cf-talk
 Subject: Re: Need CF help- is anyone available


 The best solution is to ask directly here. It allows for allot of
 people to help.

 So what's the issue?

 On Tue, May 25, 2010 at 1:47 PM, cfcom cf...@aceligent.com wrote:

 Having serious problem with a piece of code
 Is there anyone who could take a look
 Been racking my head on this all day

 Please contact off list

 And thank you in advane




 



~|
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:333992
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Need CF help- is anyone available

2010-05-25 Thread cfcom

look for image logic but its not working

 

 

 

cfset var mlnumber=Arguments.mlnumber_unformmated

  cfset var physical_img_path_primary = image_dir  ( original image

folder)

cfset var physical_img_path_secondary = image2_dir  ( new image folder

)

  

  cfif Mid(mlnumber,1,1) EQ *

cfset mlnumber=RemoveChars(mlnumber, 1,1)

 cfelse

cfset mlnumber=mlnumber

/cfif



cfloop from=1 to=10 index=x !--- assuming there will be maximum
up to 10 images for a single listing  ---

  

 

cfif len(trim(mlnumber))

   cfif

FileExists(#physical_img_path_primary#/#mlnumber#_#x#.jpg)--this one is
pulling the ads showing  

cfreturn

#arguments.directory_to_Check#/#mlnumber#_#x#.jpg

cfabort/

/cfif   

   

   cfif FileExists(#physical_img_path_secondary#/P#mlnumber#_#x#.jpg)

--this one I just added

cfreturn

#arguments.directory2_to_Check#/P#mlnumber#_#x#.jpg

cfabort/

/cfif   





 cfif

FileExists(#physical_img_path_primary#/P#mlnumber#_#x#.jpg)

 

cfreturn

#arguments.directory_to_Check#/P#mlnumber#_#x#.jpg

cfabort/   

/cfif 

  

 

  

cfif

FileExists(#physical_img_path_secondary#/#mlnumber#_#x#.jpg)_ thus you
would think this would bring the missing ones up , bneing there is no P

added as prefix   

cfreturn

#arguments.directory2_to_Check#/#mlnumber#_#x#.jpg

cfabort/

 /cfif   

/cfif

   

cfif

FileExists(#physical_img_path_primary#/#arguments.listingID#_#x#.jpg)

 

cfreturn

#arguments.directory_to_Check#/#arguments.listingID#_#x#.jpg

cfabort/

/cfif

  /cfloop   

  

  cfreturn #arguments.directory_to_Check#/nopic.gif

 

/cffunction

 

  _  

From: Charlie Stell [mailto:charlie.st...@gmail.com] 
Sent: 2010-05-25 18:39
To: cf...@aceligent.com
Subject: Re: Need CF help- is anyone available

 

As long as the image names follow your pattern, you should be able to use a
http redirect to a cfm, and in the cfm have something like

 

...logic to determine X - the complete current file path.

cfcontent file=#X# type=image/x-jpgcfsetting showdebugoutput=no

 

**this assumes its a jpg...

 

On Tue, May 25, 2010 at 5:28 PM, cfcom cf...@aceligent.com wrote:


We have a legacy site that was originally written without error handling.
Yesterday the old programmer ran a script to clear out the images folder
that had grown to 20 gigs. He set up a new image folder but all the images
stopped showing up in queries. We've spent all day chasing down globals but
it keeps throwing errors and the pictures aren't showing up.

Heres notes from what the old programmer did: wrote a script to break up the
directory in to smaller directories.  The created 900 subdirectories inside
a new folder called images_new  The image 90031_7.jpg will be in the folder
images_houses_new\900\ because it begins with 900.  then put a url
redirect on the original directory to redirect any 404 errors to a script
which will try to find the correct image. also threw the file
Directorybreaker.exe into the root dir of the e drive.  running it with the
old dir as param one and the new drive as param two will break up any new
images. only updated the listings pages. His note goes on to something about
creating an object called Image.cfc and then extend that to HouseImages.cfc

With the exception of the images-folder too big before he touched the code
we had most things functioning and now they are not. - any help would be
greatly appreciated.



 -Original Message-
 From: Phillip Vector [mailto:vec...@mostdeadlygame.com]
 Sent: 2010-05-25 16:50
 To: cf-talk
 Subject: Re: Need CF help- is anyone available


 The best solution is to ask directly here. It allows for allot of
 people to help.

 So what's the issue?


 On Tue, May 25, 2010 at 1:47 PM, cfcom cf...@aceligent.com wrote:

 Having serious problem with a piece of code
 Is there anyone who could take a look
 Been racking my head on this all day

 Please contact off list

 And thank you in advane








~|
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:333993
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Need CF help- is anyone available

2010-05-25 Thread cfcom

This query brought up a few more pictures but still not all of them

CFQUERY name=getListings datasource=#123# maxrows=250
SELECT  script_listings.*, Barns.*, script_listings.ml_num as listing
FROM  script_listings LEFT OUTER JOIN Barns ON script_listings.ml_num =
Barns.ml_num 
!---WHERE  script_listings.hide = 0
I commented this line AND script_listings.tmp = 0 AND
script_listings.class = 'res'  ,,,to this line to show more
prpperties ORDER BY !---script_listings.town, script_listings.lp_dol 
script_listings.ListingDate DEsc

/cfquery




look for image logic but its not working


cfset var mlnumber=Arguments.mlnumber_unformmated

  cfset var physical_img_path_primary = image_dir  ( original image

folder)

cfset var physical_img_path_secondary = image2_dir  ( new image folder

)

  

  cfif Mid(mlnumber,1,1) EQ *

cfset mlnumber=RemoveChars(mlnumber, 1,1)

 cfelse

cfset mlnumber=mlnumber

/cfif



cfloop from=1 to=10 index=x !--- assuming there will be maximum
up to 10 images for a single listing  ---

  

 

cfif len(trim(mlnumber))

   cfif

FileExists(#physical_img_path_primary#/#mlnumber#_#x#.jpg)--this one is
pulling the ads showing  

cfreturn

#arguments.directory_to_Check#/#mlnumber#_#x#.jpg

cfabort/

/cfif   

   

   cfif FileExists(#physical_img_path_secondary#/P#mlnumber#_#x#.jpg)

--this one I just added

cfreturn

#arguments.directory2_to_Check#/P#mlnumber#_#x#.jpg

cfabort/

/cfif   





 cfif

FileExists(#physical_img_path_primary#/P#mlnumber#_#x#.jpg)

 

cfreturn

#arguments.directory_to_Check#/P#mlnumber#_#x#.jpg

cfabort/   

/cfif 

  

 

  

cfif

FileExists(#physical_img_path_secondary#/#mlnumber#_#x#.jpg)_ thus you
would think this would bring the missing ones up , bneing there is no P

added as prefix   

cfreturn

#arguments.directory2_to_Check#/#mlnumber#_#x#.jpg

cfabort/

 /cfif   

/cfif

   

cfif

FileExists(#physical_img_path_primary#/#arguments.listingID#_#x#.jpg)

 

cfreturn

#arguments.directory_to_Check#/#arguments.listingID#_#x#.jpg

cfabort/

/cfif

  /cfloop   

  

  cfreturn #arguments.directory_to_Check#/nopic.gif

 

/cffunction

 

  _  

From: Charlie Stell [mailto:charlie.st...@gmail.com] 
Sent: 2010-05-25 18:39
To: cf...@aceligent.com
Subject: Re: Need CF help- is anyone available

 

As long as the image names follow your pattern, you should be able to use a
http redirect to a cfm, and in the cfm have something like

 

...logic to determine X - the complete current file path.

cfcontent file=#X# type=image/x-jpgcfsetting showdebugoutput=no

 

**this assumes its a jpg...

 

On Tue, May 25, 2010 at 5:28 PM, cfcom cf...@aceligent.com wrote:


We have a legacy site that was originally written without error handling.
Yesterday the old programmer ran a script to clear out the images folder
that had grown to 20 gigs. He set up a new image folder but all the images
stopped showing up in queries. We've spent all day chasing down globals but
it keeps throwing errors and the pictures aren't showing up.

Heres notes from what the old programmer did: wrote a script to break up the
directory in to smaller directories.  The created 900 subdirectories inside
a new folder called images_new  The image 90031_7.jpg will be in the folder
images_houses_new\900\ because it begins with 900.  then put a url
redirect on the original directory to redirect any 404 errors to a script
which will try to find the correct image. also threw the file
Directorybreaker.exe into the root dir of the e drive.  running it with the
old dir as param one and the new drive as param two will break up any new
images. only updated the listings pages. His note goes on to something about
creating an object called Image.cfc and then extend that to HouseImages.cfc

With the exception of the images-folder too big before he touched the code
we had most things functioning and now they are not. - any help would be
greatly appreciated.



 -Original Message-
 From: Phillip Vector [mailto:vec...@mostdeadlygame.com]
 Sent: 2010-05-25 16:50
 To: cf-talk
 Subject: Re: Need CF help- is anyone available


 The best solution is to ask directly here. It allows for allot of
 people to help.

 So what's the issue?


 On Tue, May 25, 2010 at 1:47 PM, cfcom cf...@aceligent.com wrote:

 Having serious problem with a piece of code
 Is there anyone who could take a look
 Been racking my head on this all day

 Please contact off list

 And thank you in advane











RE: CF8 - 32bit to 64bit

2010-05-25 Thread Martin, Dustin W

Wil, thanks for the input. I'm not 100% positive we'll be moving to 64 bit yet 
but it is looking likely. If we do go 64 bit, CF will be on a machine with tons 
of RAM...I think something like 60-90 GB. So I plan on setting the JVM heap 
space fairly high. Good to know that beyond 32 GB won't get me much...although 
I doubt I will need anything near that much.

Dustin Martin
Application Analyst
The Kroger Co.
Phone: 502.429.4875
Fax: 502.429.4899


-Original Message-
From: Wil Genovese [mailto:jugg...@trunkful.com]
Sent: Tuesday, May 25, 2010 3:00 PM
To: cf-talk
Subject: Re: CF8 - 32bit to 64bit


Yeah, I've done a lot with 64 bit CF.  The biggest most critical hardware item 
is RAM.  Make sure you have enough.  The nature of the 64-bit JVM is that your 
application will use more of the JVM heap memory than it did on the 32bit 
version. This has been found to be the case by many people.  However, RAM is 
your friend.  I typically do not use less than 8Gb minimum physical RAM  on my 
LINUX server configurations. If you're on Windows 64bit server then even more!

Don't be afraid to then set your min/max JVM heap to what we would  normally 
think is insane.   The 64-bit JVM is made to handle this.   in another blog 
post Mike Brunt  know did there sending your JVM heap greater than 32 GB had 
diminishing returns. I'm pretty sure most of us are safe from having to have 
the need for a 32 GB JVM heap.

The first thing you should do is monitor your CF application to determine how 
much  JVM memory it currently is using.  Now look at what your JVM and heap 
size is set to your JVM.config file.   If your actual CF application memory 
usage is less than of what your JVM heap is set to there is a chance the same 
heap size will continue to work for you. But this is not a guarantee.  Your 
current JVM heap setting should be used as your very minimum base when 
converting the 64-bit. You may find quickly that you will have to increase your 
JVM heap to a much larger size than we had originally set for 32-bit settings. 
This is where effective monitoring comes into play so you can see exactly what 
your application is doing and what it needs.  You may find other settings in 
your JVM.config file also need to be adjusted. See my blog posts on JVM tuning 
at http://www.trunkful.com for additional JVM tuning tips.   All and please the 
first thing you should do is upgrade to the newest JVM version 1.6-20 (?) I 
think we're at.

Once you have your JVM tuned you will find your CF application will run as fast 
or faster than when it was on a 32-bit system, the main benefit you will get 
from 64-bit is scalability. Your ColdFusion application should be able to scale 
to much larger usage loads that on a 32-bit system.

Shout if you need help,


Wil Genovese
Sr. Web Application Developer/
Systems Administrator

Wil Genovese Consulting
wilg...@trunkful.com
www.trunkful.com

On May 25, 2010, at 1:25 PM, Martin, Dustin W wrote:


 That blog post is quite interesting. Certainly something to investigate. Have 
 you run into any issues running 64bit vs 32bit? Anything that could end up 
 biting me?

 Dustin Martin
 Application Analyst
 The Kroger Co.
 Phone: 502.429.4875
 Fax: 502.429.4899


 -Original Message-
 From: Sean Corfield [mailto:seancorfi...@gmail.com]
 Sent: Tuesday, May 25, 2010 12:40 PM
 To: cf-talk
 Subject: Re: CF8 - 32bit to 64bit


 On Tue, May 25, 2010 at 8:34 AM, Martin, Dustin W
 dustin.mar...@kroger.com wrote:
 Has anyone ever upgraded from the 32bit to 64bit version of CF8? Does that 
 require us pay for an upgrade is that free to do?

 Someone pointed me at this (old) blog post today and I wondered if
 folks here had any more up to date experience about running CF on
 64-bit:

 http://www.cfwhisperer.com/post.cfm/64-bit-architecture-and-apparent-issues-with-java-applications

 (FWIW, all my deployments these days are to 64-bit systems but I don't
 have any 32-bit systems to compare to - with the exception of my blog
 which runs on a 32-bit cloud server at EWH)
 --
 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:333995
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RSS YouTube Chennel

2010-05-25 Thread Rick Eidson

Originally sent to the wrong list.

 

 

 

Does anyone have some readymade code for pulling the RSS Feed from a YouTube
Channel?

 

I want to pull this feed

http://gdata.youtube.com/feeds/base/users/RickHempy/uploads

 

 

 

 

Rick

 




~|
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:333996
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: RSS YouTube Chennel

2010-05-25 Thread Casey Dougall

On Tue, May 25, 2010 at 8:55 PM, Rick Eidson cfh...@kchost.net wrote:


 Does anyone have some readymade code for pulling the RSS Feed from a
 YouTube
 Channel?

 I want to pull this feed

 http://gdata.youtube.com/feeds/base/users/RickHempy/uploads



http://youtubecfc.riaforge.org/


~|
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:333997
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Color Code XML

2010-05-25 Thread Brad Wood

I'm looking for a way to take a text XML document and add the appropriate HTML 
markup to it so it can be viewed in a browser and color-coded and indented 
properly.  
I don't really care if it is programmatic and I don't even care what colors are 
used as long as it is pretty--  I just need to include some XML samples in a 
handful of documentation pages written in HTML.  I can't find any color coding 
libraries that handle XML.  The closest I got was to open the XML in Internet 
Explorer, copy and paste it into word, and then save as HTML, but that was a 
hideous solution that still required a number of find and replaces to finish 
getting rid of the JavaScript.

Suggestions?

Thanks!

~Brad

~|
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:333998
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


RE: Color Code XML

2010-05-25 Thread Justin Scott

 Suggestions?

http://alexgorbatchev.com/wiki/SyntaxHighlighter

SyntaxHighlighter should make pretty quick work of it and allow the code to
be displayed on the page in a viewer-friendly way.


-Justin Scott,
 http://www.tlson.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:333999
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: Color Code XML

2010-05-25 Thread Brad Wood

Hmm, that's a slick little library.  I like the customizability of it and 
the separate CSS files.

Thanks!

~Brad

- Original Message - 
From: Justin Scott jscott-li...@gravityfree.com
To: cf-talk cf-talk@houseoffusion.com
Sent: Tuesday, May 25, 2010 10:41 PM
Subject: RE: Color Code XML



 Suggestions?

 http://alexgorbatchev.com/wiki/SyntaxHighlighter

 SyntaxHighlighter should make pretty quick work of it and allow the code 
 to
 be displayed on the page in a viewer-friendly way.


~|
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:334000
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm