ColdFusion session undefined error in Flash -
i have members area when logged session variable called "userid" created. works across of pages correctly. have application.cfm file sessionmanagement turned on.
the problem have flash video recorder shows in new window posts file named save.cfm. once click save on flash recorder, posts save.cfm , error. on same domain don't understand why i'm getting 500 element userid undefined in session
error. form has nothing value, value being picked session.
i suspect flash player not sending cfid/cftoken cookies, , therefore cf app server unable determine session traffic belongs to, , therefore unable load session variable.
to confirm this, log contents of cookie struct on save.cfm page when post it. or, better, use packet sniffer/proxy watch traffic.
you may have expressly include session tokens in url you're posting adding session.urltoken url.
so, when configure destination video recorder's post (assuming generated cf), instead of using
save.cfm
use
save.cfm?#urlencodedformat(session.urltoken)#
Comments
Post a Comment