Error Diagnostics Info --------------------------------------------------------------- Could not contact the Search Server Error Trace Info --------------------------------------------------------------- at Plumtree.Remote.PRC.Search.SearchRequestWrapper.Execute() at Sage.CMS.Foundation.Data.Folder.GetFolderID(Gateway Gateway, Int32 SearchParentFolderID, String FolderName) at Sage.CMS.Foundation.Data.Folder.GetFolderIDByPath(Gateway Gateway, Int32 SearchParentFolderID, String Path) at Sage.CMS.Foundation.Data.Folder.GetFolderIDByPath(Gateway Gateway, String Path) at Sage.CMS.Portlets.ContactUs.Data.ContactUs.GetProductsDocuments(Gateway Gateway) at Sage.CMS.Portlets.ContactUs.Summary.Page_Load(Object sender, EventArgs e) An error has occured on the portal --------------------------------------------------------------- Date/Time of Occurrence: 3/22/2010 1:17:52 AM Server: portletscms.gs.adinternal.com Environment: .com Page causing the error: C:\webcms\internal\SagePortlets\Sage.CMS\Sage.CMS.Portlets.ContactUs\v2.0\webapp\Summary.aspx Client IP Address: 10.11.96.65 Browser being used: CCBot/1.0 (+http://www.commoncrawl.org/bot.html) Referring Page: Logon User: Query String: Requested Method: GET Server Protocol: HTTP/1.1 Server Software: Microsoft-IIS/6.0 Machine Name: NAATLWEBPTRL3 Portal Gateway Information --------------------------------------------------------------- Portlet: Sage.CMS.Portlets.ContactUsSummary Community: http://www.sageaccpac.com/Company/Contact_Us Sub Portal: http://www.sageaccpac.com Cookie Struct Variables --------------------------------------------------------------- ASP.NET_SessionId: System.Web.HttpCookie Session Struct Variables --------------------------------------------------------------- Form Variables --------------------------------------------------------------- QueryString Variables ---------------------------------------------------------------

 


Runtime Error

Server Error in '/SAGE.CMS.PORTLETS/CONTACTUS' Application.

Runtime Error

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="Off"/>
    </system.web>
</configuration>

Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's <customErrors> configuration tag to point to a custom error page URL.


<!-- Web.Config Configuration File -->

<configuration>
    <system.web>
        <customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
    </system.web>
</configuration>