Hi,
I have a custom java Application on SAP NWA which will be called from a 3rd party server. We have SSO between the two servers.
If I chose my authentication method in web.xml to be TICKET, the SSO works fine when called from the 3rd party server, but if we want to launch the application standalone, we are getting "Authorization Required" error.
If we change the auth-method to FORM or BASIC, it is always asking for a logon prompt irrespective of the SSO.
Below is an excerpt of my web.xml.
Please let me know how can I configure my application so that it asks for logon when launched individually but logs in automatically via SSO when invoked from 3rd party server.
<login-config>
<auth-method>FORM</auth-method>
<realm-name>User lookup</realm-name>
</login-config>
Thanks,
Swaralipi