Форма InfoPath не может быть отправлена в список SharePoint
В настоящее время я пытаюсь добавить элемент в список SharePoint с помощью формы InfoPath, которая находится в библиотеке форм. Сама форма содержит много другой информации, кроме той, что содержится в списке, и отображает несколько элементов из списка. Когда я отправляю, я получаю следующую ошибку:
Some rules were not applied.
InfoPath cannot submit the form.
An error occurred while the form was being submitted.
The SOAP response indicates that an error occurred on the server:
Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thrown.
<detail><errorstring xmlns="http://schemas.microsoft.com/sharepoint/soap/">Element <List> of parameter listProperties is missing or invalid.</errorstring><errorcode xmlns="http://schemas.microsoft.com/sharepoint/soap/">0x82000000</errorcode></detail>
Это XML-файл, который я использую:
<?xml version="1.0" encoding="UTF-8"?>
<Batch OnError="Continue">
<Method ID="1" Cmd="New">
<Field Name='Title'></Field>
<Field Name="FirstName"></Field>
<Field Name="LastName"></Field>
<Field Name="Email"></Field>
<Field Name="Phone"></Field>
</Method>
</Batch>