Re: Where to put your code

2010-11-13 Thread Paul Alkema
I second this. : ) On Fri, Nov 12, 2010 at 8:05 PM, James Holmes james.hol...@gmail.comwrote: I'd argue that CF didn't allow for well written applications before CFCs came along. -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 13 November 2010 02:16, Dave

Getting AD logged in user

2010-11-13 Thread Robert Filipovich
So what I want to do is see the logged in AD username from an intranet user hitting my page, so that I can make queries based on that information without them having to log in again. I have done several things that I thought should work. I have Annonymous off and windows auth turned on in

Re: Where to put your code

2010-11-13 Thread Dave Watts
I'd argue that CF didn't allow for well written applications before CFCs came along. That's absurd on its face. There are no well-written applications in any procedural languages, then? You need OO for a well-written application? Operating systems are written in C - nothing well-written in

RE: CF Blog software

2010-11-13 Thread Russ Michaels
This new function -Original Message- From: Sean Corfield [mailto:seancorfi...@gmail.com] Sent: 13 November 2010 07:44 To: cf-talk Subject: Re: CF Blog software On Thu, Nov 11, 2010 at 1:40 AM, Russ Michaels r...@michaels.me.uk wrote: could we have an example ? An example of what? --

Re: CF Blog software

2010-11-13 Thread James Holmes
http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WS61C07B60-3D65-4d71-8F2A-8411D8010E60.html -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 13 November 2010 20:19, Russ Michaels r...@michaels.me.uk wrote: This new function -Original Message- From:

cf8, flex and mxml files

2010-11-13 Thread rex
I have CF8.0.1, and when I request an mxml file, it compiles to a actionscript/swf a la FLEX, and I get the flash file. When I have a missing CFM file, I get a 404. But, when I have a missing MXML file, I get a 500 server error, and I get an error message that displays the full system path:

Coldfusion and Jquery UI Dialog

2010-11-13 Thread fun and learning
HI All - I am trying to create a login popup form using Jquery UI Dialog plugin and coldfusion. I am not able to understand how to authenticate the user on the popup. Whenever I say login, the form is submitted with form variables appended to the url. Can anyone let me know the flow that has

Re: Where to put your code

2010-11-13 Thread Gerald Guido
I'd argue that CF didn't allow for well written applications before CFCs came along. Swapping out well written applications for well made tools, I would argue that there were no well made tools before the advent of fire, flint, copper, bronze, iron, steel, interchangeable parts, computers etc.

Re: Where to put your code

2010-11-13 Thread James Holmes
When was the last time you wrote a web app with a flint axe? -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 14 November 2010 12:01, Gerald Guido gerald.gu...@gmail.com wrote: I'd argue that CF didn't allow for well written applications before CFCs came along.

Re: Where to put your code

2010-11-13 Thread Gerald Guido
When was the last time you wrote a web app with a flint axe? Right around PHP 3 or CF 2 :-) G! On Sun, Nov 14, 2010 at 12:02 AM, James Holmes james.hol...@gmail.comwrote: When was the last time you wrote a web app with a flint axe? -- WSS4CF - WS-Security framework for CF

Re: Where to put your code

2010-11-13 Thread James Holmes
Or any version of Perl... -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 14 November 2010 13:40, Gerald Guido gerald.gu...@gmail.com wrote: When was the last time you wrote a web app with a flint axe? Right around PHP 3  or CF 2  :-) G! On Sun, Nov 14, 2010 at

Re: Coldfusion and Jquery UI Dialog

2010-11-13 Thread James Holmes
Have you tried putting method=post on the form (and an action of it's supposed to go somewhere else)? form id=dialog-form title=Login method=post action=login_page_here.cfm -- WSS4CF - WS-Security framework for CF http://wss4cf.riaforge.org/ On 14 November 2010 10:58, fun and learning