设为首页 收藏本站
查看: 942|回复: 0

[经验分享] 更改SharePoint 的web.config设置的两种方式

[复制链接]

尚未签到

发表于 2015-9-24 11:04:09 | 显示全部楼层 |阅读模式
更改SharePoint 的web.config设置的两种方式
  参考:http://msdn.microsoft.com/zh-cn/library/ms460914.aspx
  MSDN上写的不是很明白,自己测试通过,记录一下;
  方法一:通过创建描述一组 Web.config 修改的 XML 文件以声明方式注册 Web.config 项。
  备注:
  直接写一个webconfig.**.xml到14文件夹下的CONFIG中,在运行stsadm -o copyappbincontent 效果是一样的;
  方法一有个缺点,会把所有WebApplication的web.Config都修改掉;
  1.在sharepoint解决方案里添加14文件夹下的CONFIG文件夹,新建webconfig.**.xml文件(本文中使用的是webconfig.rj.xml),编辑内容;
DSC0000.png
DSC0001.png
  2.修改解决方案包,如下;
  
DSC0002.png DSC0003.png
  3.添加后期部署命令行,如果解决方案里没有这一步,也可以直接在cmd中直接运行;
  "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\Bin\stsadm.exe" -o copyappbincontent
DSC0004.png
  方法二:使用 SharePoint Foundation 对象模型来修改 Web.config 设置
  备注:
  必须为WebApplication以上范围的feature,不能是Site或web范围;
  2011-01-06:不能在site scope feature使用的原因找到了,是因为SPWebService.RemoteAdministratorAccessDenied默认为TRUE,将下表中的脚本保存为Set-RemoteAdministratorAccessDenied-False.ps,以管理员身份运行后IISreset,就OK了;
  参考:http://unclepaul84.blogspot.com/2010/06/sppersistedobject-xxxxxxxxxxx-could-not.html (过墙)

  # AUTHOR: Paul Kotlyar
  # CONTACT: unclepaul84@gmail.com
  # DESCRIPTION: sets an option on content web service that allows updating of SP Administration objects such as SPJobDefinition from content web applications
  function Set-RemoteAdministratorAccessDenied-False()
  {
      # load sharepoint api libs
      [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint") > $null
      [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Administration") > $null
  
  # get content web service
  $contentService = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
  # turn off remote administration security
  $contentService.RemoteAdministratorAccessDenied = $false
  # update the web service
  $contentService.Update()
       
  }
  
  Set-RemoteAdministratorAccessDenied-False
  
  缺点是如果上级节点不存在,就没有办法添加SPWebConfigModification实例:比如要在"configuration/connectionStrings"下添加一个"<add name='tongji' connectionString='(请自行修改)Data Source=(loca…….",因为wenconfig默认不存在"configuration/connectionStrings"节点,所以部署时会报错;


  • 确定Featrue范围,添加事件接收器 DSC0005.png
DSC0006.png
  2.参考一下URL编写代码
  http://didierdanse.net/blogs/dev_en/archive/2009/09/11/sharepoint-how-to-use-spwebconfigmodification-class.aspx
  
DSC0007.png
DSC0008.png
  
  
  2011-3-3  在管理中心修改节点,为了在2010下使用请修改WSP安装的webconfig.aspx  把12替换成14就行
  if you want to modify a value without executing any code, you will have to use a page that is able to manage all the entries. You can find such a page here: http://blog.thekid.me.uk/archive/2007/03/24/web-config-modification-manager-for-sharepoint.aspx
  
  http://www.codeproject.com/KB/sharepoint/SPWebConfigModTool.aspx?msg=3344238
  2011-3-4   
  遇到个问题,开启Session的情况下,出来以下错误,使用命令行“disable-SPSessionStateService”关闭Session后,恢复正常,原理未明
DSC0009.png
  未能连接到配置数据库。
  已引发类型为 System.Xml.XmlException 的异常。其他异常信息: “Session”是一个意外标记。应为空格。 行 1,位置 10668。
  System.Xml.XmlException: “Session”是一个意外标记。应为空格。 行 1,位置 10668。
  在 System.Xml.XmlTextReaderImpl.Throw(Exception e)
  在 System.Xml.XmlTextReaderImpl.ParseAttributes()
  在 System.Xml.XmlTextReaderImpl.ParseElement()
  在 System.Xml.XmlTextReaderImpl.ParseDocumentContent()
  在 System.Xml.XmlLoader.ParsePartialContent(XmlNode parentNode, String innerxmltext, XmlNodeType nt)
  在 System.Xml.XmlLoader.LoadInnerXmlElement(XmlElement node, String innerxmltext)
  在 Microsoft.SharePoint.Administration.SPWebConfigFileChanges.ApplyModificationsWebConfigXmlDocument(XmlDocument xdWebConfig, String filepath)
  在 Microsoft.SharePoint.Administration.SPWebApplication.ApplyWebConfigModifications()
  在 Microsoft.SharePoint.Administration.SPWebApplication.Provision()
  在 Microsoft.SharePoint.Administration.SPWebServiceInstance.Provision()
  在 Microsoft.SharePoint.Administration.SPFarm.Join()
  在 Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.CreateOrConnectConfigDb()
  在 Microsoft.SharePoint.PostSetupConfiguration.ConfigurationDatabaseTask.Run()
  在 Microsoft.SharePoint.PostSetupConfiguration.TaskThread.ExecuteTask()
            

    [XmlException: “Session”是一个意外标记。应为空格。 行 1,位置 10662。]
       System.Xml.XmlTextReaderImpl.Throw(Exception e) +95
       System.Xml.XmlTextReaderImpl.ParseAttributes() +5090073
       System.Xml.XmlTextReaderImpl.ParseElement() +378
       System.Xml.XmlTextReaderImpl.ParseDocumentContent() +429
       System.Xml.XmlLoader.ParsePartialContent(XmlNode parentNode, String innerxmltext, XmlNodeType nt) +253
       System.Xml.XmlLoader.LoadInnerXmlElement(XmlElement node, String innerxmltext) +30
       Microsoft.SharePoint.Administration.SPWebConfigFileChanges.ApplyModificationsWebConfigXmlDocument(XmlDocument xdWebConfig, String filepath) +1813
       Microsoft.SharePoint.Administration.SPWebApplication.ApplyWebConfigModifications() +1455
       Microsoft.SharePoint.Administration.SPWebService.ApplyWebConfigModifications() +550
       ASP._admin_webconfig_aspx.DeleteSelected(Object sender, EventArgs e) +432
       System.Web.UI.WebControls.Button.OnClick(EventArgs e) +115
       System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +140
       System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +29
       System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2981
               
      Event code: 3005
      Event message: 发生了未处理的异常。
      Event time: 2011/3/3 20:51:12
      Event time (UTC): 2011/3/3 12:51:12
      Event ID: 03608a083d2c451fadeefd27ff97d1f8
      Event sequence: 451
      Event occurrence: 1
      Event detail code: 0
      Application information:
      Application domain: /LM/W3SVC/89003312/ROOT-1-129436299874570910
      Trust level: WSS_Minimal
      Application Virtual Path: /
      Application Path: C:\inetpub\wwwroot\wss\VirtualDirectories\10935\
      Machine name: GAS-MOSSC
      Process information:
      Process ID: 6132
      Process name: w3wp.exe
      Account name: GAS\gasmoss
      Exception information:
      Exception type: XmlException
      Exception message: “Session”是一个意外标记。应为空格。 行 1,位置 10662。
      Request information:
      Request URL: http://gas-mossc:2010/_admin/webconfig.aspx
      Request path: /_admin/webconfig.aspx
      User host address: ::1
      User: GAS\gasmoss
      Is authenticated: True
      Authentication Type: NTLM
      Thread account name: GAS\gasmoss
      Thread information:
      Thread ID: 8
      Thread account name: GAS\gasmoss
      Is impersonating: False
      Stack trace: 在 System.Xml.XmlTextReaderImpl.Throw(Exception e)
      在 System.Xml.XmlTextReaderImpl.ParseAttributes()
      在 System.Xml.XmlTextReaderImpl.ParseElement()
      在 System.Xml.XmlTextReaderImpl.ParseDocumentContent()
      在 System.Xml.XmlLoader.ParsePartialContent(XmlNode parentNode, String innerxmltext, XmlNodeType nt)
      在 System.Xml.XmlLoader.LoadInnerXmlElement(XmlElement node, String innerxmltext)
      在 Microsoft.SharePoint.Administration.SPWebConfigFileChanges.ApplyModificationsWebConfigXmlDocument(XmlDocument xdWebConfig, String filepath)
      在 Microsoft.SharePoint.Administration.SPWebApplication.ApplyWebConfigModifications()
      在 Microsoft.SharePoint.Administration.SPWebService.ApplyWebConfigModifications()
      在 ASP._admin_webconfig_aspx.DeleteSelected(Object sender, EventArgs e)
      在 System.Web.UI.WebControls.Button.OnClick(EventArgs e)
      在 System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
      在 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
      在 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
      Custom event details:
  2011-03-08
  发现name与value要对应,不然不会移除,如key对应key ,name对应name


DSC00010.gif DSC00011.gif private const string SPWebConfigModificationOwner = "1d206cbc-2a9c-4177-88c8-f384aceb3d9c";
public override void FeatureActivated(SPFeatureReceiverProperties properties)
{
string name, xpath, value;
SPWebApplication webApp = (properties.Feature.Parent as SPSite).WebApplication;
#region ..: appSettings :..
name = "add[@name='SSOMapProvider']";//此处的@后面的值必须与value里的标识对应,不然RemoveAllModifications无法移除            xpath = "configuration/system.web/siteMap/providers";
value = "<add name='SSOMapProvider' type='gas_SSOMapProvider.SSOMapProvider,gas_SSOMapProvider, Version=1.0.0.0, Culture=neutral, PublicKeyToken=cc8ee07059daf82d' NavigationType='Current' />";
SPWebConfig.ModifyWebConfig(webApp, SPWebConfigModificationOwner, name, xpath, value, SPWebConfigModification.SPWebConfigModificationType.EnsureChildNode);

/* 参?考?
http://didierdanse.net/blogs/dev_en/archive/2009/09/11/sharepoint-how-to-use-spwebconfigmodification-class.aspx
name = "add[@key='KeyName']";
xpath = "configuration/appSettings";
value = "<add key='KeyName' value='Value' />";
ModifyWebConfig(webApp, name, xpath, value, SPWebConfigModification.SPWebConfigModificationType.EnsureChildNode);
*/
#endregion
// 把此段放到调用里,避免用户已经配置的信息丢失                        try
{
webApp.Farm.Services.GetValue<SPWebService>().ApplyWebConfigModifications();
}
catch (Exception ex)
{
SPWebConfig.RemoveAllModifications(webApp, SPWebConfigModificationOwner);
throw ex;
}
}
public override void FeatureDeactivating(SPFeatureReceiverProperties properties)
{
//回?收?后ó删?除y配?置?
SPWebApplication webApp = (properties.Feature.Parent as SPSite).WebApplication;
SPWebConfig.RemoveAllModifications(webApp, SPWebConfigModificationOwner);
try
{
webApp.Farm.Services.GetValue<SPWebService>().ApplyWebConfigModifications();
}
catch (Exception ex)
{
System.Diagnostics.EventLog eventLog = new System.Diagnostics.EventLog();
eventLog.Source = SPWebConfigModificationOwner;
eventLog.WriteEntry(ex.Message);
throw ex;
}
}

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-118132-1-1.html 上篇帖子: SharePoint 2013 对二进制大型对象(BLOB)进行爬网 下篇帖子: SharePoint 2010 权限管理
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表