Keivn
Member since Nov 10, 2009
- Profile: /members/4719-keivn.htm
- Comments: 19
Recent Blog Comments By Keivn
-
ColdFusion Path Usage And Manipulation Overview
Posted on Jul 14, 2011 at 3:13 PM
@anyone - I can't get any of the functions to get paths in the application.cfc.... read more »
-
Ask Ben: Building An AJAX, jQuery, And ColdFusion Powered Application
Posted on Apr 29, 2011 at 11:59 AM
@Andrew, Pointless comment. I can see that you have made two comments on this site with one being about the misspelling of a word. Don't troll here here. Go fix the mistake you made in your other comment first before being grammar troll.... read more »
-
ColdFusion Application.cfc Tutorial And Application.cfc Reference
Posted on Feb 22, 2011 at 7:59 AM
@Mark, http://www.bennadel.com/blog/1847-Explicitly-Ending-A-ColdFusion-Session.htm... read more »
-
ColdFusion Application.cfc Tutorial And Application.cfc Reference
Posted on Feb 22, 2011 at 7:56 AM
@Mark, I think Ben goes over how to end a seesion in a thread. You can end a session programatically, otherwise you have to wait for the session to timeout. You can use an application scope variable to maintain the count.... read more »
-
ColdFusion Application.cfc Tutorial And Application.cfc Reference
Posted on Jan 14, 2011 at 7:48 PM
@Marc, I know that onSessionEnd() does not have interact or make request. So I would imagine onSessionEnd() would always happen after. If there was a request it would restart timeout. "You cannot use this method to display data on a user page, because it is not associated with a request."... read more »
-
Ask Ben: Building An AJAX, jQuery, And ColdFusion Powered Application
Posted on Jan 10, 2011 at 8:31 PM
@Ben, Right I figured out what the problem was. I some illogical layout for what I was trying to do. I can't remember the exact cause at this time. It had something to do with me using onRequest() and onRequestStart()... read more »
-
Post-Instantiation CFC Method References Don't Show Up In CFDump In ColdFusion 9
Posted on Dec 2, 2010 at 10:33 AM
@Ben, Ah thank you. By the way I was looking around and saw a few items about components. Is there a best practice when it comes to properties? ex: <cfparam name=THIS.xxx" default="0"/> - someone said this was bad practice. or <cfset THIS.xxx = 0/> or <cfproperty..../&... read more »
-
Post-Instantiation CFC Method References Don't Show Up In CFDump In ColdFusion 9
Posted on Dec 1, 2010 at 9:54 AM
This may be a stupid question. I want to get just the properties of a cfc and not the methods. How do I get that? ex: <cfcom..> <cfparam name="THIS.xx" default="HI"/> <cffun..> function code </cffun..> </cfcomp..> cfm page <cfset a = createobj... read more »
-
Ask Ben: Building An AJAX, jQuery, And ColdFusion Powered Application
Posted on Nov 16, 2010 at 8:19 AM
I have an OnRequest method in my application.cfc and it will not allow me to make ajax calls or I cant get the data. When i comment it out, it works fine. Is there something that needs to be in the OnRequest so that it does not mess with the ajax calls?... read more »
-
ColdFusion Application.cfc Tutorial And Application.cfc Reference
Posted on Nov 10, 2010 at 8:20 AM
I have a question about the onRequestStart(). Do you think it is an ok practive to validate a login request or a confirm registration request here? For example: from login.cfm user submits the login form onRequestStart() uses validateLogin() and then pushes the user on. Same as a confim registration... read more »
-
Learning ColdFusion 8: Javascript Object Notation (JSON) Part II - Remote Method Calls
Posted on Sep 22, 2010 at 9:44 PM
@Ben, yep foolishly forgot the method. I got it thanks.Im working with JQuery and FullCalendar. Pretty sweet stuff.... read more »
-
Learning ColdFusion 8: Javascript Object Notation (JSON) Part II - Remote Method Calls
Posted on Sep 22, 2010 at 7:41 PM
I must be doing something wrong. When I view the cfc directly as a wsdl it shows as XML not JSON... read more »
-
ColdFusion Application.cfc Tutorial And Application.cfc Reference
Posted on May 15, 2010 at 8:37 PM
After posting my comment I immediately saw that I was not referencing the argument scope to get the session variables.......my bad... read more »
-
ColdFusion Application.cfc Tutorial And Application.cfc Reference
Posted on May 15, 2010 at 8:08 PM
I am having some issue with OnSessionEnd(). I can get the session timeout to trigger the OnSessionEnd(), but so far the only functionality I can get is to write to a file, I cant run a query. If I directly invoke the onsessionend I can get it to run a query and do a cflocation. Why would the query ... read more »
-
ColdFusion File Explorer - Round One
Posted on Apr 14, 2010 at 2:14 PM
Did anything ever come of this? I have been trying to find a good way to browse a huge directory structure in a pleasing way.... read more »
-
Learning ColdFusion 8: CFThread Part IV - Cross-Page Thread References
Posted on Nov 16, 2009 at 3:41 PM
Right, I just wanted that warm and fuzzy from it saying it finished normally. I do understand. I will just try to modify it to get the information. Thanks. This site rules by the way. I like all the great information.... read more »
-
Learning ColdFusion 8: CFThread Part IV - Cross-Page Thread References
Posted on Nov 16, 2009 at 3:03 PM
I am refreshing the collection after adding new files. The question is about receiving a status of "Completed" from the thread, or why I am not. I included the status as a part of the information retrieved by the get_Threads.cfm page. Everything works fine but I never receive a status of "completed... read more »
-
Learning ColdFusion 8: CFThread Part IV - Cross-Page Thread References
Posted on Nov 10, 2009 at 7:33 AM
I am running in a shared environment and need to use the thread in order to update a collection, due to the time out restraints. I would like to be able to access the status of the thread so that I know if it completed. In this, very cool, example I never see the final status. It may be naive but ho... read more »