I'm trying to access the dataSet for a project that I just created and published through MS Project 2007 client, however, it turns out I need the project Guid to access it programmatically.
Here`s the code I want to run, from the msdn website:
public SaveProjectInfoToXml(Guid projectUid, string filePathName)
{
WebSvcProject.ProjectDataSet dsProject =
proj.ReadProject(projectUid, WebSvcProject.DataStoreEnum.PublishedStore);
dsProject.WriteXml(filePathName);
}
Question is, How do I get the projectUid for the project Id like to access!?
Why did microsoft decide to leave out such critical details?
Also, I can
t run ReadProjectList() and loop through all the projects, because my permissions aren`t high enough.
Thanks