exchanger 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/exchanger.rb +6 -0
- data/lib/exchanger/attributes.rb +2 -2
- data/lib/exchanger/element.rb +8 -5
- data/lib/exchanger/elements/attachment.rb +64 -0
- data/lib/exchanger/elements/file_attachment.rb +17 -0
- data/lib/exchanger/elements/item.rb +9 -1
- data/lib/exchanger/elements/item_attachment.rb +16 -0
- data/lib/exchanger/operations/create_attachment.rb +44 -0
- data/lib/exchanger/operations/delete_attachment.rb +34 -0
- data/lib/exchanger/operations/get_attachment.rb +44 -0
- data/lib/exchanger/version.rb +1 -1
- data/spec/cassettes/calendar_item/save.yml +80 -68
- data/spec/cassettes/calendar_item/save_cleanup.yml +11 -11
- data/spec/cassettes/calendar_item/save_file_attachment.yml +374 -0
- data/spec/cassettes/calendar_item/save_file_attachment_cleanup.yml +73 -0
- data/spec/exchanger/calendar_item_spec.rb +33 -7
- metadata +10 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f33977a3a6c34f541831ae21a4f2a3c5f5fc4a5d
|
4
|
+
data.tar.gz: 5ccf62fb7f2d7f334d7b0f7bea2399e3f6aee1f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8613d904a315de9fffa7dca07dcb9711e53a13db292932e92d6626eacff6bd369cd586dfabd534f5284ab79aaf37ac99bdd133af972fc3854ecdd4450e7415f1
|
7
|
+
data.tar.gz: bb1624218805b5490e2b64ef68933009a355a83abfcedfe281cf241b98586319e2cc0a90dda4857d1249dd13b3db5b2f2cd657b65c0330c3de53b3f1851ba8f2
|
data/README.md
CHANGED
data/lib/exchanger.rb
CHANGED
@@ -42,6 +42,7 @@ require "exchanger/elements/contacts_folder"
|
|
42
42
|
require "exchanger/elements/tasks_folder"
|
43
43
|
require "exchanger/elements/search_folder"
|
44
44
|
# Item elements
|
45
|
+
require "exchanger/elements/attachment"
|
45
46
|
require "exchanger/elements/item"
|
46
47
|
require "exchanger/elements/message"
|
47
48
|
require "exchanger/elements/calendar_item"
|
@@ -54,6 +55,8 @@ require "exchanger/elements/task"
|
|
54
55
|
require "exchanger/elements/distribution_list"
|
55
56
|
require "exchanger/elements/calendar_event_details"
|
56
57
|
require "exchanger/elements/calendar_event"
|
58
|
+
require "exchanger/elements/item_attachment"
|
59
|
+
require "exchanger/elements/file_attachment"
|
57
60
|
|
58
61
|
# Operations
|
59
62
|
require "exchanger/operation"
|
@@ -67,6 +70,9 @@ require "exchanger/operations/delete_item"
|
|
67
70
|
require "exchanger/operations/resolve_names"
|
68
71
|
require "exchanger/operations/expand_dl"
|
69
72
|
require "exchanger/operations/get_user_availability"
|
73
|
+
require "exchanger/operations/get_attachment"
|
74
|
+
require "exchanger/operations/create_attachment"
|
75
|
+
require "exchanger/operations/delete_attachment"
|
70
76
|
|
71
77
|
module Exchanger
|
72
78
|
NS = {
|
data/lib/exchanger/attributes.rb
CHANGED
data/lib/exchanger/element.rb
CHANGED
@@ -72,22 +72,25 @@ module Exchanger
|
|
72
72
|
end
|
73
73
|
|
74
74
|
def self.new_from_xml(xml)
|
75
|
-
|
75
|
+
new.assign_attributes_from_xml(xml)
|
76
|
+
end
|
77
|
+
|
78
|
+
def assign_attributes_from_xml(xml)
|
76
79
|
# Keys
|
77
80
|
xml.attributes.values.each do |attr|
|
78
81
|
name = attr.name.underscore.to_sym
|
79
82
|
value = attr.value
|
80
|
-
|
83
|
+
write_attribute(name, value)
|
81
84
|
end
|
82
85
|
# Fields
|
83
86
|
xml.children.each do |node|
|
84
87
|
name = node.name.underscore.to_sym
|
85
88
|
field = elements[name] || Field.new(name)
|
86
89
|
value = field.value_from_xml(node)
|
87
|
-
|
90
|
+
write_attribute(name, value)
|
88
91
|
end
|
89
|
-
|
90
|
-
|
92
|
+
send(:reset_modifications)
|
93
|
+
self
|
91
94
|
end
|
92
95
|
|
93
96
|
# Builds XML from elements and attributes
|
@@ -0,0 +1,64 @@
|
|
1
|
+
module Exchanger
|
2
|
+
class Attachment < Element
|
3
|
+
self.identifier_name = :attachment_id
|
4
|
+
|
5
|
+
element :attachment_id, type: Identifier
|
6
|
+
element :name
|
7
|
+
element :content_type
|
8
|
+
element :content_id
|
9
|
+
element :content_location
|
10
|
+
element :size, type: Integer
|
11
|
+
element :last_modified_time, type: Time
|
12
|
+
element :is_inline, type: Boolean
|
13
|
+
|
14
|
+
attr_accessor :parent_item_id
|
15
|
+
|
16
|
+
def self.find(id)
|
17
|
+
find_all([id]).first
|
18
|
+
end
|
19
|
+
|
20
|
+
def self.find_all(ids)
|
21
|
+
response = GetAttachment.run(attachment_ids: ids)
|
22
|
+
response.attachments
|
23
|
+
end
|
24
|
+
|
25
|
+
# The "Attachments" element contains the items or files that are attached to an item in the Exchange store.
|
26
|
+
#
|
27
|
+
# <Attachments>
|
28
|
+
# <ItemAttachment/>
|
29
|
+
# <FileAttachment/>
|
30
|
+
# </Attachments>
|
31
|
+
#
|
32
|
+
# https://msdn.microsoft.com/en-us/library/office/aa564869(v=exchg.150).aspx
|
33
|
+
#
|
34
|
+
# Determine if the given XML node contains an ItemAttachment or FileAttachment and initialize the new instance.
|
35
|
+
#
|
36
|
+
def self.new_from_xml(xml)
|
37
|
+
attachment_subclass = Exchanger.const_get(xml.name)
|
38
|
+
attachment_subclass.new.assign_attributes_from_xml(xml)
|
39
|
+
end
|
40
|
+
|
41
|
+
private
|
42
|
+
|
43
|
+
def create
|
44
|
+
if parent_item_id
|
45
|
+
response = CreateAttachment.run(parent_item_id: parent_item_id, attachments: [self])
|
46
|
+
self.attachment_id = response.attachment_ids[0]
|
47
|
+
move_changes
|
48
|
+
true
|
49
|
+
else
|
50
|
+
errors << "Parent item can't be blank"
|
51
|
+
false
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def update
|
56
|
+
raise NotImplementedError, "There is no UpdateAttribute operation in Exchange. Delete the attachment and recreate to update."
|
57
|
+
end
|
58
|
+
|
59
|
+
def delete
|
60
|
+
DeleteAttachment.run(attachment_ids: [id]) ? true : false
|
61
|
+
end
|
62
|
+
|
63
|
+
end
|
64
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module Exchanger
|
2
|
+
# The FileAttachment element represents a file that is attached to an item in the Exchange store.
|
3
|
+
#
|
4
|
+
# https://msdn.microsoft.com/en-us/library/office/aa580492(v=exchg.150).aspx
|
5
|
+
class FileAttachment < Attachment
|
6
|
+
element :is_contact_photo, type: Boolean
|
7
|
+
element :content
|
8
|
+
|
9
|
+
def content=(value)
|
10
|
+
write_attribute(:content, Base64.encode64(value))
|
11
|
+
end
|
12
|
+
|
13
|
+
def content
|
14
|
+
Base64.decode64(read_attribute(:content))
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -10,7 +10,7 @@ module Exchanger
|
|
10
10
|
element :subject
|
11
11
|
element :sensitivity
|
12
12
|
element :body, type: Body
|
13
|
-
element :attachments, :type => [
|
13
|
+
element :attachments, :type => [Attachment]
|
14
14
|
element :date_time_received, :type => Time
|
15
15
|
element :size, :type => Integer
|
16
16
|
element :categories, :type => [String]
|
@@ -68,6 +68,14 @@ module Exchanger
|
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
+
def new_file_attachment(attributes = {})
|
72
|
+
FileAttachment.new(attributes.merge(parent_item_id: item_id.id))
|
73
|
+
end
|
74
|
+
|
75
|
+
def file_attachments
|
76
|
+
attachments.select { |attachment| attachment.is_a?(FileAttachment) }
|
77
|
+
end
|
78
|
+
|
71
79
|
private
|
72
80
|
|
73
81
|
def create
|
@@ -0,0 +1,16 @@
|
|
1
|
+
module Exchanger
|
2
|
+
# The ItemAttachment element represents an Exchange item that is attached to another Exchange item.
|
3
|
+
#
|
4
|
+
# https://msdn.microsoft.com/en-us/library/office/aa562997(v=exchg.150).aspx
|
5
|
+
class ItemAttachment < Attachment
|
6
|
+
element :item, type: Item
|
7
|
+
element :message, type: Message
|
8
|
+
element :calendar_item, type: CalendarItem
|
9
|
+
element :contact, type: Contact
|
10
|
+
element :task, type: Task
|
11
|
+
element :meeting_message, type: MeetingMessage
|
12
|
+
element :meeting_request, type: MeetingRequest
|
13
|
+
element :meeting_response, type: MeetingResponse
|
14
|
+
element :meeting_cancellation, type: MeetingCancellation
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
module Exchanger
|
2
|
+
# The CreateAttachment element defines a request to create an attachment to an item in the Exchange store.
|
3
|
+
#
|
4
|
+
# https://msdn.microsoft.com/en-us/library/office/aa565931(v=exchg.150).aspx
|
5
|
+
class CreateAttachment < Operation
|
6
|
+
class Request < Operation::Request
|
7
|
+
attr_accessor :parent_item_id, :attachments
|
8
|
+
|
9
|
+
# Reset request options to defaults.
|
10
|
+
def reset
|
11
|
+
@parent_item_id = nil
|
12
|
+
@attachments = []
|
13
|
+
end
|
14
|
+
|
15
|
+
def to_xml
|
16
|
+
Nokogiri::XML::Builder.new do |xml|
|
17
|
+
xml.send("soap:Envelope", "xmlns:soap" => NS["soap"], "xmlns:t" => NS["t"], "xmlns:xsi" => NS["xsi"], "xmlns:xsd" => NS["xsd"]) do
|
18
|
+
xml.send("soap:Body") do
|
19
|
+
xml.CreateAttachment("xmlns" => NS["m"]) do
|
20
|
+
xml.ParentItemId("Id" => parent_item_id)
|
21
|
+
xml.Attachments do
|
22
|
+
attachments.each do |attachment|
|
23
|
+
attachment_xml = attachment.to_xml
|
24
|
+
attachment_xml.add_namespace_definition("t", NS["t"])
|
25
|
+
attachment_xml.namespace = attachment_xml.namespace_definitions[0]
|
26
|
+
xml << attachment_xml.to_s
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
class Response < Operation::Response
|
37
|
+
def attachment_ids
|
38
|
+
to_xml.xpath(".//t:AttachmentId", NS).map do |node|
|
39
|
+
Identifier.new_from_xml(node)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
module Exchanger
|
2
|
+
# The DeleteAttachment element is the root element in a request to delete an attachment from the Exchange store.
|
3
|
+
#
|
4
|
+
# https://msdn.microsoft.com/en-us/library/office/aa580612(v=exchg.150).aspx
|
5
|
+
class DeleteAttachment < Operation
|
6
|
+
class Request < Operation::Request
|
7
|
+
attr_accessor :attachment_ids
|
8
|
+
|
9
|
+
# Reset request options to defaults.
|
10
|
+
def reset
|
11
|
+
@attachment_ids = []
|
12
|
+
end
|
13
|
+
|
14
|
+
def to_xml
|
15
|
+
Nokogiri::XML::Builder.new do |xml|
|
16
|
+
xml.send("soap:Envelope", "xmlns:soap" => NS["soap"], "xmlns:t" => NS["t"], "xmlns:xsi" => NS["xsi"], "xmlns:xsd" => NS["xsd"]) do
|
17
|
+
xml.send("soap:Body") do
|
18
|
+
xml.DeleteAttachment("xmlns" => NS["m"]) do
|
19
|
+
xml.AttachmentIds do
|
20
|
+
attachment_ids.each do |attachment_id|
|
21
|
+
xml["t"].AttachmentId("Id" => attachment_id)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
class Response < Operation::Response
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
module Exchanger
|
2
|
+
# The GetAttachment element is the root element in a request to get an attachment from the Exchange store.
|
3
|
+
#
|
4
|
+
# https://msdn.microsoft.com/en-us/library/office/aa564204(v=exchg.150).aspx
|
5
|
+
class GetAttachment < Operation
|
6
|
+
class Request < Operation::Request
|
7
|
+
attr_accessor :attachment_ids, :base_shape
|
8
|
+
|
9
|
+
# Reset request options to defaults.
|
10
|
+
def reset
|
11
|
+
@attachment_ids = []
|
12
|
+
@base_shape = :all_properties
|
13
|
+
end
|
14
|
+
|
15
|
+
def to_xml
|
16
|
+
Nokogiri::XML::Builder.new do |xml|
|
17
|
+
xml.send("soap:Envelope", "xmlns:soap" => NS["soap"]) do
|
18
|
+
xml.send("soap:Body") do
|
19
|
+
xml.GetAttachment("xmlns" => NS["m"], "xmlns:t" => NS["t"]) do
|
20
|
+
xml.AttachmentShape do
|
21
|
+
xml.send "t:BaseShape", base_shape.to_s.camelize
|
22
|
+
end
|
23
|
+
xml.AttachmentIds do
|
24
|
+
attachment_ids.each do |attachment_id|
|
25
|
+
xml.send("t:AttachmentId", "Id" => attachment_id)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
class Response < Operation::Response
|
36
|
+
def attachments
|
37
|
+
to_xml.xpath(".//m:Attachments", NS).children.map do |node|
|
38
|
+
attachment_klass = Exchanger.const_get(node.name)
|
39
|
+
attachment_klass.new_from_xml(node)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
data/lib/exchanger/version.rb
CHANGED
@@ -40,40 +40,46 @@ http_interactions:
|
|
40
40
|
Server:
|
41
41
|
- Microsoft-IIS/8.0
|
42
42
|
Request-Id:
|
43
|
-
-
|
43
|
+
- b4a9ca09-b95b-42cb-9120-ac55df73a696
|
44
44
|
X-Calculatedbetarget:
|
45
|
-
-
|
45
|
+
- CO2PR0801MB552.namprd08.prod.outlook.com
|
46
46
|
X-Backendhttpstatus:
|
47
47
|
- '200'
|
48
48
|
Set-Cookie:
|
49
|
-
- exchangecookie=
|
50
|
-
|
49
|
+
- exchangecookie=1220f01c67eb4194b30c77e969ce3d1d; expires=Wed, 21-Jun-2017
|
50
|
+
14:13:10 GMT; path=/; HttpOnly
|
51
51
|
X-Ewshandler:
|
52
52
|
- FindItem
|
53
53
|
X-Aspnet-Version:
|
54
54
|
- 4.0.30319
|
55
55
|
X-Diaginfo:
|
56
|
-
-
|
56
|
+
- CO2PR0801MB552
|
57
57
|
X-Beserver:
|
58
|
-
-
|
58
|
+
- CO2PR0801MB552
|
59
59
|
X-Powered-By:
|
60
60
|
- ASP.NET
|
61
61
|
X-Feserver:
|
62
|
-
-
|
62
|
+
- BY2PR06CA0074
|
63
63
|
Date:
|
64
|
-
-
|
64
|
+
- Tue, 21 Jun 2016 14:13:09 GMT
|
65
65
|
body:
|
66
66
|
encoding: UTF-8
|
67
67
|
string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
|
68
|
-
MajorVersion="15" MinorVersion="1" MajorBuildNumber="
|
68
|
+
MajorVersion="15" MinorVersion="1" MajorBuildNumber="523" MinorBuildNumber="16"
|
69
69
|
xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
70
70
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body><m:FindItemResponse
|
71
71
|
xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
72
72
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindItemResponseMessage
|
73
73
|
ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
|
74
|
-
TotalItemsInView="
|
74
|
+
TotalItemsInView="1" IncludesLastItemInRange="true"><t:Items><t:CalendarItem><t:ItemId
|
75
|
+
Id="AAAhAGNoYWRfZXhjaGFuZ2VydGVzdGluZ0BvdXRsb29rLmNvbQBGAAAAAAAAqVUrvCLRSblrs10ZIBaxBwBO62zGwOguSJqyNahPUYshAAAAAAENAABO62zGwOguSJqyNahPUYshAAAcJGiCAAA="
|
76
|
+
ChangeKey="DwAAABYAAABO62zGwOguSJqyNahPUYshAAAcJiya"/><t:ParentFolderId Id="AQAhAGNoYWRfZXhjaGFuZ2VydGVzdGluZ0BvdXRsb28Aay5jb20ALgAABKlVK7wi0Um5a7NdGSAWsQEATutsxsDoLkiasjWoT1GLIQAAAgENAAAA"
|
77
|
+
ChangeKey="AQAAAA=="/><t:ItemClass>IPM.Appointment</t:ItemClass><t:Subject>New...</t:Subject><t:Sensitivity>Normal</t:Sensitivity><t:DateTimeReceived>2016-06-20T13:43:18Z</t:DateTimeReceived><t:Size>17941</t:Size><t:Importance>Normal</t:Importance><t:IsSubmitted>false</t:IsSubmitted><t:IsDraft>false</t:IsDraft><t:IsFromMe>false</t:IsFromMe><t:IsResend>false</t:IsResend><t:IsUnmodified>false</t:IsUnmodified><t:DateTimeSent>2016-06-20T13:43:18Z</t:DateTimeSent><t:DateTimeCreated>2016-06-20T13:43:18Z</t:DateTimeCreated><t:ReminderDueBy>2016-06-20T05:00:00Z</t:ReminderDueBy><t:ReminderIsSet>false</t:ReminderIsSet><t:ReminderMinutesBeforeStart>15</t:ReminderMinutesBeforeStart><t:HasAttachments>true</t:HasAttachments><t:Culture>en-US</t:Culture><t:Start>2016-06-20T05:00:00Z</t:Start><t:End>2016-06-21T05:00:00Z</t:End><t:IsAllDayEvent>true</t:IsAllDayEvent><t:LegacyFreeBusyStatus>Free</t:LegacyFreeBusyStatus><t:Location/><t:IsMeeting>true</t:IsMeeting><t:IsCancelled>false</t:IsCancelled><t:IsRecurring>false</t:IsRecurring><t:MeetingRequestWasSent>false</t:MeetingRequestWasSent><t:IsResponseRequested>true</t:IsResponseRequested><t:CalendarItemType>Single</t:CalendarItemType><t:MyResponseType>Organizer</t:MyResponseType><t:Organizer><t:Mailbox><t:Name>Exchanger
|
78
|
+
SpecTester</t:Name><t:EmailAddress>/O=FIRST ORGANIZATION/OU=EXCHANGE ADMINISTRATIVE
|
79
|
+
GROUP(FYDIBOHF23SPDLT)/CN=RECIPIENTS/CN=0003BFFDF431A754</t:EmailAddress><t:RoutingType>EX</t:RoutingType></t:Mailbox></t:Organizer><t:Duration>P1D</t:Duration><t:TimeZone>(UTC-06:00)
|
80
|
+
Central Time (US & Canada)</t:TimeZone><t:AppointmentSequenceNumber>0</t:AppointmentSequenceNumber><t:AppointmentState>1</t:AppointmentState><t:IsOnlineMeeting>false</t:IsOnlineMeeting></t:CalendarItem></t:Items></m:RootFolder></m:FindItemResponseMessage></m:ResponseMessages></m:FindItemResponse></s:Body></s:Envelope>
|
75
81
|
http_version:
|
76
|
-
recorded_at:
|
82
|
+
recorded_at: Tue, 21 Jun 2016 14:13:10 GMT
|
77
83
|
- request:
|
78
84
|
method: post
|
79
85
|
uri: https://FILTERED_USERNAME:FILTERED_PASSWORD@amsprd0710.outlook.com/EWS/Exchange.asmx
|
@@ -89,11 +95,11 @@ http_interactions:
|
|
89
95
|
</SavedItemFolderId>
|
90
96
|
<Items>
|
91
97
|
<t:CalendarItem>
|
92
|
-
<t:Subject>Calendar Item
|
98
|
+
<t:Subject>Test Calendar Item</t:Subject>
|
93
99
|
<t:Body BodyType="Text">Body line 1.
|
94
100
|
Body line 2.</t:Body>
|
95
|
-
<t:Start>2016-
|
96
|
-
<t:End>2016-
|
101
|
+
<t:Start>2016-06-21T09:13:09-05:00</t:Start>
|
102
|
+
<t:End>2016-06-21T09:43:09-05:00</t:End>
|
97
103
|
</t:CalendarItem>
|
98
104
|
</Items>
|
99
105
|
</CreateItem>
|
@@ -120,41 +126,41 @@ http_interactions:
|
|
120
126
|
Server:
|
121
127
|
- Microsoft-IIS/8.0
|
122
128
|
Request-Id:
|
123
|
-
-
|
129
|
+
- 99313b13-0e00-453b-8f03-c84dbdebf397
|
124
130
|
X-Calculatedbetarget:
|
125
|
-
-
|
131
|
+
- CO2PR0801MB552.namprd08.prod.outlook.com
|
126
132
|
X-Backendhttpstatus:
|
127
133
|
- '200'
|
128
134
|
Set-Cookie:
|
129
|
-
- exchangecookie=
|
130
|
-
|
135
|
+
- exchangecookie=8fac18a39ac84561952a4ef40aee59e4; expires=Wed, 21-Jun-2017
|
136
|
+
14:13:11 GMT; path=/; HttpOnly
|
131
137
|
X-Ewshandler:
|
132
138
|
- CreateItem
|
133
139
|
X-Aspnet-Version:
|
134
140
|
- 4.0.30319
|
135
141
|
X-Diaginfo:
|
136
|
-
-
|
142
|
+
- CO2PR0801MB552
|
137
143
|
X-Beserver:
|
138
|
-
-
|
144
|
+
- CO2PR0801MB552
|
139
145
|
X-Powered-By:
|
140
146
|
- ASP.NET
|
141
147
|
X-Feserver:
|
142
|
-
-
|
148
|
+
- BLUPR0601CA0002
|
143
149
|
Date:
|
144
|
-
-
|
150
|
+
- Tue, 21 Jun 2016 14:13:10 GMT
|
145
151
|
body:
|
146
152
|
encoding: UTF-8
|
147
153
|
string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
|
148
|
-
MajorVersion="15" MinorVersion="1" MajorBuildNumber="
|
154
|
+
MajorVersion="15" MinorVersion="1" MajorBuildNumber="523" MinorBuildNumber="16"
|
149
155
|
xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
150
156
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body><m:CreateItemResponse
|
151
157
|
xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
152
158
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:CreateItemResponseMessage
|
153
159
|
ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:Items><t:CalendarItem><t:ItemId
|
154
|
-
Id="
|
155
|
-
ChangeKey="
|
160
|
+
Id="AAAhAGNoYWRfZXhjaGFuZ2VydGVzdGluZ0BvdXRsb29rLmNvbQBGAAAAAAAAqVUrvCLRSblrs10ZIBaxBwBO62zGwOguSJqyNahPUYshAAAAAAENAABO62zGwOguSJqyNahPUYshAAAcJGi8AAA="
|
161
|
+
ChangeKey="DwAAABYAAABO62zGwOguSJqyNahPUYshAAAcJizZ"/></t:CalendarItem></m:Items></m:CreateItemResponseMessage></m:ResponseMessages></m:CreateItemResponse></s:Body></s:Envelope>
|
156
162
|
http_version:
|
157
|
-
recorded_at:
|
163
|
+
recorded_at: Tue, 21 Jun 2016 14:13:11 GMT
|
158
164
|
- request:
|
159
165
|
method: post
|
160
166
|
uri: https://FILTERED_USERNAME:FILTERED_PASSWORD@amsprd0710.outlook.com/EWS/Exchange.asmx
|
@@ -169,7 +175,7 @@ http_interactions:
|
|
169
175
|
<t:BaseShape>AllProperties</t:BaseShape>
|
170
176
|
</ItemShape>
|
171
177
|
<ItemIds>
|
172
|
-
<t:ItemId Id="
|
178
|
+
<t:ItemId Id="AAAhAGNoYWRfZXhjaGFuZ2VydGVzdGluZ0BvdXRsb29rLmNvbQBGAAAAAAAAqVUrvCLRSblrs10ZIBaxBwBO62zGwOguSJqyNahPUYshAAAAAAENAABO62zGwOguSJqyNahPUYshAAAcJGi8AAA="/>
|
173
179
|
</ItemIds>
|
174
180
|
</GetItem>
|
175
181
|
</soap:Body>
|
@@ -195,33 +201,33 @@ http_interactions:
|
|
195
201
|
Server:
|
196
202
|
- Microsoft-IIS/8.0
|
197
203
|
Request-Id:
|
198
|
-
-
|
204
|
+
- 3891b2fb-892d-40e5-8bc2-2e2b12af528e
|
199
205
|
X-Calculatedbetarget:
|
200
|
-
-
|
206
|
+
- CO2PR0801MB552.namprd08.prod.outlook.com
|
201
207
|
X-Backendhttpstatus:
|
202
208
|
- '200'
|
203
209
|
Set-Cookie:
|
204
|
-
- exchangecookie=
|
205
|
-
|
210
|
+
- exchangecookie=3858546dae864d05ba89385bbc3f9f56; expires=Wed, 21-Jun-2017
|
211
|
+
14:13:12 GMT; path=/; HttpOnly
|
206
212
|
X-Aspnet-Version:
|
207
213
|
- 4.0.30319
|
208
214
|
X-Diaginfo:
|
209
|
-
-
|
215
|
+
- CO2PR0801MB552
|
210
216
|
X-Beserver:
|
211
|
-
-
|
217
|
+
- CO2PR0801MB552
|
212
218
|
X-Powered-By:
|
213
219
|
- ASP.NET
|
214
220
|
X-Feserver:
|
215
|
-
-
|
221
|
+
- BY2PR13CA0031
|
216
222
|
Date:
|
217
|
-
-
|
223
|
+
- Tue, 21 Jun 2016 14:13:11 GMT
|
218
224
|
body:
|
219
225
|
encoding: UTF-8
|
220
226
|
string: |-
|
221
|
-
<?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo MajorVersion="15" MinorVersion="1" MajorBuildNumber="
|
222
|
-
Body line 2.</t:Body><t:DateTimeReceived>2016-
|
227
|
+
<?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo MajorVersion="15" MinorVersion="1" MajorBuildNumber="523" MinorBuildNumber="16" 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"><m:GetItemResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:GetItemResponseMessage ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:Items><t:CalendarItem><t:ItemId Id="AAAhAGNoYWRfZXhjaGFuZ2VydGVzdGluZ0BvdXRsb29rLmNvbQBGAAAAAAAAqVUrvCLRSblrs10ZIBaxBwBO62zGwOguSJqyNahPUYshAAAAAAENAABO62zGwOguSJqyNahPUYshAAAcJGi8AAA=" ChangeKey="DwAAABYAAABO62zGwOguSJqyNahPUYshAAAcJizZ"/><t:ParentFolderId Id="AQAhAGNoYWRfZXhjaGFuZ2VydGVzdGluZ0BvdXRsb28Aay5jb20ALgAABKlVK7wi0Um5a7NdGSAWsQEATutsxsDoLkiasjWoT1GLIQAAAgENAAAA" ChangeKey="AQAAAA=="/><t:ItemClass>IPM.Appointment</t:ItemClass><t:Subject>Test Calendar Item</t:Subject><t:Sensitivity>Normal</t:Sensitivity><t:Body BodyType="Text">Body line 1.
|
228
|
+
Body line 2.</t:Body><t:DateTimeReceived>2016-06-21T14:13:11Z</t:DateTimeReceived><t:Size>3939</t:Size><t:Importance>Normal</t:Importance><t:IsSubmitted>false</t:IsSubmitted><t:IsDraft>false</t:IsDraft><t:IsFromMe>false</t:IsFromMe><t:IsResend>false</t:IsResend><t:IsUnmodified>false</t:IsUnmodified><t:DateTimeSent>2016-06-21T14:13:11Z</t:DateTimeSent><t:DateTimeCreated>2016-06-21T14:13:11Z</t:DateTimeCreated><t:ResponseObjects><t:CancelCalendarItem/><t:ForwardItem/></t:ResponseObjects><t:ReminderDueBy>2016-06-21T14:13:09Z</t:ReminderDueBy><t:ReminderIsSet>true</t:ReminderIsSet><t:ReminderMinutesBeforeStart>15</t:ReminderMinutesBeforeStart><t:DisplayCc/><t:DisplayTo/><t:HasAttachments>false</t:HasAttachments><t:Culture>en-US</t:Culture><t:Start>2016-06-21T14:13:09Z</t:Start><t:End>2016-06-21T14:43:09Z</t:End><t:IsAllDayEvent>false</t:IsAllDayEvent><t:LegacyFreeBusyStatus>Busy</t:LegacyFreeBusyStatus><t:IsMeeting>true</t:IsMeeting><t:IsCancelled>false</t:IsCancelled><t:IsRecurring>false</t:IsRecurring><t:MeetingRequestWasSent>false</t:MeetingRequestWasSent><t:IsResponseRequested>true</t:IsResponseRequested><t:CalendarItemType>Single</t:CalendarItemType><t:MyResponseType>Organizer</t:MyResponseType><t:Organizer><t:Mailbox><t:Name>Exchanger SpecTester</t:Name><t:EmailAddress>FILTERED_EMAIL_ADDRESS</t:EmailAddress><t:RoutingType>SMTP</t:RoutingType></t:Mailbox></t:Organizer><t:Duration>PT30M</t:Duration><t:TimeZone>(UTC) Monrovia, Reykjavik</t:TimeZone><t:AppointmentSequenceNumber>0</t:AppointmentSequenceNumber><t:AppointmentState>1</t:AppointmentState><t:IsOnlineMeeting>false</t:IsOnlineMeeting></t:CalendarItem></m:Items></m:GetItemResponseMessage></m:ResponseMessages></m:GetItemResponse></s:Body></s:Envelope>
|
223
229
|
http_version:
|
224
|
-
recorded_at:
|
230
|
+
recorded_at: Tue, 21 Jun 2016 14:13:11 GMT
|
225
231
|
- request:
|
226
232
|
method: post
|
227
233
|
uri: https://FILTERED_USERNAME:FILTERED_PASSWORD@amsprd0710.outlook.com/EWS/Exchange.asmx
|
@@ -262,47 +268,53 @@ http_interactions:
|
|
262
268
|
Server:
|
263
269
|
- Microsoft-IIS/8.0
|
264
270
|
Request-Id:
|
265
|
-
-
|
271
|
+
- 754e4356-536d-4a8b-af8d-c232f2512294
|
266
272
|
X-Calculatedbetarget:
|
267
|
-
-
|
273
|
+
- CO2PR0801MB552.namprd08.prod.outlook.com
|
268
274
|
X-Backendhttpstatus:
|
269
275
|
- '200'
|
270
276
|
Set-Cookie:
|
271
|
-
- exchangecookie=
|
272
|
-
|
277
|
+
- exchangecookie=9ffc5a9a5cea488d9d9a2b0f56ac5118; expires=Wed, 21-Jun-2017
|
278
|
+
14:13:12 GMT; path=/; HttpOnly
|
273
279
|
X-Ewshandler:
|
274
280
|
- FindItem
|
275
281
|
X-Aspnet-Version:
|
276
282
|
- 4.0.30319
|
277
283
|
X-Diaginfo:
|
278
|
-
-
|
284
|
+
- CO2PR0801MB552
|
279
285
|
X-Beserver:
|
280
|
-
-
|
286
|
+
- CO2PR0801MB552
|
281
287
|
X-Powered-By:
|
282
288
|
- ASP.NET
|
283
289
|
X-Feserver:
|
284
|
-
-
|
290
|
+
- YTXPR01CA0068
|
285
291
|
Date:
|
286
|
-
-
|
292
|
+
- Tue, 21 Jun 2016 14:13:12 GMT
|
287
293
|
body:
|
288
294
|
encoding: UTF-8
|
289
295
|
string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
|
290
|
-
MajorVersion="15" MinorVersion="1" MajorBuildNumber="
|
296
|
+
MajorVersion="15" MinorVersion="1" MajorBuildNumber="523" MinorBuildNumber="16"
|
291
297
|
xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
292
298
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body><m:FindItemResponse
|
293
299
|
xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
294
300
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:FindItemResponseMessage
|
295
301
|
ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:RootFolder
|
296
|
-
TotalItemsInView="
|
297
|
-
Id="
|
298
|
-
ChangeKey="
|
299
|
-
ChangeKey="AQAAAA=="/><t:ItemClass>IPM.Appointment</t:ItemClass><t:Subject>
|
300
|
-
Item
|
302
|
+
TotalItemsInView="2" IncludesLastItemInRange="true"><t:Items><t:CalendarItem><t:ItemId
|
303
|
+
Id="AAAhAGNoYWRfZXhjaGFuZ2VydGVzdGluZ0BvdXRsb29rLmNvbQBGAAAAAAAAqVUrvCLRSblrs10ZIBaxBwBO62zGwOguSJqyNahPUYshAAAAAAENAABO62zGwOguSJqyNahPUYshAAAcJGi8AAA="
|
304
|
+
ChangeKey="DwAAABYAAABO62zGwOguSJqyNahPUYshAAAcJizZ"/><t:ParentFolderId Id="AQAhAGNoYWRfZXhjaGFuZ2VydGVzdGluZ0BvdXRsb28Aay5jb20ALgAABKlVK7wi0Um5a7NdGSAWsQEATutsxsDoLkiasjWoT1GLIQAAAgENAAAA"
|
305
|
+
ChangeKey="AQAAAA=="/><t:ItemClass>IPM.Appointment</t:ItemClass><t:Subject>Test
|
306
|
+
Calendar Item</t:Subject><t:Sensitivity>Normal</t:Sensitivity><t:DateTimeReceived>2016-06-21T14:13:11Z</t:DateTimeReceived><t:Size>3939</t:Size><t:Importance>Normal</t:Importance><t:IsSubmitted>false</t:IsSubmitted><t:IsDraft>false</t:IsDraft><t:IsFromMe>false</t:IsFromMe><t:IsResend>false</t:IsResend><t:IsUnmodified>false</t:IsUnmodified><t:DateTimeSent>2016-06-21T14:13:11Z</t:DateTimeSent><t:DateTimeCreated>2016-06-21T14:13:11Z</t:DateTimeCreated><t:ReminderDueBy>2016-06-21T14:13:09Z</t:ReminderDueBy><t:ReminderIsSet>true</t:ReminderIsSet><t:ReminderMinutesBeforeStart>15</t:ReminderMinutesBeforeStart><t:HasAttachments>false</t:HasAttachments><t:Culture>en-US</t:Culture><t:Start>2016-06-21T14:13:09Z</t:Start><t:End>2016-06-21T14:43:09Z</t:End><t:IsAllDayEvent>false</t:IsAllDayEvent><t:LegacyFreeBusyStatus>Busy</t:LegacyFreeBusyStatus><t:IsMeeting>true</t:IsMeeting><t:IsCancelled>false</t:IsCancelled><t:IsRecurring>false</t:IsRecurring><t:MeetingRequestWasSent>false</t:MeetingRequestWasSent><t:IsResponseRequested>true</t:IsResponseRequested><t:CalendarItemType>Single</t:CalendarItemType><t:MyResponseType>Organizer</t:MyResponseType><t:Organizer><t:Mailbox><t:Name>Exchanger
|
301
307
|
SpecTester</t:Name><t:EmailAddress>/O=FIRST ORGANIZATION/OU=EXCHANGE ADMINISTRATIVE
|
302
308
|
GROUP(FYDIBOHF23SPDLT)/CN=RECIPIENTS/CN=0003BFFDF431A754</t:EmailAddress><t:RoutingType>EX</t:RoutingType></t:Mailbox></t:Organizer><t:Duration>PT30M</t:Duration><t:TimeZone>(UTC)
|
303
|
-
Monrovia, Reykjavik</t:TimeZone><t:AppointmentSequenceNumber>0</t:AppointmentSequenceNumber><t:AppointmentState>1</t:AppointmentState><t:IsOnlineMeeting>false</t:IsOnlineMeeting></t:CalendarItem
|
309
|
+
Monrovia, Reykjavik</t:TimeZone><t:AppointmentSequenceNumber>0</t:AppointmentSequenceNumber><t:AppointmentState>1</t:AppointmentState><t:IsOnlineMeeting>false</t:IsOnlineMeeting></t:CalendarItem><t:CalendarItem><t:ItemId
|
310
|
+
Id="AAAhAGNoYWRfZXhjaGFuZ2VydGVzdGluZ0BvdXRsb29rLmNvbQBGAAAAAAAAqVUrvCLRSblrs10ZIBaxBwBO62zGwOguSJqyNahPUYshAAAAAAENAABO62zGwOguSJqyNahPUYshAAAcJGiCAAA="
|
311
|
+
ChangeKey="DwAAABYAAABO62zGwOguSJqyNahPUYshAAAcJiya"/><t:ParentFolderId Id="AQAhAGNoYWRfZXhjaGFuZ2VydGVzdGluZ0BvdXRsb28Aay5jb20ALgAABKlVK7wi0Um5a7NdGSAWsQEATutsxsDoLkiasjWoT1GLIQAAAgENAAAA"
|
312
|
+
ChangeKey="AQAAAA=="/><t:ItemClass>IPM.Appointment</t:ItemClass><t:Subject>New...</t:Subject><t:Sensitivity>Normal</t:Sensitivity><t:DateTimeReceived>2016-06-20T13:43:18Z</t:DateTimeReceived><t:Size>17941</t:Size><t:Importance>Normal</t:Importance><t:IsSubmitted>false</t:IsSubmitted><t:IsDraft>false</t:IsDraft><t:IsFromMe>false</t:IsFromMe><t:IsResend>false</t:IsResend><t:IsUnmodified>false</t:IsUnmodified><t:DateTimeSent>2016-06-20T13:43:18Z</t:DateTimeSent><t:DateTimeCreated>2016-06-20T13:43:18Z</t:DateTimeCreated><t:ReminderDueBy>2016-06-20T05:00:00Z</t:ReminderDueBy><t:ReminderIsSet>false</t:ReminderIsSet><t:ReminderMinutesBeforeStart>15</t:ReminderMinutesBeforeStart><t:HasAttachments>true</t:HasAttachments><t:Culture>en-US</t:Culture><t:Start>2016-06-20T05:00:00Z</t:Start><t:End>2016-06-21T05:00:00Z</t:End><t:IsAllDayEvent>true</t:IsAllDayEvent><t:LegacyFreeBusyStatus>Free</t:LegacyFreeBusyStatus><t:Location/><t:IsMeeting>true</t:IsMeeting><t:IsCancelled>false</t:IsCancelled><t:IsRecurring>false</t:IsRecurring><t:MeetingRequestWasSent>false</t:MeetingRequestWasSent><t:IsResponseRequested>true</t:IsResponseRequested><t:CalendarItemType>Single</t:CalendarItemType><t:MyResponseType>Organizer</t:MyResponseType><t:Organizer><t:Mailbox><t:Name>Exchanger
|
313
|
+
SpecTester</t:Name><t:EmailAddress>/O=FIRST ORGANIZATION/OU=EXCHANGE ADMINISTRATIVE
|
314
|
+
GROUP(FYDIBOHF23SPDLT)/CN=RECIPIENTS/CN=0003BFFDF431A754</t:EmailAddress><t:RoutingType>EX</t:RoutingType></t:Mailbox></t:Organizer><t:Duration>P1D</t:Duration><t:TimeZone>(UTC-06:00)
|
315
|
+
Central Time (US & Canada)</t:TimeZone><t:AppointmentSequenceNumber>0</t:AppointmentSequenceNumber><t:AppointmentState>1</t:AppointmentState><t:IsOnlineMeeting>false</t:IsOnlineMeeting></t:CalendarItem></t:Items></m:RootFolder></m:FindItemResponseMessage></m:ResponseMessages></m:FindItemResponse></s:Body></s:Envelope>
|
304
316
|
http_version:
|
305
|
-
recorded_at:
|
317
|
+
recorded_at: Tue, 21 Jun 2016 14:13:12 GMT
|
306
318
|
- request:
|
307
319
|
method: post
|
308
320
|
uri: https://FILTERED_USERNAME:FILTERED_PASSWORD@amsprd0710.outlook.com/EWS/Exchange.asmx
|
@@ -315,12 +327,12 @@ http_interactions:
|
|
315
327
|
<UpdateItem xmlns="http://schemas.microsoft.com/exchange/services/2006/messages" ConflictResolution="AlwaysOverwrite" SendMeetingInvitationsOrCancellations="SendToAllAndSaveCopy">
|
316
328
|
<ItemChanges>
|
317
329
|
<t:ItemChange>
|
318
|
-
<t:ItemId Id="
|
330
|
+
<t:ItemId Id="AAAhAGNoYWRfZXhjaGFuZ2VydGVzdGluZ0BvdXRsb29rLmNvbQBGAAAAAAAAqVUrvCLRSblrs10ZIBaxBwBO62zGwOguSJqyNahPUYshAAAAAAENAABO62zGwOguSJqyNahPUYshAAAcJGi8AAA=" ChangeKey="DwAAABYAAABO62zGwOguSJqyNahPUYshAAAcJizZ"/>
|
319
331
|
<t:Updates>
|
320
332
|
<t:SetItemField>
|
321
333
|
<t:FieldURI FieldURI="item:Subject"/>
|
322
334
|
<t:CalendarItem>
|
323
|
-
<t:Subject>Calendar Item
|
335
|
+
<t:Subject>Test Calendar Item Updated</t:Subject>
|
324
336
|
</t:CalendarItem>
|
325
337
|
</t:SetItemField>
|
326
338
|
</t:Updates>
|
@@ -350,39 +362,39 @@ http_interactions:
|
|
350
362
|
Server:
|
351
363
|
- Microsoft-IIS/8.0
|
352
364
|
Request-Id:
|
353
|
-
-
|
365
|
+
- e57a3b2b-c412-49b4-b1a1-643a104d9d86
|
354
366
|
X-Calculatedbetarget:
|
355
|
-
-
|
367
|
+
- CO2PR0801MB552.namprd08.prod.outlook.com
|
356
368
|
X-Backendhttpstatus:
|
357
369
|
- '200'
|
358
370
|
Set-Cookie:
|
359
|
-
- exchangecookie=
|
360
|
-
|
371
|
+
- exchangecookie=1a78a99170d34409a9c678faeb165950; expires=Wed, 21-Jun-2017
|
372
|
+
14:13:13 GMT; path=/; HttpOnly
|
361
373
|
X-Ewshandler:
|
362
374
|
- UpdateItem
|
363
375
|
X-Aspnet-Version:
|
364
376
|
- 4.0.30319
|
365
377
|
X-Diaginfo:
|
366
|
-
-
|
378
|
+
- CO2PR0801MB552
|
367
379
|
X-Beserver:
|
368
|
-
-
|
380
|
+
- CO2PR0801MB552
|
369
381
|
X-Powered-By:
|
370
382
|
- ASP.NET
|
371
383
|
X-Feserver:
|
372
|
-
-
|
384
|
+
- BY2PR16CA0014
|
373
385
|
Date:
|
374
|
-
-
|
386
|
+
- Tue, 21 Jun 2016 14:13:12 GMT
|
375
387
|
body:
|
376
388
|
encoding: UTF-8
|
377
389
|
string: <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Header><h:ServerVersionInfo
|
378
|
-
MajorVersion="15" MinorVersion="1" MajorBuildNumber="
|
390
|
+
MajorVersion="15" MinorVersion="1" MajorBuildNumber="523" MinorBuildNumber="16"
|
379
391
|
xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
380
392
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/></s:Header><s:Body><m:UpdateItemResponse
|
381
393
|
xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
382
394
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"><m:ResponseMessages><m:UpdateItemResponseMessage
|
383
395
|
ResponseClass="Success"><m:ResponseCode>NoError</m:ResponseCode><m:Items><t:CalendarItem><t:ItemId
|
384
|
-
Id="
|
385
|
-
ChangeKey="
|
396
|
+
Id="AAAhAGNoYWRfZXhjaGFuZ2VydGVzdGluZ0BvdXRsb29rLmNvbQBGAAAAAAAAqVUrvCLRSblrs10ZIBaxBwBO62zGwOguSJqyNahPUYshAAAAAAENAABO62zGwOguSJqyNahPUYshAAAcJGi8AAA="
|
397
|
+
ChangeKey="DwAAABYAAABO62zGwOguSJqyNahPUYshAAAcJizb"/></t:CalendarItem></m:Items></m:UpdateItemResponseMessage></m:ResponseMessages></m:UpdateItemResponse></s:Body></s:Envelope>
|
386
398
|
http_version:
|
387
|
-
recorded_at:
|
399
|
+
recorded_at: Tue, 21 Jun 2016 14:13:13 GMT
|
388
400
|
recorded_with: VCR 3.0.1
|