Author |
|
Venkatesh Newbie
Joined: 26 June 2006
Online Status: Offline Posts: 1
|
Posted: 26 June 2006 at 1:22pm | IP Logged
|
|
|
My smtp .net (in an asp.net)is properly running in my machine.I am maintaining my web site in a remote server.How ever when i installed my asp.net application in the remote server I am getting Unknown error.
What is the reason & what should i do to rectify the error
Venkatesh
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 28 June 2006 at 8:57am | IP Logged
|
|
|
There can be two types of "unknown error" in your application powered by MailBee.NET SMTP
Component:
- error returned by ASP.NET engine
- error returned by MailBee.NET SMTP Component
Usually, any ASP.NET error is followed by an error code or text description. Thus, could
you please send complete text or screenshot (in .gif or .jpg format) of error message to support@afterlogic.com to let us investigate the problem in more detail? Or you can provide us with URL pointing to your web site, thus, we would be able to see the error message.
If this error is returned by MailBee.NET SMTP Component, error description can be found in a log file. Thus, could you please enable logging SMTP session into a file, try to reproduce the problem, and send us the log for examination?
You can enable logging as follows (in C# syntax):
Code:
Smtp mailer = new Smtp();
mailer.Log.Filename = @"C:\log.txt"
mailer.Log.Enabled = true;
...
|
|
|
Make sure your application has permissions to write into the specified location.
Regards,
Alex
|
Back to Top |
|
|