i have below login configuration in my web-app/WEB-INF/web.xml
<login-config>
<auth-method>CUSTOMFORM856</auth-method>
<form-login-config>
<form-login-page>/myAuthenticator</form-login-page>
<form-error-page>/myAuthenticator</form-error-page>
</form-login-config>
</login-config>
i have the case that after session expired user tries to click on UI(reloads widget in web-app) then request (/loadWidget?method="loadLayout") send to tomcat server since session expired this request forwarded to (/myAuthenticator)as per web.xml login-config
while forwarding (/loadWidget?method="loadLayout") to (/myAuthenticator) query string param(method="loadLayout") also passed to (/myAuthenticator) request
is there any way to avoid passing previous request query param to authentication forward call ?