我有一个使用WCF服务的SharePoint Web部件。为了能够在我的Web部件中使用Web服务,我需要修改SharePoint web.config以包含绑定和端点。
最好的方法是什么?
答案 0 :(得分:1)
这非常有用但是错过了一点。虽然可以部署代码,但由于未分配名称,因此无法撤消代码。
使用:
modification.Name = "bindings";
另外,虽然说这是绑定,但如果已经有设置,你(可能)仍然无法应用设置:
serviceHostingEnvironment aspNetCompatibilityEnabled="true"
...在system.serviceModel
我已经使用该技术插入绑定,然后客户端点被单独插入,因为它可以根据安装而改变,在我的情况下是通过sharepoint列表条目设置的。
答案 1 :(得分:0)
为了能够做到这一点,我将我的Web服务配置作为模板放入文本文件中。文本文件(BindingTemplate.txt)内容如下:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_AuthenticationInterface" closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered" useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None" realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://{0}/MyWebService/AuthenticationService.svc" binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_AuthenticationInterface" contract="AuthenticationService.AuthenticationInterface" name="BasicHttpBinding_AuthenticationInterface" />
</client>
我使用C#代码来修改web.config:
string content;
string WebServiceServer = "example.com"; // <=== your host-name here
using (TextReader tr = File.OpenText(bindingFilePath))
{
content = String.Format(tr.ReadToEnd(), WebServiceServer);
}
SPWebConfigModification modification = new SPWebConfigModification("system.serviceModel", "configuration");
modification.Value = content;
modification.Sequence = 0;
modification.Type =SPWebConfigModification.SPWebConfigModificationType.EnsureChildNode;
modification.Owner = OWNER_CONSTANT;
webApp.WebConfigModifications.Add(modification);
我花了一些时间搞清楚。希望这会对某人有所帮助。