I searched around the internet (and on this stackexchange site), but didnt find any answer.
I wrote a small C# application that should retrieve some data via the SOAP webservice of a sharepoint server (just a one-way read access) and further process them. So far, it works great, except one small thing: the response contains tons of additional metadata fields:
ows_MetaInfo
ows__ModerationStatus
ows__Level
ows_Title
ows_ID
ows_owshiddenversion
ows_UniqueId
ows_FSObjType
ows_Created
ows_FileRef
I specified the fields I'm interested in via ViewFields, but still all those useless (at least for me) fields are returned, which creates quite an unnecessary overhead.
Is there a way to get rid of these? Thanks in advance!