- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到的问题是使用 Outlook FormRegion 创建的 Outlook 约会的 GlobalAppointmentID 与使用 EWS 托管 API 时的 ItemID 不同。
我正在创建一个 Outlook 插件,允许用户将客户和项目信息添加到 session 中。插件还将约会 ID 和 session 数据存储在数据库中,并且服务将定期检查 ID 以更新约会数据。
好的,这就是我使用插件的方式:
Outlook.AppointmentItem appointement = (Outlook.AppointmentItem)this.OutlookItem;
appointement.Save();
string ExchangeID = appointement.GlobalAppointmentID;
最佳答案
ID 可以用不同的方式表示。 Outlook 使用第一种形式,EWS 使用第二种形式。
要转换,请使用 ConvertID方法。
以下是原始 SOAP 格式的示例请求/响应调用(通过这些示例,您应该能够使用 API 实现它们):
Outlook HexEntryID 到 Exchange EWSID
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:mes="http://schemas.microsoft.com/exchange/services/2006/messages">
<soapenv:Header>
<typ:RequestServerVersion Version="Exchange2007_SP1"/>
<typ:MailboxCulture>en-US</typ:MailboxCulture>
</soapenv:Header>
<soapenv:Body>
<mes:ConvertId DestinationFormat="EwsId">
<mes:SourceIds>
<typ:AlternateId Format="HexEntryId" Id="0000000068C940C[snip]63136C3D0000" Mailbox="user@domain.com"/>
</mes:SourceIds>
</mes:ConvertId>
</soapenv:Body>
</soapenv:Envelope>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="14" MinorVersion="0" MajorBuildNumber="722" MinorBuildNumber="0" Version="Exchange2010" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"/>
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<m:ConvertIdResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<m:ResponseMessages>
<m:ConvertIdResponseMessage ResponseClass="Success">
<m:ResponseCode>NoError</m:ResponseCode>
<m:AlternateId xsi:type="t:AlternateIdType" Format="EwsId" Id="AQMkADkyZTQxNjUzL[snip]YxNsPQAAAA==" Mailbox="user@domain.com"/>
</m:ConvertIdResponseMessage>
</m:ResponseMessages>
</m:ConvertIdResponse>
</s:Body>
</s:Envelope>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:mes="http://schemas.microsoft.com/exchange/services/2006/messages">
<soapenv:Header>
<typ:RequestServerVersion Version="Exchange2007_SP1"/>
</soapenv:Header>
<soapenv:Body>
<mes:ConvertId DestinationFormat="HexEntryId">
<mes:SourceIds>
<typ:AlternateId Format="EwsId" Id="AQMkADkyZTQxNjUzLTcwZTQtNGRlNS04M2VmLWMxYmIBNWJi[snip]YxNsPQAAAA==" Mailbox="user@domain.com"/>
</mes:SourceIds>
</mes:ConvertId>
</soapenv:Body>
</soapenv:Envelope>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="14" MinorVersion="0" MajorBuildNumber="722" MinorBuildNumber="0" Version="Exchange2010" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"/>
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<m:ConvertIdResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<m:ResponseMessages>
<m:ConvertIdResponseMessage ResponseClass="Success">
<m:ResponseCode>NoError</m:ResponseCode>
<m:AlternateId xsi:type="t:AlternateIdType" Format="HexEntryId" Id="0000000068C940[snip]136C3D0000" Mailbox="user@domain.com"/>
</m:ConvertIdResponseMessage>
</m:ResponseMessages>
</m:ConvertIdResponse>
</s:Body>
</s:Envelope>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="14" MinorVersion="0" MajorBuildNumber="722" MinorBuildNumber="0" Version="Exchange2010" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"/>
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<m:FindItemResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<m:ResponseMessages>
<m:FindItemResponseMessage ResponseClass="Success">
<m:ResponseCode>NoError</m:ResponseCode>
<m:RootFolder TotalItemsInView="10" IncludesLastItemInRange="true">
<t:Items>
<t:CalendarItem>
<t:ItemId Id="AAMkADkyZTQxNjUzLTcwZTQtNGRlNS04M2VmLWMxYmJiNWJiNTBlNgFRAAgI0B8WRv2AAEYAAAAAgq3iY5OVdkmtnHS/lxCbwgcAhKYXWHH/akCFAFNVQGZiCgAAAAAAIQAAhKYXWHH/akCFAFNVQGZiCgACKa9YrQAAEA==" ChangeKey="DwAAABYAAACEphdYcf9qQIUAU1VAZmIKAAIpr2i3"/>
<t:ItemClass>IPM.Appointment.Occurrence</t:ItemClass>
<t:Subject>Recurring appointment with one exception</t:Subject>
<t:Sensitivity>Normal</t:Sensitivity>
<t:DateTimeCreated>2013-05-22T06:51:26Z</t:DateTimeCreated>
<t:LastModifiedTime>2013-05-22T06:52:20Z</t:LastModifiedTime>
<t:Start>2013-05-15T10:30:00Z</t:Start>
<t:End>2013-05-15T11:00:00Z</t:End>
<t:IsRecurring>true</t:IsRecurring>
<t:CalendarItemType>Occurrence</t:CalendarItemType>
</t:CalendarItem>
<t:CalendarItem>
<t:ItemId Id="AAMkADkyZTQxNjUzLTcwZTQtNGRlNS04M2VmLWMxYmJiNWJiNTBlNgFRAAgI0B/fcWdAAEYAAAAAgq3iY5OVdkmtnHS/lxCbwgcAhKYXWHH/akCFAFNVQGZiCgAAAAAAIQAAhKYXWHH/akCFAFNVQGZiCgACKa9YrQAAEA==" ChangeKey="DwAAABYAAACEphdYcf9qQIUAU1VAZmIKAAIpr2i3"/>
<t:ItemClass>IPM.OLE.CLASS.{00061055-0000-0000-C000-000000000046}</t:ItemClass>
<t:Subject>The exception</t:Subject>
<t:Sensitivity>Normal</t:Sensitivity>
<t:DateTimeCreated>2013-05-22T06:51:58Z</t:DateTimeCreated>
<t:LastModifiedTime>2013-05-22T06:52:20Z</t:LastModifiedTime>
<t:Start>2013-05-16T12:00:00Z</t:Start>
<t:End>2013-05-16T12:30:00Z</t:End>
<t:IsRecurring>true</t:IsRecurring>
<t:CalendarItemType>Exception</t:CalendarItemType>
</t:CalendarItem>
[snip]
Other occurrences removed
[snip]
</t:Items>
</m:RootFolder>
</m:FindItemResponseMessage>
</m:ResponseMessages>
</m:FindItemResponse>
</s:Body>
</s:Envelope>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="14" MinorVersion="0" MajorBuildNumber="722" MinorBuildNumber="0" Version="Exchange2010" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"/>
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<m:ConvertIdResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<m:ResponseMessages>
<m:ConvertIdResponseMessage ResponseClass="Success">
<m:ResponseCode>NoError</m:ResponseCode>
<m:AlternateId xsi:type="t:AlternateIdType" Format="HexEntryId" Id="0000000082ADE26393957649AD9C74BF97109BC2070084A6175871FF6A40850053554066620A000000000021000084A6175871FF6A40850053554066620A000229AF58AD0000" Mailbox="user@domain.com"/>
</m:ConvertIdResponseMessage>
</m:ResponseMessages>
</m:ConvertIdResponse>
</s:Body>
</s:Envelope>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Header>
<h:ServerVersionInfo MajorVersion="14" MinorVersion="0" MajorBuildNumber="722" MinorBuildNumber="0" Version="Exchange2010" xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"/>
</s:Header>
<s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<m:ConvertIdResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
<m:ResponseMessages>
<m:ConvertIdResponseMessage ResponseClass="Success">
<m:ResponseCode>NoError</m:ResponseCode>
<m:AlternateId xsi:type="t:AlternateIdType" Format="HexEntryId" Id="0000000082ADE26393957649AD9C74BF97109BC2070084A6175871FF6A40850053554066620A000000000021000084A6175871FF6A40850053554066620A000229AF58AD0000" Mailbox="user@domain.com"/>
</m:ConvertIdResponseMessage>
</m:ResponseMessages>
</m:ConvertIdResponse>
</s:Body>
</s:Envelope>
关于outlook - Exchange ItemID 与 Outlook AddIn 的 GlobalAppointmentID 不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16665289/
我希望通过在变量名称前使用冒号来在路由中包含参数 // dynamic pages for each ITEM, once selected // from $routeParams.itemID i
第一篇文章在这里;) 我需要一些帮助,我正在开发一个约会加载项,但我无法获取当前项目的 itemID。我正在使用 mac os outllok dekstop 客户端(最新版本),我尝试使用: var
我是 Sitecore 新手,对此有一个基本问题。当我创建 Sitecore 项目时,会为此项目创建唯一 ID。如果我在代码中使用此项目 ID 来保存对其的引用,可以吗?从部署到部署这会发生变化吗?
我正在阅读该文档,它指出以 的形式设置别名 'widget.xxx.yyy' 然后 xtype 将自动设置为 'xxx.yyy' 我遇到的问题是我设置了别名和 itemId。看来 item
我如何全局定义(条形码扫描)以便我的所有功能都可以访问它。换句话说,我如何全局定义“metadataObj”? class ScanController: UIViewController, AVCa
我有一个通过 XML 资源定义的菜单。现在我动态地添加一个菜单项 public boolean onCreateOptionsMenu(Menu menu) { MenuInflater in
好的,所以当有人从我的网站购买商品时,需要将该商品 ID 插入数据库,但由于某种原因没有插入。 $mysql_host = 'localhost'; //Leave at localhost $my
在类定义(而不是实例化)上配置 itemId 是一种不好的做法吗? 是否有一些官方文档支持它,或者它只是一个意见问题? 或者,也许我缺少一些逻辑,可以清楚地表明这是一种不好的做法。 Ext.defin
我有一个如下所示的数据框: userid itemid score 1 5 4 2 3 10 1 5 20 2
我拥有一个 DDD/CQRS 应用程序。 我的问题涉及通过 POST(Rest)处理项目创建。 CQRS(基于CQS原则)提倡命令不应该返回值。 那里有查询。 所以我想知道如何处理项目创建的用例。 这
EWS 文档表示,要发送消息并将副本保存到“已发送邮件”文件夹,您应该 use the CreateItem operation with a MessageDisposition value of
我有一个自定义的 sitecore 按钮,它可以更改当前项目的模板,非常简单。 但是,作为其中的一部分,我还尝试将旧布局的渲染迁移到新布局,如果它属于 ItemId 的某个子布局类型| .然而Item
public class ListsSQLiteOpenHelper extends SQLiteOpenHelper { public static final int VERSION = 1; p
我想得到 ItemID From any product url on Amazon for ex. : http://www.amazon.com/gp/product/B0140RDK8W/ref
我在基于 Sencha Touch 2 的应用程序中工作,我有不同的按钮,可能会有不同的徽章文本。我当前在 View 中的代码是: items: [ {
示例 HTML: 示例 CSS: #MenuContainer { /* Styles */ } 如何使用 CSS 来定位 ItemID 而不是常规的 ID? 最佳答案 使用这个代替#Menu
我正在尝试查询vidispine用于一组项目的作业。问题是itemId保存在作业的元数据中。 Filtering over job's metadata是可能的,但我找不到有关一些更高级的过滤器标准及
我目前有一个 Excel 文件,其中一列用于 ItemID,一列用于 ItemName,采用这种样式: ItemID, ItemName 2, Apple 4, Orange 5, Pear 6, B
我有一个这样的窗口类: Ext.define('EMS.tf.alerts.alerts.view.AlertWindow', { extend: 'Ext.window.Window',
我正在尝试摆弄 SenchaCmd 6 在执行 sencha 应用程序生成 时生成的库存应用程序,并且我在侧面菜单选项卡上添加点击事件,如下所示: Ext.define('UserManager.vi
我是一名优秀的程序员,十分优秀!