我遇到了问题(或者至少我认为我有问题)。我正在尝试在其web.config中设置站点的机器密钥,以便为将来在站点之间共享表单身份验证数据做好准备。我首先在web.config中设置以下内容:
<machineKey validationKey="<SOME_VALUE>" decryptionKey="<SOME_VALUE>" validation="SHA1" decryption="AES"/>
作为测试,我编写了以下内容来测试web.config中的新machineKey元素:
var machineConfigMachineKey = (MachineKeySection)WebConfigurationManager.OpenMachineConfiguration().SectionGroups["system.web"].Sections["machineKey"];
var webConfigMachineKey = (MachineKeySection)WebConfigurationManager.OpenWebConfiguration("").SectionGroups["system.web"].Sections["machineKey"];
Response.Write("<pre>");
Response.Write("<b>machine.config decrypt: </b>" + machineConfigMachineKey.DecryptionKey + "<br />");
Response.Write("<b>web.config decrypt: </b>" + webConfigMachineKey.DecryptionKey + "<br />");
Response.Write("<br />");
Response.Write("<b>machine.config validate: </b>" + machineConfigMachineKey.ValidationKey + "<br />");
Response.Write("<b>web.config validate: </b>" + webConfigMachineKey.ValidationKey + "<br />");
Response.Write("</pre>");
Response.End();
...导致此显示:
machine.config decrypt: AutoGenerate,IsolateApps
web.config decrypt: AutoGenerate,IsolateApps
machine.config validate: AutoGenerate,IsolateApps
web.config validate: AutoGenerate,IsolateApps
显然我对此感到非常困惑,因为我期望在web.config中看到来自新machineKey元素的自定义值,而不是“AutoGenerate,IsolateApps”。
我在这里错过了一些对我来说应该是非常明显的东西吗?
谢谢:)
答案 0 :(得分:0)
请改用静态API WebConfigurationManager.GetSection("system.web/machineKey")
。它自动执行遍历配置层次结构的逻辑,找到最适用的逻辑(通常是当前应用程序的〜/ Web.config),并提取其特定值。