我有一台带有WCF客户端的开发机器,现在开发完成了
我想切换到生产
所以我得到了生产服务器的WSDL链接(相同的服务,不同的链接)
为了切换到制作,我需要在Web配置版本中进行哪些更改?
由于
修改
还有一件事,当我导入开发WSDL时,我在配置中得到了这个,我如何为生产创建一个?
<identity>
<certificate encodedValue="AwAAAAEAAAAUAAAAiMP2hRL597Js3Czdjo....." />
</identity>
答案 0 :(得分:5)
要找到prod WSDL和DEV WSDL之间的区别,您需要使用svcutil。
打开visual studio命令提示符,然后运行:
svcutil http://prod/service.svc
它将为您提供“output.config”的位置。打开它,看看差异。
部署的最佳做法是使用Microsoft在Visual Studio 2010中内置的 Web.Config Transformations 。详细信息:http://msdn.microsoft.com/en-us/library/dd465318.aspx
基本步骤是:
以下是替换端点配置区域的web.release.config示例。注意 xdt:Transform =“Replace”,它取代了整个客户端节点。
<?xml version="1.0"?>
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<system.serviceModel>
<client xdt:Transform="Replace">
<endpoint address="http://prod/service.svc/binary" binding="customBinding" behaviorConfiguration="LargeGraphBehavior"
bindingConfiguration="BinaryHttpBinding" contract="CustomerService.ICustomer"
name="BasicHttpBinding_ICustomer">
<identity>
<certificate encodedValue="AwAAAAEAAAAUAAAAiMP2hRL597Js3Czdjo....." />
</identity>
</endpoint>
</client>
</system.serviceModel>
</configuration>