Hi Experts,
i´m trying to make a Szenario (WS <-->Exchange web Service). In the Design-Time i have made an OM with 2 Steps for the Request, by customizing the SOAP Envelope. and the Mapping of business data. The Outgoing-Request after MApping is 1-1 with this from Microsoft.
CreateItem operation (calendar item)
in the Configuration i have in der Receiver Channel as follows.
The Receiver Response from the exchange web Service shows like:
<?xml version="1.0" encoding="utf-8" ?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Header>
<t:ServerVersionInfo MajorVersion="8" MinorVersion="0" MajorBuildNumber="685" MinorBuildNumber="8"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types" />
</soap:Header>
<soap:Body>
<CreateItemResponse xmlns:m="http://schemas.microsoft.com/exchange/services/2006/messages"
xmlns:t="http://schemas.microsoft.com/exchange/services/2006/types"
xmlns="http://schemas.microsoft.com/exchange/services/2006/messages">
<m:ResponseMessages>
<m:CreateItemResponseMessage ResponseClass="Success">
<m:ResponseCode>NoError</m:ResponseCode>
<m:Items>
<t:CalendarItem>
<t:ItemId Id="AAAlAFV" ChangeKey="DwAAABYA" />
</t:CalendarItem>
</m:Items>
</m:CreateItemResponseMessage>
</m:ResponseMessages>
</CreateItemResponse>
</soap:Body>
</soap:Envelope>
First question:
Should i remove the Envelope an the Header from the web Service response? If yes How?
Second Question
Without removing the Envelope and Header i get this Error on the receiver Channel:
Thank you very much
Kind Regards
Abdel