Home
IPhone SMS To Gmail
Consulting
Blog
Software
Projects
Links
About
Contact
Blog
Facebook
Twitter
LinkedIn
|
<< Back To All Blogs
Retrieving data from SharePoint SOAP Requests using LINQ
Wednesday, May 13th, 2009
As I have been doing quite a bit of work with the SharePoint web services I recently came across an interesting issue related to querying SOAP XML, and specifically in SharePoint. This issue also applies to other SOAP requests, and XML requests in general that have Namespace prefixes.
The issue arises while trying to do a very common LINQ query such as the following:
var lists = from list in doc.Descendants("List")
select
new SharePointList
{
Description = list.Attribute("Description").Value,
Id = list.Attribute("ID").Value,
Title = list.Attribute("Title").Value
};
I was positive that my query was correct, but it was continually returning 0 results.
Enter the world of namespacing. I assumed that because the List element was not specifically prefixed that it would not matter, but I was wrong.
From a few levels above, in this example the element was GetListCollectionResponse, there was a namespace declared which was http://schemas.microsoft.com/sharepoint/soap/.
You cannot simply add the namespace with a colon in LINQ because it is an invalid element name.
You need to declare a specific XMLNamespace element like so:
XNamespace s = "http://schemas.microsoft.com/sharepoint/soap/";
Then, modify the above query to change the doc.Descendants element to the following:
doc.Descendants(s + "List")
After this minor modification everything worked exactly as expected.
Namespacin' Tom Out.
Tags
SharePoint
CSharp
XML
LINQ
Related Blogs
Automatically Setting File Name in SharePoint when submitting an InfoPath 2007 Form
Adding a Custom ASP.NET Page to MOSS/WSS
SharePoint RPC: Corrupted Binary Files
Fixing SharePoint error Log with "Preserving template record"
Using Ext JS in SharePoint... a tip
Comments
Currently no comments.
Add A Comment
Name:
URL:
Email Address: (not public, used to send notifications on further comments)
Comments:
Please enter the text from the image:

|