gpt4 book ai didi

wcf - 从客户端调用 WCF 服务时获取 NullReferenceException

转载 作者:行者123 更新时间:2023-12-01 08:20:32 24 4
gpt4 key购买 nike

我尝试调用的方法具有以下签名:

结果 GetPerformanceData(MyEntity entity, bool recurse);

我在方法的开头设置了一个断点,但是在代码执行到达断点之前抛出了异常。

跟踪 WCF 服务为我提供了以下信息:

System.NullReferenceException,mscorlib,版本=2.0.0.0,文化=中性,PublicKeyToken=b77a5c561934e089
你调用的对象是空的。
堆栈跟踪:
在 System.Runtime.Serialization.CodeGenerator.VerifyParameterCount(MethodInfo methodInfo, Int32 expectedCount)
在 System.Runtime.Serialization.CodeGenerator.Call(Object thisObj, MethodInfo methodInfo, Object param1)
在 ...

如何确定空变量是什么?我已将调试器设置为在所有异常时中断,但对于此特定问题并没有中断。看起来我尝试调用的方法的“实体”参数无法正确反序列化。

示例调用

var 结果 = 客户端。获取性能数据(实体,真);

WCF 服务配置

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.diagnostics>
<sources>
<source name="System.ServiceModel"
switchValue="All"
propagateActivity="true">
<listeners>
<add name="traceListener"
type="System.Diagnostics.XmlWriterTraceListener"
initializeData= "trace.svclog" />
</listeners>
</source>
</sources>
</system.diagnostics>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="basicHttpBindingSettings" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="5242880" maxBufferPoolSize="52428800" maxReceivedMessageSize="5242880"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="64" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
</binding>
</basicHttpBinding>
</bindings>
<services>
<service name="Company.Service.Engine"
behaviorConfiguration="ServiceBehavior">
<host>
<baseAddresses>
<add baseAddress="http://localhost:8000/Engine"/>
</baseAddresses>
</host>
<endpoint address=""
binding="basicHttpBinding"
bindingConfiguration="basicHttpBindingSettings"
contract="Company.Service.IEngine"/>

<endpoint address="mex"
binding="mexHttpBinding"
contract="IMetadataExchange" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="ServiceBehavior">
<serviceMetadata httpGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="True"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>

最佳答案

事实证明,我有一些标记为 [DataMember] 的属性,它们有 getter 但没有 setter。

通常,通过查看服务上的跟踪文件或在客户端项目中添加服务引用时的弹出窗口,我会得到一个描述性错误。这一次我没有。

我不得不搜索 [DataMember] 的所有实例,并一一查看它们以找到缺少 setter 的属性。

关于wcf - 从客户端调用 WCF 服务时获取 NullReferenceException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1095357/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com