使用UpdateListItems添加附件?

时间:2010-11-04 18:52:36

标签: sharepoint soap attachment

是否可以使用UpdateListItems将附件添加到新列表项?

我试过这个SOAP,但没有骰子......

有人可以与我分享正确的SOAP结构来完成这项工作吗?

<SOAP-ENV:Envelope xmlns:ns0="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://schemas.microsoft.com/sharepoint/soap/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
   <SOAP-ENV:Header/>
   <ns0:Body>
      <ns1:UpdateListItems>
         <ns1:listName>Some Calendar</ns1:listName>
         <ns1:updates>
            <Batch OnError="Continue" ListVersion="1">
               <Method ID="1" Cmd="New">
                  <Field Name="ID">New</Field>
                  <Field Name="Title">Some Title</Field>
                  <Field Name="EventDate">2010-11-01 07:30:00</Field>
                  <Field Name="Attachments">
                     <Value Type="Attachments">/tmp/details.xml</Value>
                  </Field>
               </Method>
            </Batch>
         </ns1:updates>
      </ns1:UpdateListItems>
   </ns0:Body>
</SOAP-ENV:Envelope>

谢谢!

1 个答案:

答案 0 :(得分:1)

找到我的问题的答案。显然,使用getlistitems将文件附加到项目是不可能的。您必须在创建项目时获取_ows_ID值,然后对项目的ID值使用AddAttachment方法。