Re: Can anyone decode this?

2011-05-17 Thread Will Blake

I know this is a few days old, but just curious the OP says this attack was 
caught by some custom code.  Will cfqueryparam not protect input sufficiently 
enough to disrupt this kind of attack?  Should additional measures be used?

Thanks,
Will



Bobby,

Good work... except don't respond and include the actual URL -  or if you do
find a way to disable it. It will show up in email readers as a link and (in
this case) it will end up published on the HOF archive page for this thread.
We don't want to give this malicious site any additional traffic :)

-Mark

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




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


Re: Can anyone decode this?

2011-05-17 Thread Ian Skinner

On 5/17/2011 6:13 AM, Will Blake wrote:
 Will cfqueryparam not protect input sufficiently enough to disrupt this kind 
 of attack?

Yes, cfqueryparam would prevent the SQL code in that attack from 
executing.  Content of parametrized values are never evaluated by the 
database for SQL statements.

Should additional measures be used?

Yes additional measures should be used, because there are other types of 
attacks that do not use SQL injection.

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


Re: Can anyone decode this?

2011-05-17 Thread Dave Watts

 I know this is a few days old, but just curious the OP says this attack was 
 caught by some custom code.  Will cfqueryparam not protect input
 sufficiently enough to disrupt this kind of attack?  Should additional 
 measures be used?

Yes, as Ian said, CFQUERYPARAM will prevent this type of attack from
succeeding. However, it won't notify you that an attack has occurred,
unless you trap the thrown exception and take a look at it.

And, as Ian's also said, there are other sorts of attacks, such as
XSS, CSRF, etc - many (most?) of those are client-based, and don't
depend on vulnerabilities in the server per se.

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

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsit

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


Homesite 5.5

2011-05-17 Thread edmo...@sitecon.com edmo...@sitecon.com

Hello All,

I have lost my media for Homesite 5.5. I still have serial numbers.  Does 
anyone one by chance have the media I could download?  Can't get it anymore 
from Macromedia.

Thanks,
Greg 

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


Using CFTHREAD on CF PRO

2011-05-17 Thread Brook Davies

Hi Guys,

 

I am considering spawning a new thread via the onRequestEnd event to do some
post processing. Basically its going to record some stats (a couple quick DB
queries) and possibly send an email based on some criteria. I am considering
CFTHREAD because the user does not need to wait for any results of this
processing.

 

I've read some things about CFTHREAD being a bottle neck and that CF
Proffesional has limited threads. Would I be asking for trouble trying to do
this? Should I just let the user wait for the processing to finish? It would
really like only be 100-200 milliseconds or so 

 

Brook

 




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


RE: Using CFTHREAD on CF PRO

2011-05-17 Thread Andrew Scott

If it is only going to be at max 1/5 of a second I don't see a thread making
any difference to overall page processing time. You will end up adding more
depending on concurrent connections, by using the cfhthread on standard
edition of ColdFusion. As each thread will be queued up for each connection,
so a user could end up waiting 5 seconds in the queue.

Regards,
Andrew Scott
http://www.andyscott.id.au/



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


ColdFusion and AJAX choices

2011-05-17 Thread Darius Florczyk

Hi, I need to add AJAX functionality in a new project and wondering if anyone 
had any recommendations for the most robust, stable choice. I will be using it 
with CF7 but need for it to be easily portable to Railo. The need is to easily 
load CMS content in to DIV layers depending on the users selection and posting 
of form submits with confirmation alerts.  

So far I was looking at ajaxCFC, Prototype, maAjax, CFAjax, JSMX,  

Any recommendations?

Thanks
Darius 

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


CFX_PCRegEx in CF 9

2011-05-17 Thread Donnie Carvajal

I have an app that we are upgrading to CF9 from CF 5.  We were using 
CFX_PCRegEx instead of the built in regex functionality because it was way 
faster.  It is throwing errors in CF9.  The exception.log entry states...

Something bad happened in CFX_PCRegEx.

Has anyone had any success running CFX_PCregEx in ColdFusion 9?  Does anyone 
know if the regex functionality in CF 9 is more efficient than before?

Thanks,

Donnie 

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


Re: ColdFusion and AJAX choices

2011-05-17 Thread Scott Stewart

JQuery... that's all you need

On Tue, May 17, 2011 at 11:50 AM, Darius Florczyk dar...@cybermash.com wrote:

 Hi, I need to add AJAX functionality in a new project and wondering if anyone 
 had any recommendations for the most robust, stable choice. I will be using 
 it with CF7 but need for it to be easily portable to Railo. The need is to 
 easily load CMS content in to DIV layers depending on the users selection and 
 posting of form submits with confirmation alerts.

 So far I was looking at ajaxCFC, Prototype, maAjax, CFAjax, JSMX,

 Any recommendations?

 Thanks
 Darius

 

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


Re: ColdFusion and AJAX choices

2011-05-17 Thread James Holmes

Yes; ignore everything in that list and use jQuery.
--
WSS4CF - WS-Security framework for CF
http://wss4cf.riaforge.org/



On 17 May 2011 23:50, Darius Florczyk dar...@cybermash.com wrote:

 Hi, I need to add AJAX functionality in a new project and wondering if anyone 
 had any recommendations for the most robust, stable choice. I will be using 
 it with CF7 but need for it to be easily portable to Railo. The need is to 
 easily load CMS content in to DIV layers depending on the users selection and 
 posting of form submits with confirmation alerts.

 So far I was looking at ajaxCFC, Prototype, maAjax, CFAjax, JSMX,

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


Re: ColdFusion and AJAX choices

2011-05-17 Thread Greg Luce

jQuery.
-- 
Greg Luce
Luce Consulting Services, Inc.
(863) 273-0289


On Tue, May 17, 2011 at 10:50 AM, Darius Florczyk dar...@cybermash.comwrote:


 Hi, I need to add AJAX functionality in a new project and wondering if
 anyone had any recommendations for the most robust, stable choice. I will be
 using it with CF7 but need for it to be easily portable to Railo. The need
 is to easily load CMS content in to DIV layers depending on the users
 selection and posting of form submits with confirmation alerts.

 So far I was looking at ajaxCFC, Prototype, maAjax, CFAjax, JSMX,

 Any recommendations?

 Thanks
 Darius

 

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


Re: Using CFTHREAD on CF PRO

2011-05-17 Thread Dan G. Switzer, II

Brook,

On Tue, May 17, 2011 at 10:56 AM, Brook Davies cft...@logiforms.com wrote:

 I am considering spawning a new thread via the onRequestEnd event to do
 some
 post processing. Basically its going to record some stats (a couple quick
 DB
 queries) and possibly send an email based on some criteria. I am
 considering
 CFTHREAD because the user does not need to wait for any results of this
 processing.

 I've read some things about CFTHREAD being a bottle neck and that CF
 Proffesional has limited threads. Would I be asking for trouble trying to
 do
 this? Should I just let the user wait for the processing to finish? It
 would
 really like only be 100-200 milliseconds or so


This is really one of those situations where running a load test really
gives you the best answer. You may end up getting a variety of answers, but
none will be quite as useful as spending 30-60 minutes running a simple load
test to see what happens.

If you don't currently have any tools for running a load test, download Apache
jMeter http://jakarta.apache.org/jmeter/ and then you can follow this
tutorial:

http://www.roseindia.net/jmeter/using-jmeter.shtml

Set up a simple test what the results are between using cfthread / and not
using it in your onRequestEnd and see what the impact is on your site under
various types of load. If you set up the Aggregate Report listener it'll
give you an idea of the overall impact.

I use jMeter a lot when I want to quickly see what the real impact of under
load of some code might be. I usually will set things up so that a URL
parameter can toggle various code branches--that way I can quickly change
the behavior right from jMeter. I'll run several tests simulate heavy load
and see which performs better overall and to see if any of the solutions are
causing weird queuing issues.

