从本地主机部署时如何避免切换 WCF 端点 -->服务器?

发布于 2024-10-09 08:42:59 字数 609 浏览 6 评论 0原文

现在我需要不断更改下面的行。是否有一种编程方式来检查我是否在本地运行网站还是在生产环境中运行网站?

我得到的最接近的是这篇文章,但它似乎指的是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

您的好友蓝忘机已上羡 2024-10-16 08:42:59

这是针对 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文