I am trying to use this code to get changes in a site collection. But i don't know how to get the databaseId.

            SiteData.SiteData siteData = new SiteData.SiteData();
            siteData.UseDefaultCredentials = true;
            siteData.Url = "http://localhost:333/_vti_bin/sitedata.asmx";
            string lastChangeID = String.Empty;
            string result = siteData.GetContent(SiteData.ObjectType.SiteCollection, "", "", "", false, false, ref lastChangeID);
            XmlDocument doc = new XmlDocument();
            doc.LoadXml(result);
            string startChangeId = string.Empty;
            string endChangeId = doc.ChildNodes[0].ChildNodes[0].Attributes["ChangeId"].Value;
            bool moreChanges;
            string databaseId = "";
            string result2 = siteData.GetChanges(SiteData.ObjectType.SiteCollection, databaseId, ref startChangeId, ref endChangeId, 5, out moreChanges);
            MessageBox.Show(result2); 

Thank you for your time.

Edit:
This is the GetContent Result:
enter image description here

link|improve this question

Why do you need to have the ContentDatabaseId? Passing an empty string for databaseId in GetChanges should give you the correct result anyway. – Edwin de Koning Jun 20 '11 at 12:43
feedback

2 Answers

up vote 1 down vote accepted

You don't need the database Id for calling "GetChanges" method on SiteCollection scope. I use "GetChangesEx" and it works well, this method returns similar information to "GetChanges". Check the protocol specification (PDF) to see the differences: Site Data protocol specification. Also, I think your problem with the "SoapServerException" is the same I had here: other question.

This code example is on the other question I mentioned, but I'll post it here for better readability:

SiteData.SiteDataSoapClient siteDataService = new SiteData.SiteDataSoapClient();
siteDataService.Endpoint.Address = new System.ServiceModel.EndpointAddress("URL/_vti_bin/sitedata.asmx");
siteDataService.ClientCredentials.Windows.ClientCredential = new System.Net.NetworkCredential("username", "password", "domain");
siteDataService.ClientCredentials.Windows.AllowedImpersonationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation;

String xmlInput = "<GetChanges>" + 
                  "<ObjectType>7</ObjectType>" + 
                  "<ContentDatabaseId/>" + 
                  "<StartChangeId>1;1;69b025ce-96a7-4131-adc0-7da1603e8d24;634439727021700000;47404</StartChangeId>" + 
                  "<EndChangeId>1;1;69b025ce-96a7-4131-adc0-7da1603e8d24;634441802456970000;47472</EndChangeId>" + 
                  "<RequestLoad>100</RequestLoad>" + 
                  "<GetMetadata>False</GetMetadata>" + 
                  "<IgnoreSecurityIfInherit>True</IgnoreSecurityIfInherit>" + 
                  "</GetChanges>";
String result = siteDataService.GetChangesEx(1, xmlInput);
link|improve this answer
Thanks alot! I used GetChangesEx() instead of GetChanges() like you described and it worked. – Moussa Jun 22 '11 at 7:02
feedback

You can call the siteData.GetContent method again, this time with the ContentDatabase as ObjectType. The returning CAML should contain the ContentDatabaseId.

string s = siteData.GetContent(SiteData.ObjectType.ContentDatabase, "", "", "", false, false, ref lastChangeID);
link|improve this answer
I have updated the question. Please take a look at the result of GetContent() – Moussa Jun 20 '11 at 8:18
@Moussa: I am sorry, I misread your original code. I have updated my answer. – Edwin de Koning Jun 20 '11 at 8:34
@Edwin: When i execute this code nothing happens and the code that comes after it doesn't run. I don't know what is the problem. – Moussa Jun 20 '11 at 8:41
@Moussa: I am sorry, I am stumped as well. You can always try to post your question on sharepoint.stackexchange.com – Edwin de Koning Jun 20 '11 at 10:09
@Edwin: the exception that i got when executing the code you gave to me is: 'Microsoft.SharePoint.SoapServer.SoapServerException' have you any idea what that means? – Moussa Jun 20 '11 at 12:28
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.