I have ColdFusion 9 running on a Windows 10 Pro computer. I am using ColdFusion's built-in server. Everything runs perfectly. However, when I run it from another computer on the same network, I get an error I have never seen before. It balks at one of CFAPPLICATIONS's parameters in the Application.cfm file. As I mentioned, this Application.cfm file works perfectly locally. (In fact it is the same Application.cfm file I have been using since Coldfusion 5 running on a Win 2000 Pro machine.) Here is a bit from that file:
<CFAPPLICATION
name = "FredsWebApps"
clientManagement = "YES"
setClientCookies = "YES"
sessionManagement = "YES"
setDomainCookies = "NO"
>
but on the local machine I get this error:
The system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code. Null Pointers are another name for undefined values. Resources:
Browser Mozilla/5.0 (Windows NT 5.0; rv:10.0.12) Gecko/20100101 Firefox/10.0.12
Remote Address 192.168.1.3
Referrer
Date/Time 08-Dec-15 10:15 AM
Stack Trace
java.lang.NullPointerException
If I modify Application.cfm to remove everything except the "name" parameter it works (but of course other things fail). So
<CFAPPLICATION
name = "FredsWebApps"
>
generates no error, but even
<CFAPPLICATION
name = "FredsWebApps"
sessionManagement = "YES"
>
will generate the above error. (I get a similar error using IE.)
I hope I haven't gone on too long, but help would certainly be appreciated.