加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > asp.Net > 正文

asp.net – 找不到aspnet_regiis部分

发布时间:2020-12-16 09:24:30 所属栏目:asp.Net 来源:Walkthrough: Creating and Expo
导读:我正在尝试加密我的web.config. aspnet_regiis一直告诉我:找不到配置部分’applicationSettings’. 我关注这个网站:Walkthrough: Creating and Exporting an RSA Key Container 我的web.config看起来像这样: ?xml version="1.0" encoding="utf-8"?configu
我正在尝试加密我的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,PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  </sectionGroup>
 </configSections>

    <configProtectedData>
      <providers>
         <add name="MyProvider"
              type="System.Configuration.RsaProtectedConfigurationProvider,System.Configuration,Version=2.0. 0.0,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”

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

这是一个问题,applicationSettings是否在configSections中列出?

谢谢您的帮助.

解决方法

好的,找到了解决方案,

如“configSections”中所述,“applicationSettings”是SectionGroup,而不是Section. aspnet_regiis只能加密Sections.

所以我不得不深入一点:aspnet_regiis -pe“applicationSettings / x.Properties.Settings”-app“/ MyApplication”-prov“MyProvider”

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读