把Silverlight的WCF service配置地址放到web.config中

栏目: ASP.NET · 发布时间: 7年前

内容简介:把Silverlight的WCF service配置地址放到web.config中

如果在Silverlight中使用了WCF service,会生成一个ServiceReferences.ClientConfig配置文件,里面描述了WCF service的地址等信息。最后会放在生成的.xap中,可以用zip软件打开.xap,看到这个文件。

如果开发时的WCF service和部署时的WCF service地址不一样,就需要每次部署时手动修改.xap包中的这个文件,比较麻烦而且容易出错。

一个解决办法是把Service的地址放到web.config中,变成可配置的。然后在调用Siverlight的aspx或者html中通过initParms传给Silvergliht。下面是示例代码:

aspx文件中:

<paramname="initParams"value="wcfServiceUrl=<%=ConfigurationManager.AppSettings["WCFServiceAddress"] %> " />

Silverlight文件初始化WCF Service是不用默认的构造函数,用这种方式:

BasicHttpBinding binding = new BasicHttpBinding(BasicHttpSecurityMode.None);
binding.MaxReceivedMessageSize = int.MaxValue;
binding.MaxBufferSize = int.MaxValue;
ServiceClient sc = new ServiceClient(binding, new EndpointAddress(new Uri(wcfServiceUrl)));

以上所述就是小编给大家介绍的《把Silverlight的WCF service配置地址放到web.config中》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Numerical Recipes 3rd Edition

Numerical Recipes 3rd Edition

William H. Press、Saul A. Teukolsky、William T. Vetterling、Brian P. Flannery / Cambridge University Press / 2007-9-6 / GBP 64.99

Do you want easy access to the latest methods in scientific computing? This greatly expanded third edition of Numerical Recipes has it, with wider coverage than ever before, many new, expanded and upd......一起来看看 《Numerical Recipes 3rd Edition》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

html转js在线工具
html转js在线工具

html转js在线工具