TM1 9.4 Web - Integrated Login

Post Reply
kaytejt
Posts: 1
Joined: Tue Jun 23, 2009 12:53 pm
Version: 9.4
Excel Version: 2003

TM1 9.4 Web - Integrated Login

Post by kaytejt »

Hello,

I am recieving an error when trying to log in via TM1 Web.

Microsoft Internet Explorer:
Integrated Login Failed. Please Try Again... 80: TM1APIDOTNET Exception - System Server Client Not Found

In IIS, I have it set to Integrated Login and also configured in the tm1s.cfg file. I tried two authentication modes, one with Kerberos and the other with NTFS.

Thoughts?
kangkc
Community Contributor
Posts: 206
Joined: Fri Oct 17, 2008 2:40 am
OLAP Product: TM1, PA , TMVGate
Version: 2.x
Excel Version: 36x
Location: Singapore
Contact:

Re: TM1 9.4 Web - Integrated Login

Post by kangkc »

Seems like you have NOT set up the user -> Windows Account in your TM1 server. Have you tried using integrated login with TM1 client? If TM1 client can't log you in, you have not setup integrated login correctly..yet...
Last edited by kangkc on Fri Jun 26, 2009 6:13 am, edited 1 time in total.
lotsaram
MVP
Posts: 3706
Joined: Fri Mar 13, 2009 11:14 am
OLAP Product: TableManager1
Version: PA 2.0.x
Excel Version: Office 365
Location: Switzerland

Re: TM1 9.4 Web - Integrated Login

Post by lotsaram »

Just to elaborate on what kangkc has mentioned, this error is what you would usually receive when trying to log in as a user who does not exist on the TM1 server.

It is not enough just to turn integrated login on. There must be a match between the windows user ID from the Kerberos certificate and a client in the clients dimension, actually it is more specific than this, as the match needs to be to the UniqueID measure in the }ClientProperties cube. In principle this is all that is required to set up integrated login, (the whole LDAP import process is largely a waste of time and unnecessarily overcomplicates things...)

Assuming that you know all this already and have integrated login working with the Excel client then the most common problem would be users accessing TM1 from different domains and/or the web server being on a different domain from the TM1 app server. When it just works it's great, when it doesn't it can be tricky to troubleshoot.
User avatar
JohnMcC
Posts: 1
Joined: Fri Jul 31, 2009 9:37 am
OLAP Product: TM1
Version: 9.4 MR1 FP2
Excel Version: 2007
Location: Liverpool

Re: TM1 9.4 Web - Integrated Login

Post by JohnMcC »

Hi,
I've been having the same problem - Server Client not found. It only started when I "upgraded" to FP2 this morning. After a lot of searching (This forum & the Internet) I ended up having a look at the web.config file in the TM1Web root folder. What I noticed was the current - non working - config file had the Identity Impersonate set to false whereas in the previous version it was set to true. Taking a chance I changed it and bingo TM1Web now allows Integrated logins :D

The setting is right towards the bottom in the config file.

<authentication mode="Windows" />
<identity impersonate="true" />
djwebstuff
Posts: 1
Joined: Mon Feb 08, 2010 4:59 pm
OLAP Product: TM1
Version: 9.5
Excel Version: 2007

Re: TM1 9.4 Web - Integrated Login

Post by djwebstuff »

Thanks so much for your help.... it got me up and running as well. Here is some for (maybe) useful info. In the web.config file (version 9.5) the instructions for setting up Integrated Login are included. Funny enough, this isnt in the install documentation.


<!-- To enable integrated login:
1. Set the "IntegratedLogin" attribute to "true" here.
2. Set <identity impersonate=true /> later in this file.
3. In IIS, turn off "Enable anonymous access"
4. In IIS, turn on "Integrated Windows authentication"
-->
<add key="IntegratedLogin" value="true" />
Post Reply