Hi,
I am trying to implement SSO to SAP and JAVA applications in the process i need to verify the "PSE" file downloaded from the keystore administration and to decrypt the "SSO2 Cookie" in order to do this i hv downloaded the SAPSSOEXT.DLL file and placed it in "C:\Windows:\System32". and registed the DLL file using "REGSVR32 C:\Windows:\System32sapsso.dll"
But when i am executing the program i am getting the follwing error
java.lang.UnsatisfiedLinkError: no sapssoext in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1682)
at java.lang.Runtime.loadLibrary0(Runtime.java:822)
at java.lang.System.loadLibrary(System.java:993)
at SSO2Ticket.<clinit>(SSO2Ticket.java:38)
at the line
System.loadLibrary("sapssoext");
Can some body please help me out how to add the downloaded dll file into java path.
Thanks in Advance