I'm trying to use the SiteDate WS in SPP 2003. I'm an admin on the box and with the SPP server. I've been able to get other web services to work, but not this one. Keep getting Unathorized errors. I've set the credentials, but to no avail. Here's my code
palm_web_service.SiteData.SiteData sd = new palm_web_service.SiteData.SiteData();
sd.Credentials = System.Net.CredentialCache.DefaultCredentials;
palm_web_service.SiteData._sList[] lists;
sd.GetListCollection(out lists);
foreach (palm_web_service.SiteData._sList list in lists)
Debug.WriteLine(list.Title.ToString());
palm_web_service.SiteData.SiteData sd = new palm_web_service.SiteData.SiteData();
sd.Credentials = System.Net.CredentialCache.DefaultCredentials;
palm_web_service.SiteData._sList[] lists;
sd.GetListCollection(out lists);
foreach (palm_web_service.SiteData._sList list in lists)
Debug.WriteLine(list.Title.ToString());