So I have the jsession.user and other variables set within
application.cfm.
Jsession is not a standard Coldfusion structure; session is,
even when you're using J2EE sessions. So, use
session.user instead.
Also, to maintain state, replace reqURL by
#URLSessionFormat(reqURL)# or reqURL?#session.URLToken#, where
reqURL is any URL from your site to your site. For example, use
<cfoutput><form
action="#URLSessionFormat(myActionPage.cfm)#"></cfoutput>
or
<cfoutput><form
action="myActionPage.cfm?#session.URLToken#"></cfoutput>
instead of
<form action="myActionPage.cfm">