ADFS (CRM 2011) - Authentication Issue in Microsoft Outlook Client for CRM (Response.Redirect(…) & Window.Open(…))

StackOverflow https://stackoverflow.com/questions/7832964

문제

Before I start, our customers have to connect through AFDS to be able to go on the CRM 2011. So we are talking about an “IFD”-environment.

I’m having a problem when using the “CRM 2011 Outlook Client” and the “Window.Open(…)”-JS function. When they hit a button in the CRM 2011 an ASPX-page fires up and does some stuff with an attachment in the e-mail. It then creates successfully a contact and then afterwards it should redirect to that “Contact”-page. But each time I do a redirect to a “CRM 2011”-page, the user is prompt for his credentials. That’s because the “Window.Open(…)” opens the screen in an new “Browser”-screen and the authentication is lost (because we come from the outlook client).

The above scenario works fine when using the “Web”-based CRM 2011, because you need first to login via ADFS.

Have some of you encountered the above problem and have a great solution to this?

  1. Is there a way to do a “Window.Open(…)” and stay in an “Outlook”-screen? The same as you should double-click a contact in the “CRM 2011 Outlook Client”?
  2. Is there a way while doing a “Redirect”, I can automatically give the credentials to the page, so that it will page will be opened without that the user himself need to enter his credentials? I’ve read something about SignInRequestMessage and FederatedAuthentication, but no clear examples were shown to do this.

I’m hoping that you guys can help me out. At my side, if I find any resolution, I will come back here!

Kind Regards, Frederic

도움이 되었습니까?

해결책

OK. This is from one of the MS presenters from the ExtremeCRM conference.

The CRM function call is: openObj(entityId, type).

I am a team leads and I had one of my team execute the implementation, but my understanding is that the call would be something like...

openObj('GuidGoesHere', 'account');

One thing to consider is that this will work in your standard client script scenario, however if you require this functionality from within a custom dialog / html resource you may need to add a reference to the appropriate JS reference depending on where in the baseline JS libraries that function resides.

I can dig deeper if you cannot get it working right away. Youd can use various browser dev tools to explore pages and see which JS resources are loaded on the page as well as debug.

Hope this helps!

다른 팁

This issue is related to a cache and performance problem with ADFS and a TMG server. The ability to cache must be turned on both the TMG and inside IIS. Once this issue, also deemed a performance issue went away, users then received the normal popups when performing actions like convert lead to opportunity, or email to case.

Also make sure you are on UR 6.. https://community.dynamics.com/product/crm/crmtechnical/b/cognettacloud/default.aspx

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top