cancel
Showing results for 
Search instead for 
Did you mean: 

Single Sign On - SAPSSOEXT - Can't find Dependant Libraries

Former Member
0 Kudos

HI

I am trying to implrement SSO to another server running in IBM Websphere 5.1

In my java code System.LoadLibrary fails for SAPSSOEXT and error message is "Can't find Dependant Libraries"

concerned java code is

*********************************************************

public static String SSO2TICKETLIBRARY = "sapssoext";

try {

System.loadLibrary(SSO2TICKETLIBRARY);

} catch (Throwable e) {

System.out.println ("Error during initialization of SSO2TICKET:\n" + e.getMessage());

*********************************************************

Both of sapssoext.dll and sapsecu.dll are in c:\windows\system32 folder and I have downloaded the files relevant to my OS from SAP service marketplace.

Version of sapsecu.dll 6400.243.0.0

and version of sapssoext 5.4.28.5

I have used SAPSECULIB54_3-10002911.SAR

and SAPSSOEXT_4-10002921.SAR for those files

OS where IBM websphere is run is Windows 2000

c:\windows\system32 is very much in the path and undoutably it finds sapssoext.dll. Probably it requires some other dependant dll.

How can I trace to find which library is missing

Regards

Saurav

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

I resolved it myself