-Dan

-- 
Dan G. Switzer, II
dswit...@pengoworks.com
http://blog.pengoworks.com/

█▀▀▀▀▀█ ▄▀ ▄█▄▄█  █▀▀▀▀▀█
█ ███ █ ▀███▀ █▀  █ ███ █
█ ▀▀▀ █ █▄ ▄  ▀██ █ ▀▀▀ █
▀▀▀▀▀▀▀ █▄▀ █ █ ▀ ▀▀▀▀▀▀▀
█▀▄█▄▄▀▀  █▄▀██ █▄█▀▀ ▀▀▄
 ▄▀█▄▀▀▀▄▀▀▄▄▄█ ▄█▄▀▀  ▀▀
▀▀▄▄▀▀▀▀█▄▄▀▀█ ▀▀██▄ █▄▀█
▀▄ ▄▀ ▀  ▀▀█▄█▄▄▄ █▄▀▄▀▄▀
▀▀ ▀▀ ▀ █▀ ██▄ ▄█▀▀▀███ ▄
█▀▀▀▀▀█ ▀▄█ ▄▀█▀█ ▀ █▄▄▀█
█ ███ █ ▄▀▀ █▀ ▄▀█▀██ ▄▀
█ ▀▀▀ █ ▄ █▄ ▄▄ ▄▄▄ ▀█▀ ▀
▀▀▀▀▀▀▀ ▀▀  ▀▀ ▀▀  ▀   ▀▀


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


Re: ColdFusion and AJAX choices

2011-05-17 Thread Darius Florczyk

JQuery... that's all you need




Thank you for the suggestion. Any good tutorials on using CF with jQuery that 
you are aware of?  thanks 

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


Re: ColdFusion and AJAX choices

2011-05-17 Thread Azadi Saryev

definitely jquery

Azadi

On 17/05/2011 23:50 , Darius Florczyk wrote:
 Hi, I need to add AJAX functionality in a new project and wondering if anyone 
 had any recommendations for the most robust, stable choice. I will be using 
 it with CF7 but need for it to be easily portable to Railo. The need is to 
 easily load CMS content in to DIV layers depending on the users selection and 
 posting of form submits with confirmation alerts.

 So far I was looking at ajaxCFC, Prototype, maAjax, CFAjax, JSMX,

 Any recommendations?

 Thanks
 Darius

 

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


Re: ColdFusion and AJAX choices

2011-05-17 Thread Russ Michaels

If you look into those solutions you mentioned, many of them do in fact use
jQuery, they are basically wrappers for CF to simplify Ajax with CF. It has
been years since I used any them, and I used to use AjaxCFC, and it
certainly did make things a bit quicker and easier than using raw JQuery.

On Tue, May 17, 2011 at 5:18 PM, Darius Florczyk dar...@cybermash.comwrote:


 JQuery... that's all you need
 
 
 

 Thank you for the suggestion. Any good tutorials on using CF with jQuery
 that you are aware of?  thanks

 

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


Re: ColdFusion and AJAX choices

2011-05-17 Thread Gerald Guido

The jQuery docs are very good

http://api.jquery.com/jQuery.get/

This is an example of how to grab content and put it into a div with the id
of myDiv.

$.get(getcontent.cfm, { id: 23, userId: 324 },
   function(data){
 $('#myDiv').html(data)
   });





On Tue, May 17, 2011 at 12:47 PM, Russ Michaels r...@michaels.me.uk wrote:


 If you look into those solutions you mentioned, many of them do in fact use
 jQuery, they are basically wrappers for CF to simplify Ajax with CF. It has
 been years since I used any them, and I used to use AjaxCFC, and it
 certainly did make things a bit quicker and easier than using raw JQuery.

 On Tue, May 17, 2011 at 5:18 PM, Darius Florczyk dar...@cybermash.com
 wrote:

 
  JQuery... that's all you need
  
  
  
 
  Thank you for the suggestion. Any good tutorials on using CF with jQuery
  that you are aware of?  thanks
 
 

 

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


