将具有数据库功能的WCF服务部署到IIS
本文关键字:服务部 服务 部署 IIS WCF 数据库 功能 | 更新日期: 2023-09-27 18:13:06
我对WCF的使用很感兴趣。我一直在与部署后使用WCF写入数据库的构造作斗争。我通过android应用程序连接到WCF。
我使用的基本结构是,我用数据库实现WCF,并尝试通过输入IP和路径来ping部署在服务器上的WCF。
在我的WCF中我有两个函数。一个函数返回日期,另一个函数使用LINQ写入数据库。当我运行必须通过http://10.0.0.14/jonts/WCFService.svc/date
在android浏览器上返回日期的函数时,我得到一个响应,没有问题。当我运行函数通过http://10.0.0.14/jonts/WCFService.svc/write
写入数据库时,问题出现了,我得到了一个400错误。但是当我从主机上运行http://localhost:58632/WCFService.svc/write
时,它会写入数据库。
我认为这是由于我的。conf文件中的连接字符串引起的。
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</assemblies>
</compilation>
</system.web>
<system.serviceModel>
<services>
<service name="WCF_Connection.WCFService">
<endpoint address="" behaviorConfiguration="restfulBehavior"
binding="webHttpBinding" bindingConfiguration="" contract="WCF_Connection.IWCFService" />
<host>
<baseAddresses>
<add baseAddress="http://10.0.0.14/bookservice" />
</baseAddresses>
</host>
</service>
</services>
<behaviors>
<endpointBehaviors>
<behavior name="restfulBehavior">
<webHttp />
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true" />
</system.webServer>
<connectionStrings>
<add name="SampleDbEntities" connectionString="metadata=res://*/BooksModel.csdl|res://*/BooksModel.ssdl|res://*/BooksModel.msl;provider=System.Data.SqlClient;provider connection string="Data Source=.'SQLEXPRESS;AttachDbFilename=|DataDirectory|'SampleDb.mdf;Integrated Security=True;User Instance=True;MultipleActiveResultSets=True""
providerName="System.Data.EntityClient" />
<add name="jarvisConnectionString" connectionString="Data Source=(LocalDB)'v11.0;AttachDbFilename=|DataDirectory|'jarvis.mdf;Integrated Security=True"
providerName="System.Data.SqlClient" />
</connectionStrings>
</configuration>
IP为10.0.0.14的服务器正在运行SQL server Developer 2012.
1)Is it my connection string causing this error?
2)How can I fix this?
1)你在连接字符串中使用集成安全选项,所以你应该检查IIS中为你的wcf应用程序提供服务的appool是在有权限连接数据库和执行查询的Windows用户下运行的。或者考虑使用login/password来指定sql server登录(在这种情况下,sql server应该安装混合安全模式)。
2)使用跟踪来确定服务器上的实际WCF错误。或改变<serviceDebug includeExceptionDetailInFaults="false" />
<serviceDebug includeExceptionDetailInFaults="true" />