0

昨天我完成了我的第一个 Silverlight 应用程序。此应用程序通过实体模型和域服务类与数据库(另一个远程服务器上的 SQL 服务器)进行通信。当我在我的电脑上测试它时,一切正常。所以我首先将该项目部署到本地,然后将其移动到远程服务器。

问题是在此移动到服务器之后,WCF RIA 不与服务器通信(回调引发未找到服务器的错误 - 仅此而已)。

我怎样才能找出这个错误来自哪里;我有点绝望,因为我从未使用过 IIS。我尝试了 Web Deploy 选项,但它无法连接到远程服务器。在我的本地 PC 上,我有 IIS 8 Express,而在我需要移动网站的远程服务器上,网站是 IIS 7(MS Server 2008)。

我的 Web.Config 文件

<configuration>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true">
      <add name="DomainServiceModule" preCondition="managedHandler" type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
    </modules>
    <validation validateIntegratedModeConfiguration="false"/>
  </system.webServer>
  <system.web>
    <httpModules>
      <add name="DomainServiceModule" type="System.ServiceModel.DomainServices.Hosting.DomainServiceHttpModule, System.ServiceModel.DomainServices.Hosting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
    </httpModules>
    <compilation debug="true" targetFramework="4.0">
      <assemblies>
        <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/>
      </assemblies>
    </compilation>
    <httpRuntime/>
  </system.web>
  <connectionStrings>
    <add name="ISPRSWebFormTestEntities" connectionString="metadata=res://*/EntityModel.csdl|res://*/EntityModel.ssdl|res://*/EntityModel.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=sql.fce.cz\\MSSQL2012,1433;initial catalog=testDB;user id=reviewer;password=xxxxxxxxxx;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient"/>
  </connectionStrings>
  <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
  </system.serviceModel>
</configuration>
4

1 回答 1

0

请提供更多错误信息以供诊断。此外,您必须仔细检查以下设置。1. 连接字符串。请确认连接字符串正确并能够连接到远程服务器。2. 网络服务。请尝试在 IE 中访问 svc 文件,确认 Web 服务运行良好。

于 2013-08-16T13:53:57.553 回答