Re: ColdFusion and AJAX choices

2011-05-17 Thread Larry Lyons

 JQuery... that's all you need
 
 
 
 
 Thank you for the suggestion. Any good tutorials on using CF with 
 jQuery that you are aware of?  thanks 

Ray Camden's site has a bunch of excellent tutorials. You also may want to 
check jQuery.com - they list some there as well. But as a starter:

http://www.coldfusionjedi.com/index.cfm/2010/7/9/Another-simple-jQueryColdFusion-example


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


Re: CFX_PCRegEx in CF 9

2011-05-17 Thread Larry Lyons

 I have an app that we are upgrading to CF9 from CF 5.  We were using 
 CFX_PCRegEx instead of the built in regex functionality because it was 
 way faster.  It is throwing errors in CF9.  The exception.log entry 
 states...
 
 Something bad happened in CFX_PCRegEx.
 
 Has anyone had any success running CFX_PCregEx in ColdFusion 9?  Does 
 anyone know if the regex functionality in CF 9 is more efficient than 
 before?
 
 Thanks,
 
 Donnie 

You may want to check to see if the CFX is 32bit. That has been an issue with 
CFX tags recently.

Also you may want to use java regex if CF9's is not fast enough, Ben Nadel has 
a very good series on it, 
http://www.bennadel.com/blog/458-Introduction-To-Regular-Expressions-Presentation-Notes.htm
 

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


Re: ColdFusion and AJAX choices

2011-05-17 Thread Carl Von Stetten

jquery +1

On 5/17/2011 8:50 AM, Darius Florczyk wrote:
 Hi, I need to add AJAX functionality in a new project and wondering if anyone 
 had any recommendations for the most robust, stable choice. I will be using 
 it with CF7 but need for it to be easily portable to Railo. The need is to 
 easily load CMS content in to DIV layers depending on the users selection and 
 posting of form submits with confirmation alerts.

 So far I was looking at ajaxCFC, Prototype, maAjax, CFAjax, JSMX,

 Any recommendations?

 Thanks
 Darius

 

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


Re: ColdFusion and AJAX choices

2011-05-17 Thread Raymond Camden

jQuery + 10. ;)

On Tue, May 17, 2011 at 12:56 PM, Carl Von Stetten
vonner.li...@vonner.net wrote:

 jquery +1

 On 5/17/2011 8:50 AM, Darius Florczyk wrote:
 Hi, I need to add AJAX functionality in a new project and wondering if 
 anyone had any recommendations for the most robust, stable choice. I will be 
 using it with CF7 but need for it to be easily portable to Railo. The need 
 is to easily load CMS content in to DIV layers depending on the users 
 selection and posting of form submits with confirmation alerts.

 So far I was looking at ajaxCFC, Prototype, maAjax, CFAjax, JSMX,

 Any recommendations?

 Thanks
 Darius



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


RE: ColdFusion and AJAX choices

2011-05-17 Thread Rick Faircloth

jQuery for the win...


-Original Message-
From: Raymond Camden [mailto:rcam...@gmail.com] 
Sent: Tuesday, May 17, 2011 2:05 PM
To: cf-talk
Subject: Re: ColdFusion and AJAX choices


jQuery + 10. ;)

On Tue, May 17, 2011 at 12:56 PM, Carl Von Stetten
vonner.li...@vonner.net wrote:

 jquery +1

 On 5/17/2011 8:50 AM, Darius Florczyk wrote:
 Hi, I need to add AJAX functionality in a new project and wondering if
anyone had any recommendations for the most robust, stable choice. I will be
using it with CF7 but need for it to be easily portable to Railo. The need
is to easily load CMS content in to DIV layers depending on the users
selection and posting of form submits with confirmation alerts.

 So far I was looking at ajaxCFC, Prototype, maAjax, CFAjax, JSMX,

 Any recommendations?

 Thanks
 Darius





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


