SetImGroup 操作
查找有关 SetImGroup EWS 操作的信息。
SetImGroup 操作更改即时消息 (即时消息) 组的显示名称。
Exchange Server 2013 中引入了此操作。
使用 SetImGroup 操作
SetImGroup 操作仅采用单个显示名称参数。
SetImGroup 操作 SOAP 标头
SetImGroup 操作可以使用下表中列出的 SOAP 标头。
标头名称 | 元素 | 说明 |
---|---|---|
模拟 |
ExchangeImpersonation |
标识客户端应用程序正在模拟的用户。 此标头适用于请求。 |
MailboxCulture |
MailboxCulture |
标识要用于访问邮箱的区域性,如 RFC 3066“标识语言标记”中所述。 此标头适用于请求。 |
RequestVersion |
RequestServerVersion |
标识操作请求的架构版本。 此标头适用于请求。 |
ServerVersion |
ServerVersionInfo |
标识响应请求的服务器版本。 此标头适用于响应。 |
SetImGroup 操作请求示例
以下 SetImGroup 操作请求示例演示如何将 IM 组显示名称更改为“MyNewGroupName”。
注意
Exchange 存储标识符已缩短,以保持可读性。
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages">
<soap:Header>
<t:RequestServerVersion Version="Exchange2013" />
<t:MailboxCulture>en-US</t:MailboxCulture>
</soap:Header>
<soap:Body >
<m:SetImGroup>
<m:GroupId Id="AAMkAGQ1MjJjMTBkQoTbWAAAAAAQRAAA="
ChangeKey="EgAAAA=="/>
<m:NewDisplayName>MyNewGroupName</m:NewDisplayName>
</m:SetImGroup>
</soap:Body>
</soap:Envelope>
请求 SOAP 正文包含以下元素:
成功的 SetImGroup 操作响应
以下示例显示了 对 SetImGroup 操作请求的成功响应。
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="15"
MinorVersion="0"
MajorBuildNumber="349"
MinorBuildNumber="0"
Version="Exchange2013"
xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SetImGroupResponse ResponseClass="Success"
xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<ResponseCode>NoError</ResponseCode>
</SetImGroupResponse>
</s:Body>
</s:Envelope>
响应 SOAP 正文包含以下元素:
SetImGroup 操作错误响应
以下示例显示了 对 SetImGroup 操作请求的错误响应。 尝试将组显示名称更改为现有组显示名称时,会发生以下错误响应。
<?xml version="1.0" encoding="utf-8"?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="15"
MinorVersion="0"
MajorBuildNumber="349"
MinorBuildNumber="0"
Version="Exchange2013"
xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SetImGroupResponse ResponseClass="Error"
xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<MessageText>An IM group with the specified display name already exists.</MessageText>
<ResponseCode>ErrorImGroupDisplayNameAlreadyExists</ResponseCode>
<DescriptiveLinkKey>0</DescriptiveLinkKey>
</SetImGroupResponse>
</s:Body>
</s:Envelope>
错误响应 SOAP 正文包含以下元素:
有关 EWS 通用且特定于此操作的其他错误代码,请参阅 ResponseCode。