Asked by:
Object reference not set to an instance of an object ERROR when clicking Web Application List link in SharePoint 2010 CA

-
Whenever I try to access the Web application list in Central Administration I get this error. Every other part of the CA is fine, I can access links with no problems. Its just this one link that takes me to the web app list that is giving me errors.
Object reference not set to an
instance of an object.Correlation ID:
0c9e8c92-5e2d-469e-bc42-3060e7bff7e8Date and Time: 10/8/2013 11:52:07
AMHere is what I get from the LOGS:
Name=Request (GET:http://phpw164:38589/_admin/WebApplicationList.aspx) 770670d4-2192-4fe2-aa45-5e9d60e68795
10/08/2013 11:05:47.81 w3wp.exe (0x517C) 0x11D4 SharePoint Foundation Logging Correlation Data xmnv Medium Site=/ 770670d4-2192-4fe2-aa45-5e9d60e68795
10/08/2013 11:05:47.84 w3wp.exe (0x517C) 0x11D4 SharePoint Foundation Runtime tkau Unexpected System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.SharePoint.Administration.SPWebApplication.GetResponseUri(SPUrlZone zone) at Microsoft.SharePoint.ApplicationPages.ManageWebApplicationsDataSourceView.FillDataTable(DataTable table, DataSourceSelectArguments selectArguments) at Microsoft.SharePoint.WebControls.DataTableDataSourceView.Select(DataSourceSelectArguments selectArguments) at Microsoft.SharePoint.WebControls.AdministrationDataSourceView.ExecuteSelect(DataSourceSelectArguments arguments) at System.Web.UI.DataSourceView.Select(DataSourceSelectArguments arguments, DataSourceViewSelectCallback callback) at System.Web.UI.WebControls.DataBoundControl.PerformSelect() at System.Web.UI.WebControls.BaseDataBoundContr... 770670d4-2192-4fe2-aa45-5e9d60e68795
10/08/2013 11:05:47.84* w3wp.exe (0x517C) 0x11D4 SharePoint Foundation Runtime tkau Unexpected ...ol.EnsureDataBound() at System.Web.UI.WebControls.CompositeDataBoundControl.CreateChildControls() at System.Web.UI.Control.EnsureChildControls() at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Control.PreRenderRecursiveInternal() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 770670d4-2192-4fe2-aa45-5e9d60e68795
10/08/2013 11:05:47.84 w3wp.exe (0x517C) 0x11D4 SharePoint Foundation Performance nask Unexpected An SPRequest object was not disposed before the end of this thread. To avoid wasting system resources, dispose of this object or its parent (such as an SPSite or SPWeb) as soon as you are done using it. Due to flags specified at object creation, this will not be freed until processed by garbage collection. Allocation Id: {D9EF516E-A83C-457D-8B70-86B6CC735DA9} To determine where this object was allocated, set Microsoft.SharePoint.Administration.SPWebService.ContentService.CollectSPRequestAllocationCallStacks = true. 770670d4-2192-4fe2-aa45-5e9d60e68795
Any help would be greatly appreciated.
Question
All replies
-
It looks like one of the Web Applications may have a bad Alternate Access Mapping for one or more of the Zones. Do you have any extended Web Applications, or are they all using the Default zone?
Can you run and share the output of:
foreach($wa in Get-SPWebApplication){$wa.AlternateUrls}
The output should be similar to:
IncomingUrl Zone PublicUrl ----------- ---- --------- http://sharepoint2013 Default http://sharepoint2013 http://fba2013webapp1 Default http://fba2013webapp1 http://foundfba Default http://foundfba http://mysites2013 Default http://mysites2013 http://sp2013webapp1extended Intranet http://sp2013webapp... http://sp2013webapp1 Default http://sp2013webapp1 http://sp2013webapp2 Default http://sp2013webapp2 http://sp2013webapp3 Default http://sp2013webapp3
Trevor Seward, MCC
Follow or contact me at...
  
This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.
-
-