Marketo SOAP API and CFC

2011-05-17 Thread Scott Slone

Has any one had any experience implementing the Marketo SOAP API with 
ColdFusion CFC? Looking for any gotchas or samples..

Thanks!
/Scott

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


Re: (ot) Shameful

2011-05-17 Thread Irvin Gomez

I've had problems yesterday and today loading the AIR demo.  I tried FF4,
Chrome 11 and IE8 on two different internet connections.  The modal opens
and the player appears but the movie never starts.  If I click play, the
movie turns dark gray and stops.

Also, the cfspreadsheet demo has a dark overlay on it that makes it very
difficult to read.  I haven't tried any others.

Me.setAttire(flamesuit);

Jason Durham





Thank you!

Nothing to say to the groupies blindly attacking the messenger :-)
 

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


Re: (ot) Shameful

2011-05-17 Thread Irvin Gomez

Nope, it didn't work for me. I had to click the link and view it in my
browser. If Adobe were truly committed to CF, I wouldn't need to
actually click the link. Rather, uniformed penguins in sequin jackets
would deliver the demos to me on feather-stuffed pillows while
simultaneously singing a cappella versions of 1980 TV show theme
songs.




Ray,

as you can see from others, I'm not the only one. Please, behave with more 
maturity. You're a nice guy, and the assh*ole suit does not look good on you. 
Really. 

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


Re: (ot) Shameful

2011-05-17 Thread Irvin Gomez

 Interesting way to introduce your self in a forum where nearly
 everyone is making their living from what you call a comatose product.
 
 
 Still, since the demos all work for me and have done since they were
 put up on the web site, i guess that tells us volumes about your
 judgement.   We can apply that assessment of your judgement to your
 claim that Coldfusion is 'comatose'.
 
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Adobe Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion 9 Enterprise, PHP, ASP, ASP.NET hosting from AUD$15/month
 
 
 On Wed, May 11, 2011 at 10:03 AM, Irvin Gomez ir...@pixel69.com 
 wrote:
 
  The Adobe Coldfusion 9 demos do not work and have not worked for who 
 knows how long. I guess that's the best way to show Adobe's commitment 
 to its comatose product.
 
  http://www.adobe.com/products/coldfusion/demos/
 
 
 

After confirming that others have issues with the demos, whose judgement is 
in question? 


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


Re: (ot) Shameful

2011-05-17 Thread Gerald Guido

Really? You come in here with the intention to insult and raise ire and act
like you were innocently conveying a  message. Geek please.


On Tue, May 17, 2011 at 3:25 PM, Irvin Gomez ir...@pixel69.com wrote:


 Nope, it didn't work for me. I had to click the link and view it in my
 browser. If Adobe were truly committed to CF, I wouldn't need to
 actually click the link. Rather, uniformed penguins in sequin jackets
 would deliver the demos to me on feather-stuffed pillows while
 simultaneously singing a cappella versions of 1980 TV show theme
 songs.
 
 
 

 Ray,

 as you can see from others, I'm not the only one. Please, behave with more
 maturity. You're a nice guy, and the assh*ole suit does not look good on
 you. Really.

 

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


Re: (ot) Shameful

2011-05-17 Thread Irvin Gomez

Really? You come in here with the intention to insult and raise ire and act
like you were innocently conveying a  message. Geek please.






Keep blindly defending the unwarranted attack. I posted facts and all the 
groupies ganged up on me. Childish and pathetic. 

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


RE: (ot) Shameful

2011-05-17 Thread DURETTE, STEVEN J (ATTASIAIT)

Please take this offline or to another more appropriate list.

-Original Message-
From: Irvin Gomez [mailto:ir...@pixel69.com] 
Sent: Tuesday, May 17, 2011 3:33 PM
To: cf-talk
Subject: Re: (ot) Shameful


Really? You come in here with the intention to insult and raise ire and
act
like you were innocently conveying a  message. Geek please.






