When try to edit any page using SP Designer error
soap:Server was unable to process request. ---> Value does not fall
within the expected range appear.
When you face the following error check:
When you face the following error check:
- Check from Site Collection Administration SharePoint Designer Settings
and Enable the following:
- Enable Detaching Pages from the Site Definition
- Enable Customizing Master Pages and Page Layouts
- Enable Managing of the Web Site URL Structure
- Check Url exist in alternate access mapping.
- Check your dns client.
2 comments:
I get this error when I use Web Services the sample code is as follows: private void GetWebPartPageDocument()
{
// NOTE: The Web Service we are using is defined on MyServer/_vti_bin
// Declare and initialize a variable for the WebPartPages Web Service.
SharepointWebSrv.WebPartPagesWebService svc = new SharepointWebSrv.WebPartPagesWebService();
// Authenticate the current user by passing their default
// credentials to the Web Service from the system credential cache.
svc.Credentials = System.Net.CredentialCache.DefaultCredentials;
string result = "";
// docName accepts full HTTP urls or relative paths under root
string docName = "http://http://mysharepoint/SitePages/MyPAge.aspx";
result = svc.GetWebPartPageDocument(docName);
Console.WriteLine("Result is: \n {0}\n",result);
Console.WriteLine("-----Hit enter-----");
Console.ReadLine();
}
tried the alternate urls
nslookup works forward and reverse
The sharepoint server is running on the same server that I am developing on and the database. Not a farm
If you all available permission.
Check Page Layout url. for more details check url:
http://blogs.msdn.com/b/sowmyancs/archive/2008/08/06/value-does-not-fall-within-the-expected-range-while-accessing-publishing-portal-pages.aspx
Post a Comment