1

我在本地使用 Dynamics CRM 2011。

几天前报告工作正常。今天他们没有。

我收到此错误:“ The report cannot be displayed. (rsProcessingAborted)

在此处输入图像描述

我刚刚运行了一个带有警告级别跟踪的报告,并记录了这一点:

[2013-07-09 14:10:50.099] Process:CrmAsyncService |Organization:00000000-0000-0000-0000-000000000000 |Thread:  102 |Category: Sandbox.LoadBalancer |User: 00000000-0000-0000-0000-000000000000 |Level: Warning |ReqId: 0792ea86-fee7-4f86-b38a-00b5cf68cf57 | SandboxHostManager.PingSingleClient  ilOffset = 0xB8
>ping: exception: SRV-CRM02: System.ServiceModel.EndpointNotFoundException: There was no endpoint listening at net.tcp://srv-crm02/CrmSandboxHost that could accept the message. This is often caused by an incorrect address or SOAP action. See InnerException, if present, for more details.
[2013-07-09 14:10:50.512] Process:CrmAsyncService |Organization:00000000-0000-0000-0000-000000000000 |Thread:  102 |Category: Sandbox |User: 00000000-0000-0000-0000-000000000000 |Level: Warning |ReqId: 0792ea86-fee7-4f86-b38a-00b5cf68cf57 | SandboxClientBase`1.Stop  ilOffset = 0xD
>System.ServiceModel.CommunicationObjectFaultedException: The communication object, System.ServiceModel.Channels.ServiceChannel, cannot be used for communication because it is in the Faulted state.

Server stack trace: 
   at System.ServiceModel.Channels.CommunicationObject.Close(TimeSpan timeout)

Exception rethrown at [0]: 
   at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
   at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
   at System.ServiceModel.ICommunicationObject.Close()
   at Microsoft.Crm.Sandbox.SandboxClientBase`1.Stop()

这在报告服务日志中:http: //pastebin.com/qm8FLzrn

4

2 回答 2

0

通过从 SPN 中删除端口来修复。

感谢微软的 Alen。

于 2013-07-10T15:47:09.230 回答
0

我将在我的特定情况下说明我是如何解决它的。我遇到了同样的错误,但有以下前提条件: - 在测试环境中工作的自定义报告,但在生产环境中不起作用。- 所有其他报告都有效。- CRM 365 在线。

在我的例子中,我有一个获取查询值的参数,并且该参数的 Value 字段没有正确指向该查询返回的 value 字段。

在此处输入图像描述

正如您在屏幕截图中看到的,我必须将指向值字段更改为“countValue”(以前它是下拉列表中的“count”)。

以下是 DataSet 的字段: 在此处输入图像描述

我无法理解的是为什么它在其他环境中工作......

于 2019-09-09T10:47:20.790 回答