无法访问远程服务器上的数据库

发布于 2024-11-02 08:09:18 字数 257 浏览 6 评论 0原文

我是新手,所以请耐心等待。我有一个位于远程服务器上的 SQL Server 数据库。在 Visual Studio 2010 中,我能够创建一个实体数据模型(其中包含用户凭据,因此设计了远程数据库架构)和一个简单的 WCF 服务。在本地主机中,我能够获取和检索数据。但是,在发布 ASP.NET 项目后,我注意到我无法查询同一个数据库。数据库和应用程序文件现在位于同一服务器上。

本地环境可以查询远程服务器但部署的应用程序不能查询的原因可能是什么?我需要重新配置数据模型还是其他什么?

I am a newbie, so bear with me. I have a SQL Server database located on a remote server. In Visual Studio 2010, I was able to create an entity data model (which contained user credentials so it designed remote database schema) and a simple WCF service. In localhost, I was able to fetch and retrieve data. But, after I published the ASP.NET project, I noticed that I can't query the same database. Both the database and the application files are now on the same server.

What could be the reason as to why the local environment can query the remote server but the deployed app can't? Do I need to reconfigure the data model or something else?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

追我者格杀勿论 2024-11-09 08:09:18

检查 web.config 中的连接字符串是否有以下内容:

  • 用户 ID 和密码>他们满了吗?
  • 数据来源>这是否指向服务器?

检查错误消息。 WCF 服务返回什么消息?

Silverlight 跨域访问文件。

创建一个新的文本文件并将其命名为 clientaccesspolicy.xml 并将其放入 Web 项目的根目录中。

文件内容:
(这允许所有人,必须进行调整:D)

<?xml version="1.0" encoding="utf-8"?>
<access-policy>
  <cross-domain-access>
    <policy>
      <allow-from http-request-headers="*">
        <domain uri="*"/>
      </allow-from>
      <grant-to>
        <resource path="/" include-subpaths="true"/>
      </grant-to>
    </policy>
  </cross-domain-access>
</access-policy>

Check the connectionstring placed in the web.config for the following:

  • userid and password> Are they filled?
  • data source> Does this point to the server?

Check the error messages. What message does the WCF service return?

Silverlight crossdomain access file.

Create a new textfile and name it clientaccesspolicy.xml and put it in the root of your webproject.

File content:
(This allowed all and everyone, must be tweaked off course :D)

<?xml version="1.0" encoding="utf-8"?>
<access-policy>
  <cross-domain-access>
    <policy>
      <allow-from http-request-headers="*">
        <domain uri="*"/>
      </allow-from>
      <grant-to>
        <resource path="/" include-subpaths="true"/>
      </grant-to>
    </policy>
  </cross-domain-access>
</access-policy>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文