我是写问题的新手,长期读者。如果我遗漏了什么,请告诉我。
我查看了许多不同的方案和可能的修复程序,但无法让我的 WCF 服务正常工作。
我的服务负责将来自许多不同集合的数据传递到主存储库。客户端在本地集合级别收集数据并将其传递给插入数据并传回结果消息的服务。再次在测试环境中,这正常工作。
在生产中,我将服务添加到异地服务器并在远程集上配置客户端。客户端能够配置和接收来自服务的更新。到目前为止,一切正常。但是,一旦客户端尝试通过它传输数据,就会收到以下错误“对象引用未设置为对象的实例”。
通过错误检查,我确认数据库没有连接字符串问题。我在我的测试环境中再次运行相同的数据传输,没有任何问题。我能够连接到本地集上的 .svc url。
我通过数据契约方法调用在不同点添加了日志记录,这些日志都没有触发任何结果。我还在测试应用程序上测试了写入功能,确认写入临时文件夹的凭据没有问题。例如:
public Result InsertVenueRecord(Venue v)
{
System.IO.File.WriteAllText(@"C:\temp\MadeItToVenue" + DateTime.Now.Ticks.ToString() + ".log.txt", "insertVenue()\r\n\r\n");
int oldId = v.VenueId;
try
{
System.IO.File.WriteAllText(@"C:\temp\MadeItToVenue" + DateTime.Now.Ticks.ToString() + ".log.txt", "insertVenue()\r\n\r\n");
//Check Address
if (v.Address.AddressId != 0)
客户端 app.Config 如下所示:
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_placeholder" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="Removed" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_placeholder" contract="placeholder.placeholder"
name="BasicHttpBinding_placeholder" />
</client>
</system.serviceModel>
<appSettings>
<add key="DTFirstWave" value="Venue|Event|EventSurveyLocation|Agent|LoginHistory|LoginUsed"/>
</appSettings>
<connectionStrings>
<!-- Removed Connection Strings -->
</connectionStrings>
</configuration>
服务 webconfig 如下所示:
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0"/>
<httpRuntime/>
</system.web>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding allowCookies="true" maxBufferPoolSize="2147483647" maxBufferSize="2147483647" maxReceivedMessageSize="2147483647">
<readerQuotas maxDepth="32" maxStringContentLength="52428800" maxArrayLength="52428800" maxBytesPerRead="52428800" maxNameTableCharCount="52428800"/>
</binding>
</basicHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the values below to false before deployment -->
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
<serviceDebug includeExceptionDetailInFaults="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
<protocolMapping>
<add binding="basicHttpsBinding" scheme="https"/>
</protocolMapping>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
<directoryBrowse enabled="true"/>
</system.webServer>
<connectionStrings>
<!--Removed -->
</connectionStrings>
</configuration>
我不知道为什么这不起作用。