Click here to Skip to main content
15,887,477 members
Articles / Web Development / ASP.NET
Tip/Trick

Active Directory Services - Email Creation

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
19 Aug 2014CPOL1 min read 7.3K   3   1
This article and tip describes how to create or delete an Active Directory Services Email using ASP.NET web page, remotely.

 

This article describes how to create or delete an Active Directory Services Email using ASP.NET web page, remotely. 

 

The whole idea is that email creation and deletion cannot be done remotely. An email only can be added or deleted from the server that holds the Active Directory Services. 

 

Here is what we can do: 

 

  • On the Active Directory Services Server or the remote computer that holds the Active Directory Services, we need to create and  install WINDOWS service 

  • This windows service holds a class that contains the following methods: 

  • CreateUserEmail ( string adsUser) 

  • String adsUser must be in the form [first name] [space] [last name] [space] [company name(OU, or organizational unit in ADS)] 

  • SecureYourString( string input ) – this method converts a regular string to secure string  

  • On the ASP.NET website, that is hosted on remote computer, away from Active Directory Services, running on local or production IIS, we have a class, name it whatever you want, that contains a method: 

  • ADS_CreateMailBox ( string firstName, string lastName, string userName, string companyOU) 

  • Inside this method we use the following two classes: 

  • System.Runtime.Remoting.RemotingConfiguration.RegisterWellKnownClientType() 

  • RemotingConfiguration.IsWellKnownClientType() 

  • And here is the trick that makes it all happen:  On Active Directory Services Server, and on the Windows Service that we created earlier over there, a reference DLL, and not Windows or Web Service reference, should be added or copied from our local ASP.NET website.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Canada Canada
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Humayun Kabir Mamun19-Aug-14 22:11
Humayun Kabir Mamun19-Aug-14 22:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.