GithubHelp home page GithubHelp logo

.webService() error 500 about sharepointplus HOT 8 CLOSED

aymkdn avatar aymkdn commented on June 12, 2024
.webService() error 500

from sharepointplus.

Comments (8)

Aymkdn avatar Aymkdn commented on June 12, 2024 1

I can see the server returns Server did not recognize the value of HTTP Header SOAPAction: http://schemas.microsoft.com/sharepoint/soap/RemoveUserFromGroup.

It looks like the SOAP URL for this web service is http://schemas.microsoft.com/sharepoint/soap/directory/ and not http://schemas.microsoft.com/sharepoint/soap/....

I'll add a soapURL option to handle thiscase. It'll be fixed in the next release (v4.1).

In the meantime you can replace your webService with the code from https://github.com/Aymkdn/SharepointPlus/blob/development-v4.1/sharepointplus-4.1.js#L516

And to use it:

$SP().webService({ 
  service:"UserGroup",
  operation:"RemoveUserFromGroup",
  soapURL:"http://schemas.microsoft.com/sharepoint/soap/directory/",
  properties:{
    groupName:"Group",
    userLoginName:"domain\\user"
  }
}).then(function(response) {
  console.log("OK => ",response)
}, function(error) { console.log("Error => ",error) });

from sharepointplus.

micuentadecasa avatar micuentadecasa commented on June 12, 2024

I tried the former code and version 4.1. still fails, it hangs the browser.

from sharepointplus.

Aymkdn avatar Aymkdn commented on June 12, 2024

I tried the former code and version 4.1. still fails, it hangs the browser.

Please provide your code as well as the response returned from the server.

from sharepointplus.

micuentadecasa avatar micuentadecasa commented on June 12, 2024

I have downloaded the https://github.com/Aymkdn/SharepointPlus/blob/development-v4.1/sharepointplus-4.1.js#L516 file, and used this code

$SP().webService({ 
  service:"UserGroup",
  operation:"RemoveUserFromGroup",
  soapURL:"http://schemas.microsoft.com/sharepoint/soap/directory/",
  properties:{
    groupName:"Group",
    userLoginName:"domain\\user"
  }
}).then(function(response) {
  console.log("OK => ",response)
}, function(error) { console.log("Error => ",error) });

and what I get is browser hanged, got no response from server, it hangs and I can do nothing

from sharepointplus.

Aymkdn avatar Aymkdn commented on June 12, 2024

I've just tried in IE11, Firefox and Chrome, on a Sharepoint 2013, and it worked.

If you use SP2013 or higher, the userLoginName should be i:0#.w|domain\\user.

See below the code I used:

$SP().webService({
  service:"UserGroup",
  operation:"RemoveUserFromGroup",
  soapURL:"http://schemas.microsoft.com/sharepoint/soap/directory/",
  properties:{
    groupName:"Global Owners", // name of my group
    userLoginName:"i:0#.w|corporate\\aym_kdn"
  }
}).then(function(response) {
  console.log("OK => ",response)
}).catch(function(error) { console.log("Error => ",error) })

from sharepointplus.

micuentadecasa avatar micuentadecasa commented on June 12, 2024

tried and still hangs, sorry.

from sharepointplus.

Aymkdn avatar Aymkdn commented on June 12, 2024

The problem is problaly coming from your code.

You'll have to debug by yourself: create a simple page where you call SharepointPlus and with only the code above. Nothing else. Try it and see the result.

I won't help further as it doesn't seem to be related to SharepointPlus.

from sharepointplus.

micuentadecasa avatar micuentadecasa commented on June 12, 2024

I think is not my code, if I put your code on the page then it hangs, and I put it on first position. Should be something else. Anyway I've found an alternative so is not a hurry.

from sharepointplus.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.