gpt4 book ai didi

asp.net - 未找到 aspnet_regiis 部分

转载 作者:行者123 更新时间:2023-12-04 17:33:35 27 4
gpt4 key购买 nike

我正在尝试加密我的 web.config。

aspnet_regiis 一直告诉我:找不到配置部分“applicationSettings”。

我关注了这个网站:Walkthrough: Creating and Exporting an RSA Key Container

我的 web.config 看起来像这样:

<?xml version="1.0" encoding="utf-8"?>
<configuration>

<configSections>
<section name="x" type="x" />
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="x.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>

<configProtectedData>
<providers>
<add name="MyProvider"
type="System.Configuration.RsaProtectedConfigurationProvider, System.Configuration, Version=2.0. 0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a,
processorArchitecture=MSIL"
keyContainerName="MyKeys"
useMachineContainer="true" />
</providers>
</configProtectedData>

...

<applicationSettings>
<x.Properties.Settings>
<setting name="PollingInterval" serializeAs="String">
<value>10000</value>
</setting>
</x.Properties.Settings>
</applicationSettings>
</configuration>

我使用命令:aspnet_regiis -pe "applicationSettings"-app "/MyApplication"-prov "MyProvider"

当我将部分 configProtectedData 移动到 configSections 上方时,它会加密 applicationSettings,但会删除 configSections-Section,无论如何,IIS 告诉我 configSections 需要是第一个元素。我不确定我做错了什么。

是否有问题,applicationSettings 列在 configSections 中?

感谢您的帮助。

最佳答案

好的,找到了解决方案,

如“configSections”中所述,“applicationSettings”是一个SectionGroup,而不是一个Section。 aspnet_regiis 只能加密节。

所以我不得不更深入: aspnet_regiis -pe "applicationSettings/x.Properties.Settings"-app "/MyApplication"-prov "MyProvider"

关于asp.net - 未找到 aspnet_regiis 部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15765191/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com