I have been having a problem where I am suddenly loading blank pages on a
site that was working several days ago. Over those few days, I had made
many changes to the site so I was sure it was some mistake I made. But
tracking back through my revisions, I found the issue.
As we know, BonCodeAJP13.settings now has
{string}, and that should be added to the
Mod_CFML valve (in server.xml) as: sharedKey="{string}".
So my BonCodeAJP13.settings file looks like this:
8009 localhost 200 0 c:\temp 0 False {myString}And here:
http://www.modcfml.org/index.cfm/documentation/modcfml-tomcat-valve/config-options/,
we also see that the “shared secret” (aka. ModCFMLSecret and sharedKey and
requiredSecret) should also be added to the mod_cfml valve in Tomcat’s
server.xml file, like this:
Next, the BonCode manual says that we also need to set:
EnableHeaderDataSupport=True
So now my BonCode settings looks like this:
8009 localhost 200 0 c:\temp 0 False True {myString}So far, so good.
Next, the manual says that our shared secret also needs to be added to the
connector like this:
And here is the issue: When I add the requiredSecret to the
all I get are blank pages in the browser.
But if I remove that requiredSecret, the pages load fine.
Am I doing something wrong, or has something changed since the Manual was
written?
Thanks,
-RR