iis - Sp Services not working with Https -
i have sharepoint 2010 installation. using sp services 2013.01 find if current user in sharepoint group. works great if url not set https. when url secured, status response call error , responsexml undefined. here example of doing:
var groupname = "my group"; $().spservices({ operation: "getgroupcollectionfromuser", userloginname: $().spservices.spgetcurrentuser(), async: false, completefunc: function(xdata, status) { if($(xdata.responsexml).find("group[name='" + groupname + "']").length == 1) { // yes user in group isuseringroup = true; } } }); return isuseringroup;
but when site https comes error. may not code problem , may iis issue, trying insight on check on.
thanks.
Comments
Post a Comment