Skip to main content

Posts

Showing posts from 2011

Mailbox database is temporary unavailable.

Working with exchange server 2010 is good experience. I have learnt many new things in that. I am using EWS api aka Exchange Web Service , to communicate with Exchange server. Everything was going smooth till yesterday. When the error was fired while sending an email using EWS API. The error message was saying that "The mailbox is unavailable"         At the same time, while logging in Exchange server -> Exchange Management Console   Clicking on  Mailbox under Server Configuration in Left Action panel, will displays an error dialog that show possible causes of the problem.        The problem can be resolved as follows:      1. Log on to Exchange Server.      2. Go to services      3. Start the Service " Microsoft Exchange Server Information store ". For safety purpose you can set the start process for this service as Automatic so that next time when your server restarted, It wont required manual start. if your exchange server and Domain controller a

Live@edu SSO redefined the alternate approach.

Microsoft provides the best service called Live@edu. This is good idea for making the schooling paper free, meaning by saying paper free is that Microsoft provides with the facility to store all the document and communication service for school and universities                 Moreover this service is free for schools and any educational organization. It provides centrally hosted email service. you can get the information about Live@edu from here To be more technical I must return to the fact that this is being written not for marketing Live@edu service but it is more about S ingle S ign O n [SSO] provided with the SSO toolkit with Live@edu account.                 Microsoft provides the SSO toolkit which is sort of sample code, with the help of which you can integrate the SSO with your application. You will get the SSO toolkit when you registered your school with Live@edu, On configuration page you can find the SSO Enable option. You can reach to that here .          Being   littl

Windows live messenger toolkit on HTTPS (Secure Layer)

Nowadays I am working on Integrating  windows live Messenger toolkit with our MVC web application. you can download toolkit straight from Microsoft's site from HERE , Though Microsoft is providing sample application for demo that shows how to integrate the Windows live messenger toolkit with your website, There were many issues while integrating with MVC web application. First challenge that I faced was to make the Demo application compatible with our MVC architect. because the sample code works based on Request and Response Architecture while MVC application follows the Action and Result architecture. So first I have to convert the all the handlers in to controller methods  then all other respective changer are to be done.                     The second Challenge was to run the application on secure layer(HTTPS) . every thing worked fine except the chat bar. It was showing some interesting error that  Channel-Url  contains different domain then that is registered. The solution w

String Replace function in IE and Firefox

Last week I was struggling with string replace function.The requirement was strange but its not in scope of this post. After spending one whole day and achieving the requirement, I have decided to club all the possible usage of replace funcation. lets start with the simplest form of Replace function.   var str = "The world is beautiful, just you need beautiful heart";         str = str.replace('beautiful', 'lovely'); In above replace call, the first only occurrence of beautiful will be replaced by heart . The resultant string will be " The world is lovely, just you beautiful heart ." The Replace() function has two arguments string or regex to be replaced string or function[that return string] to be in placed.     we'll look in every possible scenarios. Now if I want to make my replace function case insensitive, I do have to make little bit modification. as follows      var str = "The world is Beautiful, just you need Beautif