Websphere commerce在重定向到LogonForm的struts中验证属性



在WebSphere commerce中,当我尝试调用authenticate属性设置为1的命令时,当用户未登录时,它会重定向到LogonForm URL。

例如,我在没有登录的情况下,在新浏览器中调用以下URL

https://localhost/webapp/wcs/stores/servlet/TrackOrderStatus?catalogId=10201&langId=44&storeId=10151

并且它具有在动作映射部分中定义的struts条目,authenticate属性设置为1。

我相信这实际上会检查用户是否登录,如果没有,它会给我们下面的LogonForm URL

https://localhost/webapp/wcs/stores/servlet/LogonForm?catalogId=10201&langId=44&storeId=10151

我想知道这种重定向是如何在IBM商务级别发生的。这是因为我想将LogonForm重定向URL更改为某个第三方URL(例如:ThirdPartyAuthController?catalogId=10201&langId=44&storeId=10151)。由于这是内部发生的,我不确定我如何才能做到这一点。

谢谢你的帮助!!

在以下链接中找到答案

http://www.ibm.com/developerworks/websphere/library/techarticles/0907_callaghan/0907_callaghan.html

最新更新