Exchange开发(二):如何集成应用程序直接登录到OWA?在Exchange中,Exchange本身带了OWA,客户端可以直接通过http://ServerName/Exchange/UserName来访问。以下描述了怎样在页面中集成用户名和密码直接登录到OWA,而不让Windows弹出"Enter network password”对话框。
//jeseeqing 2004.10.28 //exchangeURL: for example https://VirtualAD.ExchangeTest.Com/Exchange/jeseeqing //userName:user name //password: user password function RedirectExchangeURL(exchangeURL,userName,password) { var xmlRequest= new ActiveXObject("msxml2.xmlhttp");; xmlRequest.open("get",exchangeURL,false,userName,password); auth.send();
switch(auth.status) 上一篇:Exchange开发(-):登录OWA时出现Security Alert警告对话框? 下一篇:确保 Exchange 通信的安全(三) 更多相关文章
|
推荐文章
精彩文章
|