Click here to Skip to main content
15,879,326 members
Articles / Web Development / HTML

Direct OWA Login

Rate me:
Please Sign up or sign in to vote.
4.00/5 (4 votes)
28 Jul 2009CPOL 37K   12   5
Directly login in OWA interface bypassing the login screen.

Introduction

There are times when we need to redirect a user from one application to web mail access or OWA (Office Web Access) by bypassing the login screen of the OWA. Let me share a script and technique to do so.

Using the code

Here is the JavaScript function:

JavaScript
function DirectLogin (vstrServer, vstrDomain, vstrUsername, vstrPassword) {
          
      //var url = "https://" + server + "/exchweb/bin/auth/owaauth.dll";
      var strUrl = "https://" + vstrServer + "/exchweb/bin/auth/owaauth.dll";
      var strExchange = {destination:'https://' + vstrServer + 
         '/exchange',flags:'0',forcedownlevel:'0', 
         trusted:'0',isutf8:'1',username:vstrDomain + 
         '\\' + vstrUsername,password:vstrPassword};
                
      var myForm = document.createElement("form");
      myForm.method="post" ;
      myForm.action = url ;

      for (var varElement in strExchange) {
      
        var myInput = document.createElement("input") ;
        myInput.setAttribute("name", varElement) ;
        myInput.setAttribute("value", strExchange[varElement]);
        myForm.appendChild(myInput) ;
      }
          
      document.body.appendChild(myForm) ;
      myForm.submit() ;
      document.body.removeChild(myForm) ;
}

Here is the HTML:

HTML
<body onload="javascript:DirectLogin(‘servername','domain','username','password');">

In the above code snippet, there is a JavaScript method that actually bypasses the OWA login screen. Please note that the input to the scripts are very important, and also the path of the owaauth.dll file on the server that is set in the DirectLogin method.

License

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



Comments and Discussions

 
NewsA small bug & Thx Pin
waelElgayar15-Sep-10 9:49
waelElgayar15-Sep-10 9:49 
Questiondesktop version?? Pin
Tanmay Broachwala19-Aug-09 23:10
Tanmay Broachwala19-Aug-09 23:10 
AnswerRe: desktop version?? Pin
sanong31-Jan-10 4:58
sanong31-Jan-10 4:58 
QuestionVersion... Pin
StianSandberg28-Jul-09 1:24
StianSandberg28-Jul-09 1:24 
AnswerRe: Version... Pin
Robin_Roy28-Jul-09 16:32
Robin_Roy28-Jul-09 16:32 

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.