c# - Sharepoint 2013 error when hosting site in IIS -


i have custom web service, used execute workflow in sharepoint 2013. here part of code, works pretty when run web service in vs.

workflowsubscription workflowsubscription =    workflowmanager.getworkflowsubscriptionservice().getsubscription(new      guid(properties.settings.default.spworkflowid));  dictionary<string, object> payload = new dictionary<string, object>(); payload.add("approvers", assignedtopo); payload.add("approversbn", assignedto); payload.add("approversgd", assignedtogd);  worfklowservice.startworkflowonlistitem(workflowsubscription,    convert.toint32(currentfileinsp.listitemallfields["id"]), payload);  context.executequery(); enter code here 

after publishing web service iis workflow started show error messages. in english "the operation prohibited, because exceeds threshold value of list view, set admin". exact message in russian "Операция, попытка выполнить которую осуществляется, запрещена, поскольку она превышает пороговое значение представления списка, принудительно установленное администратором." how can iis influence sharepoint this? problem related encoding? here screenshot of error message:

enter image description here

by way, in same web service upload file sharepoint. part of code working fine in iis.


Comments

Popular posts from this blog

Delphi XE2 Indy10 udp client-server interchange using SendBuffer-ReceiveBuffer -

Qt ActiveX WMI QAxBase::dynamicCallHelper: ItemIndex(int): No such property in -

Enable autocomplete or intellisense in Atom editor for PHP -