hej,Microsoft.SharePoint.SPException: Cannot connect to the configuration database
jag kan inte browsa till min web metod och får exception, men den funkar när jag debuggar och slår F5 på Visual Studio 2005.
när en client vill kontakta web metoden får jag följande exception:
Microsoft.SharePoint.SPException: Cannot connect to the configuration database.....
här är lite code:
[WebMethod]
public string GetMyContacts()
{
try
{
Guid MySiteGuid = new Guid("5E9EAB1B-F653-43A9-B2F6-751D443E7B5F");
SPSite Site = new SPSite(MySiteGuid);
SPWeb WebSite = Site.OpenWeb();
SPListItemCollection ContactsItems = WebSite.Lists["AdminContacts"].Items;
DataTable DT = new DataTable();
DT = (DataTable)ContactsItems.GetDataTable();
return DT.Rows[1]["FirstName"].ToString();
}
catch(Exception ex)
{
return ex.ToString();
}
}