Keep blindly defending the unwarranted attack. I posted facts and all
the groupies ganged up on me. Childish and pathetic. 



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


Re: (ot) Shameful

2011-05-17 Thread John M Bliss

Irvin, allow me to fix you original post so that you avoid reaction you
received.

The Adobe Coldfusion 9 demos do not work and have not worked for who knows
how long. Anyone else seeing this?

See the difference?  Your version made it seem as though you didn't even
care to have a tech discussion at all.  That's why you got the reaction you
did.

On Tue, May 17, 2011 at 2:33 PM, Irvin Gomez ir...@pixel69.com wrote:


 Really? You come in here with the intention to insult and raise ire and
 act
 like you were innocently conveying a  message. Geek please.
 
 
 
 
 

 Keep blindly defending the unwarranted attack. I posted facts and all the
 groupies ganged up on me. Childish and pathetic.

 

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


Re: (ot) Shameful

2011-05-17 Thread Beru

Sorry to say so, but even CF has its fanboys... May this be a lesson of
humility to some, amen!

On 17 May 2011 21:37, Gerald Guido gerald.gu...@gmail.com wrote:


 Really? You come in here with the intention to insult and raise ire and act
 like you were innocently conveying a  message. Geek please.


 On Tue, May 17, 2011 at 3:25 PM, Irvin Gomez ir...@pixel69.com wrote:

 
  Nope, it didn't work for me. I had to click the link and view it in my
  browser. If Adobe were truly committed to CF, I wouldn't need to
  actually click the link. Rather, uniformed penguins in sequin jackets
  would deliver the demos to me on feather-stuffed pillows while
  simultaneously singing a cappella versions of 1980 TV show theme
  songs.
  
  
  
 
  Ray,
 
  as you can see from others, I'm not the only one. Please, behave with
 more
  maturity. You're a nice guy, and the assh*ole suit does not look good on
  you. Really.
 
 

 

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


Re: (ot) Shameful

2011-05-17 Thread Michael Dinowitz

All,

1. Please try to ask questions without combative language. A polite question
gets a faster and more informative response.
2. If someone does post with combative language, please try to find the
actual question (if it exists) from within the post and address that.
3. Please avoid the urge to respond to a combative post in kind. Escalation
of an off topic war is not needed.
4. This list is for technical questions and answers. If you are looking to
debate or fight, there are other lists just waiting to fulfill your need. No
joke.

Thank you to all the list participants. It is you who help to keep this
technical list informative and on topic.

From your list owner.


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


Re: ColdFusion and AJAX choices

2011-05-17 Thread Darius Florczyk

Thank you for the example, I used jQuery a few times but for a larger project 
that was a financial application I used wddxAjax but that was 5-6 years ago :) 

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


Re: ColdFusion and AJAX choices

2011-05-17 Thread Darius Florczyk

thanks much 

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


Someone help me set up CF and XAMPP to send email?

2011-05-17 Thread Phillip B

I decided to start developing locally on my Mac. I have everything working with 
the exception of sending email. I can't use the our office mail server and I 
even tried using Gmail. At least Gmail would verify in CF Admin but it just 
wouldn't accept the email I sent to it.  Any suggestions? I'm new at setting 
things up like this, my brain is fried and i'm pretty sure there is an easy way 
of doing this. 

Phil 

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


Re: (ot) Shameful

2011-05-17 Thread Dave Watts

 as you can see from others, I'm not the only one. Please, behave with more 
 maturity. You're a nice guy, and the assh*ole suit does not look good
 on you. Really.

As ye sow, so shall ye reap.

When you first asked the question, you asked it in a way that couldn't
have been more expected to get the responses you go. First, you
assumed it was a problem that EVERYONE had. Not just some people. At
least, that's how I read the question, and I tend to give people the
benefit of the doubt.

Second, you assumed that because some demos on a web site don't work,
that has something to do with CF: Adobe's support of CF, the future of
CF, etc, etc. Unfortunately, things break some times. Or they don't
work right.

