Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1. Server Error in '/control' Application.
  2.  
  3. The operation has timed out
  4.  
  5. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
  6.  
  7. Exception Details: System.Net.WebException: The operation has timed out
  8.  
  9. Source Error:
  10.  
  11. The source code that generated this unhandled exception can only be shown when compiled in debug mode. To enable this, please follow one of the below steps, then request the URL:
  12.  
  13. 1. Add a "Debug=true" directive at the top of the file that generated the error. Example:
  14.  
  15. <%@ Page Language="C#" Debug="true" %>
  16.  
  17. or:
  18.  
  19. 2) Add the following section to the configuration file of your application:
  20.  
  21. <configuration>
  22. <system.web>
  23. <compilation debug="true"/>
  24. </system.web>
  25. </configuration>
  26.  
  27. Note that this second technique will cause all files within a given application to be compiled in debug mode. The first technique will cause only that particular file to be compiled in debug mode.
  28.  
  29. Important: Running applications in debug mode does incur a memory/performance overhead. You should make sure that an application has debugging disabled before deploying into production scenario.
  30.  
  31. Stack Trace:
  32.  
  33.  
  34. [WebException: The operation has timed out]
  35. System.Net.HttpWebRequest.GetResponse() +1126
  36. System.Runtime.Remoting.Channels.Http.HttpClientTransportSink.ProcessMessage(IMessage msg, ITransportHeaders requestHeaders, Stream requestStream, ITransportHeaders& responseHeaders, Stream& responseStream) +62
  37.  
  38. [RemotingTimeoutException: The request timed out.]
  39. System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) +10259338
  40. System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type) +539
  41. TCAdminBase.Plugins.IGenericPlugIn.Execute(Object[] xce8d8c7e3c2c2426) +0
  42. ASP.templates_default_fast_download_aspx.__Render__control1(HtmlTextWriter __w, Control parameterContainer) +694
  43. System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +115
  44. System.Web.UI.Page.Render(HtmlTextWriter writer) +38
  45. System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +4240
  46.  
  47. Version Information: Microsoft .NET Framework Version:2.0.50727.3623; ASP.NET Version:2.0.50727.3618
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement