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

Popular posts from this blog

css - Which browser returns the correct result for getBoundingClientRect of an SVG element? -

gcc - Calling fftR4() in c from assembly -

Function that returns a formatted array in VBA -