log .net errors

log .net errors

We have a .net app that will put errors in the event viewer of the windows server ti resides on.  What is the best way to get notified for this error.  Thanks.  

here is the error
  1. Log Name:      Application
  2. Source:        ASP.NET 4.0.30319.0
  3. Date:          4/22/2014 12:56:18 PM
  4. Event ID:      1309
  5. Task Category: Web Event
  6. Level:         Warning
  7. Keywords:      Classic
  8. User:          N/A
  9. Computer:      ftp
  10. Description:
  11. Event code: 3005 
  12. Event message: An unhandled exception has occurred. 
  13. Event time: 4/22/2014 12:56:18 PM 
  14. Event time (UTC): 4/22/2014 5:56:18 PM 
  15. Event ID: d1c5c33349ad441299b01bd56bfce242 
  16. Event sequence: 893 
  17. Event occurrence: 23 
  18. Event detail code: 0 
  19.  
  20. Application information: 
  21.     Application domain: /LM/W3SVC/2/ROOT/LogOnSection-1-130426399383326250 
  22.     Trust level: Full 
  23.     Application Virtual Path: /LogOnSection 
  24.     Application Path: Q:\inetpub\wwwroot\ftp_scic_com\LogOnSection\ 
  25.     Machine name: FTP 
  26.  
  27. Process information: 
  28.     Process ID: 304 
  29.     Process name: w3wp.exe 
  30.     Account name: IIS APPPOOL\ftp_scic_com 
  31.  
  32. Exception information: 
  33.     Exception type: COMException 
  34.     Exception message: The transport failed to connect to the server.

  35.    at Microsoft.VisualBasic.CompilerServices.LateBinding.InternalLateCall(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack, Boolean IgnoreReturn)
  36.    at NA.Util.SendHTML2Mail(String SendTo, String SentFrom, String TextBody, String HTMLBody, String Subject) in Q:\inetpub\wwwroot\ftp_scic_com\LogOnSection\App_Code\Util.vb:line 84
  37.    at NA.UpdateInfo.Update_Click(Object sender, EventArgs e) in Q:\inetpub\wwwroot\ftp_scic_com\LogOnSection\UpdatePersonalInfo\UpdateInfo.aspx.vb:line 307
  38.    at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
  39.    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

  40.  
  41.  
  42. Request information: 
  43.     Request URL: https://ftp.scic.com:443/LogOnSection/UpdatePersonalInfo/UpdateInfo.aspx?TransID=1124203&cpid=10001 
  44.     Request path: /LogOnSection/UpdatePersonalInfo/UpdateInfo.aspx 
  45.     User host address: 50.197.15.137 
  46.     User:  
  47.     Is authenticated: False 
  48.     Authentication Type:  
  49.     Thread account name: IIS APPPOOL\ftp_scic_com 
  50.  
  51. Thread information: 
  52.     Thread ID: 51 
  53.     Thread account name: IIS APPPOOL\ftp_scic_com 
  54.     Is impersonating: False 
  55.     Stack trace:    at Microsoft.VisualBasic.CompilerServices.LateBinding.InternalLateCall(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack, Boolean IgnoreReturn)
  56.    at NA.Util.SendHTML2Mail(String SendTo, String SentFrom, String TextBody, String HTMLBody, String Subject) in Q:\inetpub\wwwroot\ftp_scic_com\LogOnSection\App_Code\Util.vb:line 84
  57.    at NA.UpdateInfo.Update_Click(Object sender, EventArgs e) in Q:\inetpub\wwwroot\ftp_scic_com\LogOnSection\UpdatePersonalInfo\UpdateInfo.aspx.vb:line 307
  58.    at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
  59.    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
  60.  
  61.  
  62. Custom event details: 

  63. Event Xml:
  64. <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  65.   <System>
  66.     <Provider Name="ASP.NET 4.0.30319.0" />
  67.     <EventID Qualifiers="32768">1309</EventID>
  68.     <Level>3</Level>
  69.     <Task>3</Task>
  70.     <Keywords>0x80000000000000</Keywords>
  71.     <TimeCreated SystemTime="2014-04-22T17:56:18.000000000Z" />
  72.     <EventRecordID>2662</EventRecordID>
  73.     <Channel>Application</Channel>
  74.     <Computer>ftp</Computer>
  75.     <Security />
  76.   </System>
  77.   <EventData>
  78.     <Data>3005</Data>
  79.     <Data>An unhandled exception has occurred.</Data>
  80.     <Data>4/22/2014 12:56:18 PM</Data>
  81.     <Data>4/22/2014 5:56:18 PM</Data>
  82.     <Data>d1c5c33349ad441299b01bd56bfce242</Data>
  83.     <Data>893</Data>
  84.     <Data>23</Data>
  85.     <Data>0</Data>
  86.     <Data>/LM/W3SVC/2/ROOT/LogOnSection-1-130426399383326250</Data>
  87.     <Data>Full</Data>
  88.     <Data>/LogOnSection</Data>
  89.     <Data>Q:\inetpub\wwwroot\ftp_scic_com\LogOnSection\</Data>
  90.     <Data>FTP</Data>
  91.     <Data>
  92.     </Data>
  93.     <Data>304</Data>
  94.     <Data>w3wp.exe</Data>
  95.     <Data>IIS APPPOOL\ftp_scic_com</Data>
  96.     <Data>COMException</Data>
  97.     <Data>The transport failed to connect to the server.

  98.    at Microsoft.VisualBasic.CompilerServices.LateBinding.InternalLateCall(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack, Boolean IgnoreReturn)
  99.    at NA.Util.SendHTML2Mail(String SendTo, String SentFrom, String TextBody, String HTMLBody, String Subject) in Q:\inetpub\wwwroot\ftp_scic_com\LogOnSection\App_Code\Util.vb:line 84
  100.    at NA.UpdateInfo.Update_Click(Object sender, EventArgs e) in Q:\inetpub\wwwroot\ftp_scic_com\LogOnSection\UpdatePersonalInfo\UpdateInfo.aspx.vb:line 307
  101.    at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
  102.    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)

  103. </Data>
  104.     <Data>https://ftp.scic.com:443/LogOnSection/UpdatePersonalInfo/UpdateInfo.aspx?TransID=1124203&amp;cpid=10001</Data>
  105.     <Data>/LogOnSection/UpdatePersonalInfo/UpdateInfo.aspx</Data>
  106.     <Data>50.197.15.137</Data>
  107.     <Data>
  108.     </Data>
  109.     <Data>False</Data>
  110.     <Data>
  111.     </Data>
  112.     <Data>IIS APPPOOL\ftp_scic_com</Data>
  113.     <Data>51</Data>
  114.     <Data>IIS APPPOOL\ftp_scic_com</Data>
  115.     <Data>False</Data>
  116.     <Data>   at Microsoft.VisualBasic.CompilerServices.LateBinding.InternalLateCall(Object o, Type objType, String name, Object[] args, String[] paramnames, Boolean[] CopyBack, Boolean IgnoreReturn)
  117.    at NA.Util.SendHTML2Mail(String SendTo, String SentFrom, String TextBody, String HTMLBody, String Subject) in Q:\inetpub\wwwroot\ftp_scic_com\LogOnSection\App_Code\Util.vb:line 84
  118.    at NA.UpdateInfo.Update_Click(Object sender, EventArgs e) in Q:\inetpub\wwwroot\ftp_scic_com\LogOnSection\UpdatePersonalInfo\UpdateInfo.aspx.vb:line 307
  119.    at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)
  120.    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
  121. </Data>
  122.   </EventData>
  123. </Event>
                New to ADManager Plus?

                  New to ADSelfService Plus?