从本地主机部署时如何避免切换 WCF 端点 -->服务器?
现在我需要不断更改下面的行。是否有一种编程方式来检查我是否在本地运行网站还是在生产环境中运行网站?
我得到的最接近的是这篇文章,但它似乎指的是 Silverlight,而我只是从 asp.net 站点调用。
Silverlight 应用程序无法访问其他计算机上的 WCF 服务< /a>
<client>
<endpoint address="http://www.punkoutersoftware.com/Service1.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IService1"
contract="ServiceReference1.IService1" name="BasicHttpBinding_IService1" />
</client>
Right now I need to keep changing the line below. Is there a programmatic way to check if I am running the site locally vs. on production ?
The closest I got was this post but it seems to be referring to Silverlight and I am just calling from an asp.net site.
Silverlight application cannot accesss WCF services on other machines
<client>
<endpoint address="http://www.punkoutersoftware.com/Service1.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IService1"
contract="ServiceReference1.IService1" name="BasicHttpBinding_IService1" />
</client>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是针对 ASP.NET 应用程序的吗?如果是这样,请考虑使用 VS2010 的 Web.config 转换,它可以改变您的web.config 基于您的构建类型(发布、调试等)。
这里有一个更好的介绍教程
Is this for an ASP.NET application? If so, consider using VS2010's Web.config Transformation, which can alter your web.config based on your build type (Release, Debug, etc).
Here's a better introductory tutorial
这里介绍了非常类似的情况:如何以编程方式修改WCF app.config端点地址设置?
A very similar situation is covered here: How to programmatically modify WCF app.config endpoint address setting?