Hi,
Does anyone have any recomendations of how to improve the performance of the UpdateListItems function (Within Lists.asmx)
Im finding that it takes around 1-2 seconds to insert a new item, is this normal?
Heres the code im which im running inside a loop, which runs about 1000 times
Dim xmlDoc As New System.Xml.XmlDocument()
Dim query As System.Xml.XmlElement = xmlDoc.CreateElement("Batch")
query.SetAttribute("OnError", "Return")
query.SetAttribute("ListVersion", "1")
query.InnerXml = "<Method ID='1' Cmd='New'>" & _
"<Field Name='FieldName'>" & FieldData & "</Field>" & _
"</Method>"
Dim Result As XmlElement = L.UpdateListItems("List Name", query)
Thanks in advance!