Microsoft Dynamics CRM 4.0 용 SOAP API로 작업하고 있으며 대부분 모든 것이 작동하지만 데이터베이스의 총 연락처 수를 계산하려고 할 때 특정 쿼리의 경우), TotalRecordCount = true 플래그를 준수하지 않습니다.Microsoft Dynamics SOAP RetrieveMultiple 반환하지 않음 TotalRecordCount
TotalRecordCount="-1" TotalRecordCountLimitExceeded="0"
내가 뭘 어떤 생각 : 난 아직도 다시 받고 있어요하면 다음이 포함되어 있는지
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Header>
<CrmAuthenticationToken xmlns="http://schemas.microsoft.com/crm/2007/WebServices">
...
</CrmAuthenticationToken>
</soap:Header>
<soap:Body>
<RetrieveMultiple xmlns="http://schemas.microsoft.com/crm/2007/WebServices">
<query xmlns:q1="http://schemas.microsoft.com/crm/2006/Query" xsi:type="q1:QueryExpression">
<q1:EntityName>contact</q1:EntityName>
<q1:Distinct>true</q1:Distinct>
<q1:PageInfo>
<q1:ReturnTotalRecordCount>true</q1:ReturnTotalRecordCount>
<q1:PageNumber>1</q1:PageNumber>
<q1:Count>1</q1:Count>
</q1:PageInfo>
</query>
</RetrieveMultiple>
</soap:Body>
</soap:Envelope>
그러나 응답 : 여기
는 SOAP 내가 사용 요청입니다 잘못되었거나 누락 되었습니까?