Third, you asked it in the wrong place. People here like CF, but they
don't manage the Adobe site. Did you actually follow up with Adobe
directly? Or post this on Adobe's own forums? Maybe you did, maybe you
didn't - but you didn't indicate that you had done anything in your
question.

If you're going to ask for a mote of additional maturity, see to the
beam of your own first.

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

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite.

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


Re: Someone help me set up CF and XAMPP to send email?

2011-05-17 Thread Dave Watts

 I decided to start developing locally on my Mac. I have everything working 
 with the exception of sending email. I can't use the our office mail server
 and I even tried using Gmail. At least Gmail would verify in CF Admin but it 
 just wouldn't accept the email I sent to it.  Any suggestions? I'm new at
 setting things up like this, my brain is fried and i'm pretty sure there is 
 an easy way of doing this.

You can set up a local mail server like Apache James (Java, should
work on any platform). Getting it to route mail off your machine may
require your office mail server, though, depending on how your
office's network is configured.

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

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite

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


Re: Someone help me set up CF and XAMPP to send email?

2011-05-17 Thread Scott Stewart

There's an opensource mailserver called james that I've used for classes..
its a very lightweight easy to install server that will work for develment
On May 17, 2011 4:27 PM, Phillip B philthylab...@gmail.com wrote:

 I decided to start developing locally on my Mac. I have everything working
with the exception of sending email. I can't use the our office mail server
and I even tried using Gmail. At least Gmail would verify in CF Admin but it
just wouldn't accept the email I sent to it. Any suggestions? I'm new at
setting things up like this, my brain is fried and i'm pretty sure there is
an easy way of doing this.

 Phil

 

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


Re: (ot) Shameful

2011-05-17 Thread Raymond Camden

My reply was meant in jest. But as Dave has said, this is not the
place to report bugs on Adobe.com. Any large site is going to have
bugs in it. If you found a typo on the Flex product page would it
imply a lack of support for Flex? Shoot - I'm sure I've got more than
one broken demo on my site. That certainly doesn't imply my lack of
faith in CF.

On Tue, May 17, 2011 at 2:25 PM, Irvin Gomez ir...@pixel69.com wrote:



 Ray,

 as you can see from others, I'm not the only one. Please, behave with more 
 maturity. You're a nice guy, and the assh*ole suit does not look good on you. 
 Really.




-- 
===
Raymond Camden, ColdFusion Jedi Master

Email    : r...@camdenfamily.com
Blog      : www.coldfusionjedi.com


Keep up to date with Android news: http://www.androidgato

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


Re: ColdFusion and AJAX choices

2011-05-17 Thread Michael Grant

jQuery + infinity



On Tue, May 17, 2011 at 2:04 PM, Raymond Camden rcam...@gmail.com wrote:


 jQuery + 10. ;)

 On Tue, May 17, 2011 at 12:56 PM, Carl Von Stetten
 vonner.li...@vonner.net wrote:
 
  jquery +1
 
  On 5/17/2011 8:50 AM, Darius Florczyk wrote:
  Hi, I need to add AJAX functionality in a new project and wondering if
 anyone had any recommendations for the most robust, stable choice. I will be
 using it with CF7 but need for it to be easily portable to Railo. The need
 is to easily load CMS content in to DIV layers depending on the users
 selection and posting of form submits with confirmation alerts.
 
  So far I was looking at ajaxCFC, Prototype, maAjax, CFAjax, JSMX,
 
  Any recommendations?
 
  Thanks
  Darius
 
 

 

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


RegEx Question

2011-05-17 Thread Duane Boudreau

Hi All,

First time posting in a very long time.

I'm stuck on a RegEx problem that I can't wrap my head around. I need to have a 
block of html and I need to add target=_blank to any hyperlink that has a pdf 
link in it. Any suggestions?

Here is the match string I tried so far but I don't think I'm even close.

