Our application was working fine in SIT enviornment(not in cluster) . Now we moved it to UAT enviormmnt which is in JBoss cluster(2 nodes one cluster).
Now a strange problem.
3 war files were deployed:
- Admin application
- EHS app
- Visa app (ours)
Successful Login directs to admin application. There we have 2 links ; one to Visa app and one to EHS app.
Problem is... When we click on or application link(Visa app), navigation is not happening. [Spring security information is not available from httpsession] But if we click on EHS link and return back to Home page and then click on our link (Visa app) ; it navigates.
Log says httpsession object is null. But all these apps were working in SIT environment. So confused..
Other 2 application has ‘authentication method as ‘FORM” in web.xml
<login-config>
<auth-method>FORM</auth-method>
<realm-name>TKSOnlineServicesRealm</realm-name>
<form-login-config>
<form-login-page>/login.jsp</form-login-page>
<form-error-page>/login.jsp?error=1</form-error-page>
</form-login-config>
</login-config>
But our application has ‘BASIC’ .
<login-config>
<auth-method>BASIC</auth-method>
<realm-name>TKSOnlineServicesRealm</realm-name>
</login-config>
Could this be the issue. Unable to track. Please help. It is urgent.
Thanks in advance.