tags:

views:

114

answers:

2

Currently, i am working on sending/receiving mail project on Win7, i want to use Seolib.dll (COM) to handle for event sending/receiving mails but Win7 is not supported this one. So is there any solution for this issue?

I am doing on C# language.

using SEOLib;

namespace CatGlobeSmtpEventSink_Head { public class CatGlobeMailTransportSubmission : ISMTPOnArrival, IEventIsCacheable { private static List siteInfos; private static CGDateTime lastRefresh = CGDateTime.MinValue;

  private static object locker = new object(); 

  public CatGlobeMailTransportSubmission() 
  { 
     Logger.CreateInstance(ConfigurationInfo.CreateInstance(), true).Add(LogEntryType.Information, "{0} constructor called", ConfigurationInfo.SINK_NAME); 
     RefreshConfiguration(); 
  } 

.....................................

A: 

I am doing on C# language.

using SEOLib;

namespace CatGlobeSmtpEventSink_Head { public class CatGlobeMailTransportSubmission : ISMTPOnArrival, IEventIsCacheable { private static List siteInfos; private static CGDateTime lastRefresh = CGDateTime.MinValue;

  private static object locker = new object();

      public CatGlobeMailTransportSubmission()
  {
     Logger.CreateInstance(ConfigurationInfo.CreateInstance(), true).Add(LogEntryType.Information, "{0} constructor called", ConfigurationInfo.SINK_NAME);
     RefreshConfiguration();
  }
  .....................................

...................................................

Son
John Saunders
A: 

Please check out this article:
http://stackoverflow.com/questions/1120132/smtp-not-working-in-windows-7

RandyMorris
Not the same because i am using the smtp event reference to SEOLib.dll so when i build the solution, i will get error.Error 3 The type or namespace name 'SEOLib' could not be found (are you missing a using directive or an assembly reference
Son
is the dll registered?
RandyMorris
Of course, i have been registered!
Son