Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Accessing SharePoint via SOAP

by tomva (Initiate)
on Sep 09, 2011 at 20:51 UTC ( [id://925162]=perlquestion: print w/replies, xml ) Need Help??

tomva has asked for the wisdom of the Perl Monks concerning the following question:

Hello all-

I have been trying to talk to a sharepoint server, starting with this post: squish.net link

The server is running SharePoint 2010, and I'm accessing via https.

I've been able to connect and make SOAP requests, and I am able to successfully invoke GetListCollection(), for instance.

However, all of my attempts to call GetListItems() fail with a "Value does not fall within the expected range." exception from the server.

I'm guessing the documentation online is for older versions of SharePoint, so there is some additional field I need to supply to my GetListItems() call. But the errors are pretty opaque, and I've been unable to find, guess, or steal the correct field from MSDN or other searches.

Has anyone run into this or have any suggestions?

Here is a sample request as dumped by SOAP::Lite: (the listName is the list ID as returned by GetListCollection).
<?xml version="1.0" encoding="UTF-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <namesp2:GetListItems xmlns:namesp2="http://schemas.microsoft.com/ +sharepoint/soap/"> <listName xsi:type="xsd:string">{C3E2B6FC-8847-49F7-8164-E98FDE4 +08FC0}</listName> </namesp2:GetListItems> </soap:Body> </soap:Envelope>


And the response:
<?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" +xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http +://www.w3.org/2001/XMLSchema"> <soap:Body> <soap:Fault> <faultcode>soap:Server</faultcode> <faultstring>Exception of type 'Microsoft.SharePoint.SoapServer.Soa +pServerException' was thrown.</faultstring> <detail> <errorstring xmlns="http://schemas.microsoft.com/sharepoint/soap +/">Value does not fall within the expected range.</errorstring> </detail> </soap:Fault> </soap:Body> </soap:Envelope>


Thanks for any help or suggestions!

    -Thomas

Replies are listed 'Best First'.
Re: Accessing SharePoint via SOAP
by Anonymous Monk on Sep 10, 2011 at 04:09 UTC

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: perlquestion [id://925162]
Approved by chrestomanci
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (2)
As of 2024-04-26 05:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found