Guys, I created a Sync DLL using VB.NET as per the following article: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wss/wss/_esdk_building_managed_event_sink_dlls.asp What do I need to do to deploy it? The article does not have instructions and [obviously] I am totally new to exchange development. Thank you in advance!
Hello Juan, your next step is to register your assembly on the exchange server via regsvcs. Before you do that, add these attributes to your assemblyinfo.vb: [assembly: ApplicationActivation(ActivationOption.Server)] [assembly: ApplicationName("<ApplicationName>")] [assembly: ApplicationAccessControl(false ,AccessChecksLevel = AccessChecksLevelOption.Application)] (This is C# code obviously... you must translate it, and replace the <ApplicationName> :-) Then, call regsvc /fc <assemblyfile> Now you can adjust the permissions of the COM+ application in the COM+ MMC. The final step is to register the assembly on your target folder. See http://msdn.microsoft.com/library/en-us/wss/wss/_exch2k_managing_event_registrations_with_regevent_vbs.asp for more information. Greetings, Henning Krause MVP - Exchange http://www.infinitec.de "Juan Romero" wrote in message news:%23L7AodN1FHA.1168@TK2MSFTNGP10.phx.gbl... > Guys, > > I created a Sync DLL using VB.NET as per the following article: > http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wss/wss/_esdk_building_managed_event_sink_dlls.asp > > What do I need to do to deploy it? The article does not have instructions > and [obviously] I am totally new to exchange development. > > Thank you in advance! >