1

We have an enterprise application using Documentum webtop, that we are accessing through IE11

When we are using one functionality by accessing the application through IP address, it is working fine. But when we go through an assigned domain name, it is giving permission denied error in a JS and that functionality is not working.

enter image description here

6nagi9
  • 534
  • 2
  • 7
  • 23
  • what version of Webtop do you use? Is your IE browser supported for that version of webtop? – Miki Sep 10 '14 at 07:51
  • We are using Webtop 6 – 6nagi9 Sep 10 '14 at 08:18
  • Saying Webtop 6 is like saying I drive BMW 5. It can be old 15 years and it can be brand new. Second part of the question? Try supported version of browser. – Miki Sep 10 '14 at 09:33
  • I agree. The thing is that we want run this app on IE 11 as our systems have upgraded to Win 8. We have resolved many compatibility issues ourselves and this is where we are stuck. – 6nagi9 Sep 10 '14 at 10:13
  • Sounds like a cross-domain javascript security issue to me... or something very like it. – Brendan Hannemann Sep 15 '14 at 22:09
  • Even I think the same. Found no solutions yet. – 6nagi9 Sep 17 '14 at 10:11

1 Answers1

2

IE11 is not supported however your problem it's that IE11 has a brand new user-agent

Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko

that has not MSIE inside. Old javascript can fail because of that.

Try to force compatibility mode on browser to check if an old style user agent solve your problem.

MrPk
  • 2,862
  • 2
  • 20
  • 26