Advertisement
Garethp

Create Item New

Jan 26th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 2.01 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
  3.                    xmlns:ns1="http://schemas.microsoft.com/exchange/services/2006/types"
  4.                    xmlns:ns2="http://schemas.microsoft.com/exchange/services/2006/messages">
  5.     <SOAP-ENV:Header>
  6.         <ns1:RequestServerVersion Version="Exchange2010"/>
  7.     </SOAP-ENV:Header>
  8.     <SOAP-ENV:Body>
  9.         <ns2:CreateItem SendMeetingInvitations="SendToNone">
  10.             <ns2:Items>
  11.                 <ns1:CalendarItem>
  12.                     <ns1:Subject>Test Create Items</ns1:Subject>
  13.                     <ns1:Start>2016-01-26T11:45:07+01:00</ns1:Start>
  14.                 </ns1:CalendarItem>
  15.             </ns2:Items>
  16.         </ns2:CreateItem>
  17.     </SOAP-ENV:Body>
  18. </SOAP-ENV:Envelope>
  19.  
  20. <?xml version="1.0" encoding="utf-8"?><s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  21. <s:Header>
  22.     <h:ServerVersionInfo MajorVersion="15" MinorVersion="0" MajorBuildNumber="1104" MinorBuildNumber="3" Version="V2_22"
  23.                          xmlns:h="http://schemas.microsoft.com/exchange/services/2006/types"
  24.                          xmlns="http://schemas.microsoft.com/exchange/services/2006/types"
  25.                          xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  26.                          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"/>
  27. </s:Header>
  28. <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  29.     <m:CreateItemResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages"
  30.                           xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types">
  31.         <m:ResponseMessages>
  32.             <m:CreateItemResponseMessage ResponseClass="Success">
  33.                 <m:ResponseCode>NoError</m:ResponseCode>
  34.                 <m:Items>
  35.                     <t:CalendarItem>
  36.                         <t:ItemId
  37.                             Id="AAMkADhiZjhlMDZjLTc0MDItNDI5OS05NzIwLTYzZTY0NmFmYjcxMwBGAAAAAACovCg73uKqSJEOjHRwMiGeBwD5KryzNn7ZS4Mgr/QC8cL2AAAAAAENAAD5KryzNn7ZS4Mgr/QC8cL2AABBdLIVAAA="
  38.                             ChangeKey="DwAAABYAAAD5KryzNn7ZS4Mgr/QC8cL2AABBdlO6"/>
  39.                     </t:CalendarItem>
  40.                 </m:Items>
  41.             </m:CreateItemResponseMessage>
  42.         </m:ResponseMessages>
  43.     </m:CreateItemResponse>
  44. </s:Body>
  45. </s:Envelope>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement