Saturday, 15 August 2015

CRM 2011 Outlook Client open custom web app, both sites using ADFS authentication -



CRM 2011 Outlook Client open custom web app, both sites using ADFS authentication -

currently i'm working on task prepare process of opening custom web page in outlook client custom ribbon button, it's similar question: javascript pop-up in dynamics crm 2011 outlook client client

however, have configured website have same authentication token same adfs crm web. if open using ie/any other web browsers (in ur 12), works fine. if open using outlook client, maintain prompting user authenticate (which quite annoying users).

i've read these, applicable crm form, not custom web app: adfs (crm 2011) - authentication issue in microsoft outlook client crm (response.redirect(...) & window.open(...)) http://msdn.microsoft.com/en-us/library/jj602956.aspx

anyone have thought on this? fyi, i'm using crm 2011 ur 12, , outlook 2010 crm client.

tia

i ended-up using openstdwin, based on: http://blog.customereffective.com/blog/2011/12/jscript-pop-up-in-crm-402011-internet-explorer-vs-outlook.html , dieter's comment. still asked me authenticate once, though i've provided login detail in outlook client setup.

the javascript function:

function opennewwindow(url) { var name = "newwindow"; var width = 800; var height = 600; var newwindowfeatures = "status=1"; var oldwindowfeatures = "width=800,height=600,status=1"; // regular jscript function open new window //window.open(url, name, oldwindowfeatures); // crm function open new window openstdwin(url, name, width, height, newwindowfeatures); // crm function open new window // default crm parameters //openstdwin(url, name); }

outlook dynamics-crm-2011 dynamics-crm

No comments:

Post a Comment