Go to Google Groups Home    microsoft.public.sharepoint.portalserver
RE: UpdateListItems web service does not update field

"Lambert Qin [MSFT]" <v-la...@online.microsoft.com>

Hi Eric,

for your information, I think there is nothing wrong with the
configurations.
The permission is correct, and the soap message looks good.

If you were using JQuery, you need to add the additional request header
"SOAPAction" shown in with following code sample:

$.ajax({
    url: Web Service URL,
    beforeSend: function(xhr) {
        xhr.setRequestHeader("SOAPAction",
        "http://schemas.microsoft.com/sharepoint/soap/UpdateListItems");
    },
    type: "POST",
    dataType: "xml",
    data: soapEnvelope,
    complete: processResult,
    contentType: "text/xml; charset=utf-8"

});

If you were using VB.Net or C#, you could refer to How to: Update List
Items (http://msdn.microsoft.com/en-us/library/ms440289.aspx)

As web service issues requires extensive programming skills, it is
suggested to get further help in
microsoft.public.sharepoint.portalserver.development newsgroup.

Thanks for your understanding.

Sincerely,
Lambert Qin
Microsoft Online Support

Get Secure! - www.microsoft.com/security
=====================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
=====================================================
This posting is provided "AS IS" with no warranties, and confers no rights.