odd session error

Has anyone seen this error before?

# Element CBSTORAGE is undefined in SESSION.

The error occurred in C:\ColdFusion8\wwwroot\coldbox\system\plugins\sessionstorage.cfc: line 119
Called from C:\ColdFusion8\wwwroot\coldbox\system\plugins\sessionstorage.cfc: line 49
Called from C:\ColdFusion8\wwwroot\EmailManager\interceptors\navigation.cfc: line 138
Called from C:\ColdFusion8\wwwroot\EmailManager\interceptors\navigation.cfc: line 86
Called from C:\ColdFusion8\wwwroot\coldbox\system\services\interceptorService.cfc: line 135
… |

It seems very odd to me, because in the sessionstorage cfc, just prior to line 119 which is attempting to access cbStorage, a private method is called which CREATES cbStorage!

This occurred on the first run of the application after a fresh CF Server restart.

A couple of more clues…
The interceptor shown in the error above has in its config method these lines (the ones being referenced above):

instance.session = getPlugin(“sessionStorage”);
instance.session.setVar(“aNav”,arraynew(1));

Any clues as to why I may be getting this error?

Yes

You have getPlugin(“sessionStorage”)

the real key is : sessionstorage.

The ColdBox Cache is case sensitive since it is java based. Therefore, you will get inconsistencies if you mispell the real cfc’s syntax. This is also done, to protect case sensitive OS systems.

Luis