Hi Pros,
referring to this post I can create a contact in public Folders via ews. This works fine so far but when I try to send further attributes like Nickname for example I get a "ErrorSchemaValidation". Because I am sending the Message from BizTalk, I create the actual SOAP XML directly, if I understood the following site correctly, a <Nickname> should be allowed as child of contact.
<CreateItem xmlns="http://schemas.microsoft.com/exchange/services/2006/messages"> <SavedItemFolderId> <FolderId Id="XXXXXXA="ChangeKey="XXXXXX"xmlns="http://schemas.microsoft.com/exchange/services/2006/types"/> </SavedItemFolderId> <Items> <Contact xmlns="http://schemas.microsoft.com/exchange/services/2006/types"> <FileAs>Max, Mustermann</FileAs> <GivenName>Adam</GivenName> <CompanyName>CompanyName<CompanyName> <EmailAddresses> <Entry Key="EmailAddress1">welt@hallo.uik</Entry> </EmailAddresses> <JobTitle>Friend</JobTitle> <Surname>Muster</Surname> <Nickname>thisdontwork</Nickname> </Contact> </Items> </CreateItem>So what might be wrong about this message?