a\\s[^]*href=['\\\]( (?i:)(?:jpg|gif|doc|pdf)$*)

If anyone can point me in the right direction it would be much appreciated.

TIA,
Duane

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


Re: (ot) Shameful

2011-05-17 Thread Bryan Stevenson

Next time report your issue with the Adobe website to...ummm...Adobe ;-)

On Tue, 2011-05-17 at 15:33 -0400, Irvin Gomez wrote:

 Really? You come in here with the intention to insult and raise ire and act
 like you were innocently conveying a  message. Geek please.
 
 
 
 
 
 
 Keep blindly defending the unwarranted attack. I posted facts and all the 
 groupies ganged up on me. Childish and pathetic. 
 
 

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


Google Picasaweb API

2011-05-17 Thread Guru

One of my friend is a photographer and he need a shopping cart type
application which he can sell his photo albums.
He already uses Picasaweb desktop application for uploading his photos and
don't want to interrupt that.

I was thinking if anything is available out there, preferably in CF so I can
modify by myself rather than writing something from the beginning.

Any ref. would be appreciated.

Thanks,


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


Re: Google Picasaweb API

2011-05-17 Thread Kevin Pepperman

This is not in CF, but I used it to build sites that sell and deliver art.

http://gallery.menalto.com/

It has a cart system built into it.



On Tue, May 17, 2011 at 8:30 PM, Guru cfexp...@gmail.com wrote:


 One of my friend is a photographer and he need a shopping cart type
 application which he can sell his photo albums.
 He already uses Picasaweb desktop application for uploading his photos and
 don't want to interrupt that.

 I was thinking if anything is available out there, preferably in CF so I
 can
 modify by myself rather than writing something from the beginning.

 Any ref. would be appreciated.

 Thanks,


 

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


Re: Google Picasaweb API

2011-05-17 Thread Lists

I wrote a wrapper for picasa that you can use as the basis for your app.

Http://Picasacfc.Riaforge.org

On May 17, 2011, at 7:30 PM, Guru cfexp...@gmail.com wrote:

 
 One of my friend is a photographer and he need a shopping cart type
 application which he can sell his photo albums.
 He already uses Picasaweb desktop application for uploading his photos and
 don't want to interrupt that.
 
 I was thinking if anything is available out there, preferably in CF so I can
 modify by myself rather than writing something from the beginning.
 
 Any ref. would be appreciated.
 
 Thanks,
 
 
 

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


Re: RegEx Question

2011-05-17 Thread Lists

You could actually do this with jquery quite easily should you want to do it 
client side. 

$('a[href*=pdf]').click(function(){
window.open($(this).href);
})


On May 17, 2011, at 5:35 PM, Duane Boudreau du...@sandybay.com wrote:

 
 Hi All,
 
 First time posting in a very long time.
 
 I'm stuck on a RegEx problem that I can't wrap my head around. I need to have 
 a block of html and I need to add target=_blank to any hyperlink that has a 
 pdf link in it. Any suggestions?
 
 Here is the match string I tried so far but I don't think I'm even close.
 
 a\\s[^]*href=['\\\]( (?i:)(?:jpg|gif|doc|pdf)$*)
 
 If anyone can point me in the right direction it would be much appreciated.
 
 TIA,
 Duane
 
 

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


RE: Using CFTHREAD on CF PRO

2011-05-17 Thread Andrew Scott

Although what Dan is saying is correct, one can think a little about this.

Let's say we have a hundred requests come in at the same time, and for 
arguments sake we have a limitation of 2 running threads for ColdFusion 
standard. This means that you have 98 queued up ready to be processed, 49 to 
the power of 200ms which is 2401ms. That is almost 3 secs to process the 
threads.

That might not be anything to worry about for a very low impact site, so you 
will need to take this into consideration with whatever method you decided. 
Personally with this type of restriction on ColdFusion Standard I would be more 
inclined to waste the 200ms on the user request, rather than bogging the server 
down for scalability reasons.

Just something to think about.


Regards,
Andrew Scott
http://www.andyscott.id.au/


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