Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Log to Bo or Webi without a login and password

Status
Not open for further replies.

jenny504

Programmer
May 13, 2006
2
FR
God morning,

How one acceder with Bussiness objects or webi can since a portal Intranet using a URL without connecting another time.
URL I have test with: /wi/bin/iswi.dll!/WIGenerator/wigenerator/generator/ExecuteWIS?sWIS=Logon.... but it is not complete

Please any one help me

Jenny
 
You have to set up "Trusted Authentication" which involves having a "shared secret" on the web server and in the CMC (go to Authentication, Enterprise, turn on Trusted Authentication and set your key.)

There is much more information about this in the Administrator's manual. I don't have the info here, but I'll look for it when I get to the office on Monday and give you the page where I found it. It's fairly simple to set up.

Then, your code just has to log your user in to the CMS using the user's user ID and a trusted login - it's about 4 lines of C# code which I can also post.

-Dell

A computer only does what you actually told it to do - not what you thought you told it to do.
 
The information about setting up trusted authentication is on pages 224-225 of the BOE XI r2 Administrator's Guide. There is, however, an error in the sample code on page 225. The last line should read:
Code:
IEnterpriseSession = sessionMgr.LogonTrustedPrincipal(trustedPrincipal);

-Dell

A computer only does what you actually told it to do - not what you thought you told it to do.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top