gpt4 book ai didi

.net - ServiceConfiguration.cscfg 中的自定义/嵌套 XML 设置

转载 作者:行者123 更新时间:2023-12-04 15:48:39 26 4
gpt4 key购买 nike

我们正在尝试在我们的 Azure 应用程序中实现一些动态可配置的日志记录,并且我们正在使用企业库来执行此操作,效果很好,但是实现此目的所需的 xml 比简单的“appSetting”样式设置更复杂ServiceConfiguration.cscfg 文件似乎接受它,因为它需要嵌套 xml 节点,

例如

<configSections>
<section name="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" requirePermission="true" />
</configSections>

解决方法(请原谅此窗口中的格式):

<loggingConfiguration name="" tracingEnabled="true" defaultCategory="General">
<listeners>
<add listenerDataType="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.CustomTraceListenerData, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
type="OurSolution.Common.AzureDiagnosticTraceListener, Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"
name="AzureDiagnosticTraceListener" />
</listeners>
<formatters>
<add type="Microsoft.Practices.EnterpriseLibrary.Logging.Formatters.TextFormatter, Microsoft.Practices.EnterpriseLibrary.Logging, Version=5.0.414.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
template="Timestamp: {timestamp}{newline}&#xA;Message: {message}{newline}&#xA;Category: {category}{newline}&#xA;Priority: {priority}{newline}&#xA;EventId: {eventid}{newline}&#xA;Severity: {severity}{newline}&#xA;Title:{title}{newline}&#xA;Machine: {localMachine}{newline}&#xA;App Domain: {localAppDomain}{newline}&#xA;ProcessId: {localProcessId}{newline}&#xA;Process Name: {localProcessName}{newline}&#xA;Thread Name: {threadName}{newline}&#xA;Win32 ThreadId:{win32ThreadId}{newline}&#xA;Extended Properties: {dictionary({key} - {value}{newline})}"
name="Text Formatter" />
</formatters>
<categorySources>
<add switchValue="All" name="General">
<listeners>
<add name="AzureDiagnosticTraceListener" />
</listeners>
</add>
</categorySources>
</loggingConfiguration>

我看不到一种欺骗 ServiceDefinition 或 ServiceConfiguration 文件来接受这一点的方法,尽管如果可以的话,我可以看到一种告诉企业库使用 ServiceConfiguration 文件的方法,我可以在 app.config 中执行此操作。

为什么我们试图解决这个问题是为了允许我们动态调整日志记录的设置,即从无日志记录更改为详细日志记录,而无需重新部署,这在我们的实时应用程序中证明是耗时且不切实际的最近才上线,所以可能仍然存在奇怪的错误;​​-)

如有任何想法,我们将不胜感激问候金都马来语

最佳答案

其他选项:

  • 对任意配置进行Base64编码并将其放入cscfg的值中
  • (我最喜欢的)只需在 blob 存储或数据库中保留额外的配置(使管理部署变得更简单)

关于.net - ServiceConfiguration.cscfg 中的自定义/嵌套 XML 设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4083364/

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