Hi,
I have a requirement to get the details of List view with nintex workflow. For accomplishing this task i am using Call webservice in nintex workflow. Webservice is Getview in views.asmx
I am using soap editor in nintex in which code is as follows
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:m="http://schemas.microsoft.com/sharepoint/soap/">
<soap:Header>
</soap:Header>
<soap:Body>
<m:GetView>
<m:listName>PCSRegulatory</m:listName>
<m:viewName>ReportView</m:viewName>
</m:GetView>
</soap:Body>
</soap:Envelope>
But when this code is executed ,following error occurs
Parameter viewName is missing or invalid.0x82000001
So i changed <m:viewName>ReportView</m:viewName>
to <m:ViewName>ReportView</m:ViewName>(replaced 'v' in viewName to 'V')
Webservice querying was successful after this change was made. However whatever be the viewname i supplied, i am getting details of view called 'all items'.
The view names i supplied in the code exists in the list .
Can you please help to figure this out.
Thank you