我正在部署一个基本的WCF服务,该服务对数据库执行查询并返回要由VSTO excel插件使用的数据。
在本地运行服务测试时,一切正常,但是一旦addin指向已发布的服务,我就会收到500错误“Bad Data”(这就是返回soap数据包中包含的所有内容)。 / p>
发布端的代码与本地代码相同,我可以通过本地浏览器查看该服务。发布的结束是运行IIS7.0的本地网络上的另一台计算机
客户端配置:
<binding name="zzzServiceBinding" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="10485760" maxBufferPoolSize="524288" maxReceivedMessageSize="10485760"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Ntlm" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
和端点定义:
<endpoint address="http://_EDITED OUT_/zzz/zzzService.svc"
binding="basicHttpBinding" bindingConfiguration="zzzServiceBinding"
contract="zzzService.IzzzService" name="zzzService_Prod" />
<endpoint address="http://localhost:51149/zzzService.svc"
binding="basicHttpBinding" bindingConfiguration="zzzServiceBinding"
contract="zzzService.IzzzService" name="zzzService_Local" />
编辑: 其中一种方法失败了 -
[FaultContract(typeof(Exception))]
public DataTable GetBranchList(DateTime ReportDate)
{
try
{
return zzzLibrary.GetBranchList(ReportDate);
}
catch (Exception ex)
{
throw LogAndThrow(ex);
}
}
protected FaultException LogAndThrow(Exception ex)
{
log.Error("Error in the zzz Service.", ex);
return new FaultException(new FaultReason(ex.Message));
}
图书馆 -
public static DataTable GetBranchList(DateTime ReportDate)
{
DbInstance db = GetDBConnection();
try
{
string SQLText = "zzzschema.usp_zzzGetBranchList";
return db.QueryReturningDataTable(SQLText, CommandType.StoredProcedure, db.CreateParameter("@ReportDate", ReportDate));
}
finally
{
db.Close();
}
}
我知道库例程有效,因为我在单元测试中测试它,并且从本地运行的服务调用时它可以工作。
答案 0 :(得分:0)
删除我服务周围的日志记录层,让我看到了日志层不存在的堆栈跟踪。
原来是配置疏忽 - 堆栈跟踪显示我错过了与存储数据库登录详细信息相关的部署脚本。