cancel
Showing results for 
Search instead for 
Did you mean: 

SSO with external app?

peter_jarsunek
Participant
0 Kudos

Hi guys,

I have an external PHP web application, which I want to include into my EP.

How could I achieve an SSO?

How can I pass the EP login values to call that external app without any need to login there?

Thanx 4 answers, Peter

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

HTTP Authentication Template provides SSO for URL Based iViews, and this feature is available from SP 9.

Based on my understanding the PHP site can be accessed using URL iViews, for which you will need to create a HTTP System in System Administrator -> System Configuration-> Landscape Configuration. Refer to

http://help.sap.com/saphelp_nw04/helpdata/en/61/2f0e84397f47919ac91ac712c90dfd/content.htm

Hope that helps.

Regards,

S.Divakar

holger_stumm2
Active Contributor
0 Kudos

Create a system alias for the PHP system, of type HTTP

Create a user mapping in "Personalization" for that http system

Create an iview of type "url"

Map userid and password into variables (usually userid, password) and have them calling the application (which needs to be able to do authentication via url parameters)

or: (more hightech) create a cookie via javascript on the EP side and call the php app, that needs a little module that reads the cookie and sets the logon

or: (king crown) create a php module that reads the SAPSS02 ticket and sets the logon)

hth -hs