Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
GiGi05 #1
cfapplication Null Pointers
Hi All,
I'm using ColdFusion 6.0 server. I keep getting Error Occurred While
Processing Request for Null Pointers are another name for undefined values. But
when i delete cookies from my browser than everything works fine. However when
i load this page again, i get the same error. This page works fine with
ColdFusion 5.0 server. Any ideas.....Please help.....
Here is my code
<cfapplication name="myapplication"
clientmanagement="Yes"
sessionmanagement="Yes"
setclientcookies="Yes"
sessiontimeout="#CreateTimeSpan(0,2,0,0)#"
clientstorage="Cookie"
applicationtimeout="#CreateTimeSpan(0, 0, 30, 0)#">
Thanks in advance,
GiGi05 Guest
-
using <cfapplication> for security
I have a website that is secured with a login form. On succes the login form initializes a session variable: <cfset SESSION.userData = userStuff>... -
Undefined value - CFAPPLICATION
I have had this problem for awhile, finally based on this thread, I think I figured it out. Apparently if you have a cookie from before an upgrade... -
CFAPPLICATION clarification
We have several applications that we plan to cluster later this year. Currently, the CFAPPLICATION tags in the respective Application.cfm look like... -
CFAPPLICATION in CFC
Perhaps this post is more appropriate here: FYI, I've since discovered that it is not the session variable setting (or the lock which contains... -
Getting a 'Null Pointers' error when using query ofQueries
Hi, I am using text in a file to create a new query. This section works correctly. I am then using query of Queries:- <cfquery... -
adonis1976 #2
Re: cfapplication Null Pointers
I assume that u have a kind of login system here..
you don't need clientstorage="cookie" in the <cfapplication>. When u said
sessionmanagement="yes", the cookies will be stored in the session scope and
will clear out when the session is cleared.. in the log out have
structClear(session) so that all the cookies are deleted.
adonis1976 Guest
-
GiGi05 #3
Re: cfapplication Null Pointers
I'm using <cftry> tag outside <cfapplication> tag, and it works fine.
GiGi05 Guest



Reply With Quote

