Software Information

Removing Incoming Email in MS Exchange, C# Example


The purpose of one of our projects was MS Exchange handler for processing incoming email.

The basic source of knowledge was this article "Developing Managed Event Sinks/Hooks for Exchange Server Store using C#" by Logu Krishnan, published to the address http://www.codeproject.com/csharp/CsManagedEventSinksHooks.asp, and also examples from Microsoft Exchange SDK.

We utilized Synchronous Events and created the handler, which fires on OnSyncSave event. The handler creates activity record in Microsoft CRM and then removes the message in the Exchange database before the commitment:

public void OnSyncSave(IExStoreEventInfo pEventInfo, string bstrURLItem, int IFlags) { try { if (IFlags == ((int)EVT_SINK_FLAGS.EVT_SYNC_COMMITTED + (int)EVT_SINK_FLAGS.EVT_IS_DELIVERED)) {

ProcessMessage(pEventInfo, bstrURLItem, IFlags);

}

}

catch (Exception ex) {

log.Debug(ex.Message + " " + ex.StackTrace);

}

finally {

LogManager.Shutdown();

} }

For Exchange handlers debugging - it is the extremely convenient to use system log4net in RollingLogFileAppender or RemoteAppender modes (for multiple instance of COM + objects). You can read more on this subject here http://logging.apache.org/log4net/ To allow the handler incoming mail removal, it is necessary to give proper rights to the user, under which account the COM+ application runs the handler. These are rights on change of the information in user's boxes for whom it is registered (Windows 2003 Server: Active Directory Users and Computer -> Users -> Properties (for COM+ application account) -> Exchange Advanced -> Mailbox Rights). And now the code:

private void DeleteMessage(string bstrURLItem) { try {

ADODB.Connection oCn = new ADODB.Connection();

oCn.Provider = "exoledb.datasource";

oCn.Open(bstrURLItem, "", "", -1);

if(oCn.State == 1) {

log.Debug("Good Connection");

}

else {

log.Debug("Bad Connection");

}

ADODB.Record rec = new ADODB.Record();

rec.Open(bstrURLItem, oCn,

ADODB.ConnectModeEnum.adModeReadWrite,

ADODB.RecordCreateOptionsEnum.adFailIfNotExists,

ADODB.RecordOpenOptionsEnum.adOpenSource,

"", "");

rec.DeleteRecord(bstrURLItem, false);

rec.Close();

oCn.Close();

rec = null;

oCn = null;

}

catch (Exception ex) {

log.Debug(ex.Message + " " + ex.StackTrace);

} }

Happy customizing! Boris Makushkin

Boris Makushkin is Software Engineer in Alba Spectrum Technologies - USA nationwide Microsoft CRM, Microsoft Great Plains customization company, based in Chicago, Boston, San Francisco, San Diego, Los Angeles, Houston, Atlanta, New York, and Miami and having locations in multiple states and internationally (www.albaspectrum.com), he is Dexterity, SQL, VB/C#.Net, Crystal Reports and Microsoft CRM SDK developer.


MORE RESOURCES:

Jive Software Q4 Earnings, Revenue Beat Street
Forbes
Updated: Enterprise social networking company Jive Software reported its first earnings as a public company today, beating Street earnings and revenue expectations. Jive generated $22.5 million in revenue in the fourth quarter of 2011, up 53% from the ...
Photo Release -- Jive Software Announces Fourth Quarter and Full Year 2011 ...GlobeNewsWire (press release)
Jive Software Q4 Loss Widens - Quick FactsNASDAQ
Jive reports bigger 4Q loss, higher revenueBusinessWeek

all 49 news articles »


1 Software Stock to Buy Now
DailyFinance
The company, which specializes in providing accounting, inventory management, and other operational software over the Web, projected $0.19 to $0.21 in adjusted earnings on $295 million to $300 million in profits. All figures represented an increase ...

and more »


Advent Software Beats on EPS, but GAAP Results Lag
msnbc.com
31 (Q4), Advent Software beat expectations on revenues and beat expectations on earnings per share. Compared to the prior-year quarter, revenue expanded significantly and GAAP earnings per share contracted significantly. Advent Software notched revenue ...

and more »


American Software, Inc. Invites You to Join It's Third Quarter of Fiscal Year ...
MarketWatch (press release)
ATLANTA, Feb 07, 2012 (BUSINESS WIRE) -- In conjunction with American Software's Third Quarter of Fiscal Year 2012 Results /quotes/zigman/68042/quotes/nls/amswa AMSWA -2.11% , you are invited to listen to its conference call that will be broadcast live ...

and more »


Guidance Software Acquires CaseCentral
socalTech.com
Pasadena-based Guidance Software, which develops digital forensics and e-discovery software, said Tuesday afternoon that it has signed a definitive agreement to acquire CaseCentral, a developer of electronic discovery software.
Guidance Software to Acquire CaseCentralMarketWatch (press release)
GUIDANCE SOFTWARE, INC.: Guidance Software Reports Q4 2011 Financial Resul..4-traders (press release)

all 13 news articles »


Bradenton Herald

Hydrovolts Uses Autodesk Software to Create Plug-and-Play Water Turbines
MarketWatch (press release)
SAN RAFAEL, Calif., Feb 07, 2012 (BUSINESS WIRE) -- Clean technology innovator Hydrovolts is using software from Autodesk, Inc. /quotes/zigman/68719/quotes/nls/adsk ADSK +1.55% to create unique hydrokinetic turbines that are more easily installed in ...
Hydrovolts Turbine For Clean Energy Generation, Designed With The Help Of ...TheStreet.com (press release)
AUTODESK, INC.: Hydrovolts Uses Autodesk Software to Create Plug-and-Play ..4-traders (press release)

all 7 news articles »


Rocket Software's $300 Million Dividend Loan Rises in Trading
Bloomberg
Rocket Software Inc.'s $300 million term loan to fund a dividend to Court Square Capital Partners rose in initial trading, according to data provider Markit Group Ltd. The six-year debt first exchanged hands at 99.88 cents on the dollar, according to ...

and more »


FRANCE 24

Oracle Rejects $272M SAP Award, Demands New Trial
ABC News
Business software maker Oracle Corp. has turned down $272 million in court-ordered damages from SAP AG in hopes of leaving a much bigger dent in its rival's pocketbook and reputation during a second trial over allegations of corporate theft.
Oracle wants new trial in SAP caseAFP

all 231 news articles »


Wired News

Google Offers Mobile Chrome Browser for New Android Software
BusinessWeek
7 (Bloomberg) -- Google Inc., seeking to get more of its desktop-computer software onto mobile devices, introduced a test version of its Chrome Web browser for the latest Android operating system. The browser, first unveiled in 2008, will be available ...
Google Chrome browser launches for Android - videoDigital Spy

all 227 news articles »


Confio Claims 2011 Growth
techrockies.com
Privately held Confio, the Boulder-based maker of database performance management software, reports today that it has 71 percent revenue growth in 2011. The firm--which did not disclose actual revenue numbers--also said it has more than doubled the ...
Confio Software Finishes 2011 with Soaring GrowthEON: Enhanced Online News (press release)

all 7 news articles »

Google News

Home | Site Map

Powered By: Free Work At Home Business Opportunity!

© 2006