我目前正在尝试将Url添加到我的SharePoint 2010服务器场的Web.config的外部Web服务。当我尝试这样做时,我收到一条错误,指出我错过了web.config的连接字符串部分。
查看我正在使用的代码,我的印象是代码无法放置Web.Config的连接字符串部分。
当我尝试这样做时,我得到:“无法将web.config修改应用于Web应用程序'2962b355-80e1-4183-a958-d4120a94741d'。无法将web.config修改应用于文件'C: \ inetpub \ wwwroot \ wss \ VirtualDirectories \ 80 \ web.config'。无法将web.config修改应用于文件'C:\ inetpub \ wwwroot \ wss \ VirtualDirectories \ 80 \ web.config'。指定的节点“配置在web.config文件中找不到/ connectionStrings。无法将web.config修改应用于Web应用程序'6fe60f19-9f96-4efb-ba99-a2789354950a'。无法将web.config修改应用于文件'C:\ inetpub \ wwwroot \ wss \ VirtualDirectories \ 81 \ web.config'。无法对文件'C:\ inetpub \ wwwroot \ wss \ VirtualDirectories \ 81 \ web.config'应用web.config修改。指定的节点“configuration / connectionStrings”在web.config文件中找不到。“
我宁愿不必手动修改web.config文件以简化.wsp文件的安装。
public string Create(string url)
{
var spWebService = SPWebService.ContentService;
// Define the modification(s) to the web.config
var modification1 = new SPWebConfigModification
{
Path = "configuration",
Name = "connectionStrings",
Sequence = 100,
Owner = Owner,
Value = " < connectionStrings > < /connectionStrings > ",
Type = SPWebConfigModification.SPWebConfigModificationType.EnsureChildNode
};
var modification2 = new SPWebConfigModification
{
Path = "configuration/connectionStrings",
Name = string.Format("add[@name='{0}']", KeyName),
Sequence = 100,
Owner = Owner,
Value = url,
Type = SPWebConfigModification.SPWebConfigModificationType.EnsureChildNode
};
// Register the Web.config modification with the web service
spWebService.WebConfigModifications.Add(modification1);
spWebService.WebConfigModifications.Add(modification2);
// Propagate those changes across the farm
spWebService.Update();
spWebService.ApplyWebConfigModifications();
// Set the Url globally
_webServiceUrl = url;
return _webServiceUrl;
}
更新!
将第二次web.config修改更改为Ensure部分修复了我的初始问题。但是,现在当我尝试运行代码时,我得到了:
The '[' character, hexadecimal value 0x5B, cannot be included in a name. Line 1, position 5.
第二次更新
我最终放弃了将配置存储在Web.Config中的想法。我反而选择使用SPFarm's Property Bag.在几分钟内启动并运行该实现。谢谢你的帮助!
答案 0 :(得分:1)
我认为当您添加connectionStrings
部分(modification1
)时,您需要使用EnsureSection而不是SPWebConfigModification.SPWebConfigModificationType.EnsureChildNode