Re: cflocation tag

2009-12-04 Thread Mike Stromme

Barney,

Thank you, thank you, thank you  I had a  in the 
application.cfm file.

thanks,
Mike



 Do you have CFFLUSH above the CFLOCATION tag anywhere (like another
> template or Application.cfm)?  Once you flush the page, you can no
> longer do a CFLOCATION (or CFHEADER, CFCONTENT, etc.).
> 
> cheers,
> barneyb
> 
> On Fri, Dec 4, 2009 at 11:27 AM, Mike Stromme  com> wrote:
> >
> > Anyone ever have cflocation stop working.  It is happening on our 
> MX7 test server but works fine on our production MX7 server.  I 
> created a test page with just the cflocation tag with and without the 
> addToken attribute and it just stays on the test page.
> >
> > Thanks,
> > Mike
> >
> > 


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328875
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


cflocation tag

2009-12-04 Thread Mike Stromme

Anyone ever have cflocation stop working.  It is happening on our MX7 test 
server but works fine on our production MX7 server.  I created a test page with 
just the cflocation tag with and without the addToken attribute and it just 
stays on the test page.

Thanks,
Mike 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328873
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: mx7 debugger

2009-06-01 Thread Mike Stromme



Tried it with id and name attributes set with the same result.

thanks,
Mike


>What does your full http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323043
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Authentication with Active Directory

2009-06-01 Thread Mike Stromme

Thanks Judah.  

Our DBAs want to eliminate the generic account that I have my datasources setup 
with.  Like you mentioned, they want to control users access at the DB level.  
Does CF8 support passing users credentials using integrated security?  I think 
my only option, like you mentioned is to handle the security at the application 
level but the generic account will still have to exist on the DB server.

>I think that Dave has basically answered your question but I'll toss
>out the notion that if it was acceptable in your environment you could
>do the same sort of permissions but at the application level instead
>of the db.
>
>CF can do authentication with Active Directory via the CFLDAP tag. You
>could fetch a list of permissions and then proxy the calls to the db
>and only allow certain queries involving your sprocs and views to
>people with sufficient privileges.
>
>Though it is functionally equivalent to what you are talking about, it
>may be that they want the roles and permissions enforced down at the
>SQL Server level. There are some good reasons to do so and then there
>are some reasons that, well, that's just how an organization has
>always done it and isn't changing now.
>
>Anyway, if you are investigating CF talking to Active Directory, start
>with the CFLDAP tag.
>
>Take care,
>Judah
>
>
>> 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323028
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


mx7 debugger

2009-06-01 Thread Mike Stromme

Hi,

I am getting the following error on the debugger tab in IE7 and Firefox when I 
use  in a page instead of just .  None of the debugging details 
are available when this happens.

Error from Firebug:

unterminated string literal
[Break on this error] document.write('Col...ascript" 
src="/CFIDE/scripts/cfform.js">

Displayed on "debugger" tab:

'); } } function writeCloseBody() { if( debugMode ) { document.write(''); } } 
//== TREE STATE == 
function setCookie( targetName, value ) { var cookieValue = targetName + "=" + 
escape(value); var exp = new Date(); var nowPlus30Days = exp.getTime() + (30 * 
24 * 60 * 60 * 1000); exp.setTime( nowPlus30Days ); document.cookie = 
cookieValue + "; expires=" + exp.toGMTString() + ";"; } function 
getCookieValue( name ) { var thisCookie = document.cookie.split("; ") for( i=0; 
i   ColdFusion MX Debugging 


thanks for any help,

Mike
 
 
  

 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323025
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Authentication with Active Directory

2009-05-26 Thread Mike Stromme

Thanks Dave, that's what I was afraid of.


>> Does anyone know how to setup a datasource to authenticate with Active
>> Directory. We are moving away from service accounts on SQL Server and I
>> need to pass the Windows login credentials through my CF apps to SQL Server
>> so the user is allowed access to certain views and sprocs. For example
>> in .net you add "IntegratedSecurity=SSPI" to the connection script and your
>> done.
>
>Are you talking about passing the end-user's credentials to the
>database? If so, I'm pretty sure that CF simply doesn't support this,
>as it doesn't have the ability to impersonate users. .NET applications
>can do this sort of thing because they're tightly tied to Windows, run
>in-process with IIS, etc. However, you can use Windows Authentication
>to pass the service account's credentials to CF, which is not the
>default behavior.
>
>In any case, even if you could do this, it would generally be a bad
>idea for performance reasons. Each user would have their own
>connection pool, and you wouldn't be able to reuse connections across
>users.
>
>Dave Watts, CTO, Fig Leaf Software
>http://www.figleaf.com/
>
>Fig Leaf Software provides the highest caliber vendor-authorized
>instruction at our training centers in Washington DC, Atlanta,
>Chicago, Baltimore, Northern Virginia, or on-site at your location.
>Visit http://training.figleaf.com/ for more information! 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:322808
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4