Iniciar sessão com a Microsoft
Iniciar sessão ou criar uma conta.
Olá,
Selecione uma conta diferente.
Tem várias contas
Selecione a conta com a qual pretende iniciar sessão.
Inglês
Pedimos desculpa, mas este artigo não está disponível no seu idioma.

Symptoms

The organizer of a meeting receives multiple meeting responses from an attendee. An analysis of the IIS logs shows multiple MeetingResponse commands from the user's device. These commands resemble the following:

2015-11-18 13:48:57 10.0.1.161 POST /Microsoft-Server-ActiveSync/Proxy/default.eas User=jmartin@contoso.com
&DeviceId=VBHDCRCR131BJBUID1MNRQNNIG&DeviceType=iPhone&Cmd=MeetingResponse&Log=PrxFrom:10.0.1.161_V160_Ver1:160
_HH:eas.contoso.com_SmtpAdrs:jmartin%40contoso.com_Fet:6014_Pk:4016830080_DevOS:iOS+9.2+13C71_As:AllowedG
_Mbx:CLT-E16-MBX1.contoso.com_Throttle:0

Cause

This issue occurs because the attendee responded to an instance of a recurring meeting by using an iOS 9.x device. The device does not correctly parse the response from the server that is running Exchange Server. Therefore, the server continues to send the meeting response.

More information

Note: The information in this article that is related to analyzing IIS logs applies only to customers who are using Exchange on-premises. It does not apply to Exchange Online customers because they cannot access their IIS logs. For Exchange Online, we highly recommend that you make sure that all users who have iOS devices are using the latest available version of the operating system.


You can use the following Log Parser Studio query to identify users who are affected by this issue:

/* Query to find MeetingResponse commands by user device */
SELECT COUNT(*) As Hits,
EXTRACT_VALUE(cs-uri-query,'DeviceType') AS DeviceType,
EXTRACT_VALUE(cs-uri-query,'DeviceId') AS DeviceId,
REPLACE_STR(TO_STRING(EXTRACT_PREFIX(EXTRACT_SUFFIX(cs-uri-query, 0, '_SmtpAdrs:'), 0, '_')), '%40', '@') As User,
EXTRACT_VALUE(cs-uri-query,'Cmd') AS Cmd
FROM '[LOGFILEPATH]' 
WHERE cs-uri-stem LIKE '%Active%' AND Cmd LIKE '%MeetingResponse%'
GROUP BY DeviceType,DeviceId,Cmd,User
ORDER BY Hits DESC 

Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.

Precisa de mais ajuda?

Quer mais opções?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Estas informações foram úteis?

O que afetou a sua experiência?
Ao selecionar submeter, o seu feedback será utilizado para melhorar os produtos e serviços da Microsoft. O seu administrador de TI poderá recolher estes dados. Declaração de Privacidade.

Obrigado pelo seu feedback!

×