Security 如何自定义RSA Web身份验证代理?

Security 如何自定义RSA Web身份验证代理?,security,authentication,rsa,Security,Authentication,Rsa,目前在我的公司有一个内部的web应用程序,它有一个自定义的登录页面。为了对用户进行身份验证,我们使用RSA身份验证Windows agent 7.2。我们在另一个内部库中调用acecln.dll库公开的方法 现在我们要转到RSA身份验证Web代理7.1。我已经了解了它的工作原理,我已经能够安装web代理并保护整个网站。通过执行此操作,将显示Web代理的页面登录、成功登录。问题是,我们仍然想使用我们的自定义登录网页,但我一直无法做到这一点 我已经检查了Web代理rsahandler.dll和rsa

目前在我的公司有一个内部的web应用程序,它有一个自定义的登录页面。为了对用户进行身份验证,我们使用RSA身份验证Windows agent 7.2。我们在另一个内部库中调用acecln.dll库公开的方法

现在我们要转到RSA身份验证Web代理7.1。我已经了解了它的工作原理,我已经能够安装web代理并保护整个网站。通过执行此操作,将显示Web代理的页面登录、成功登录。问题是,我们仍然想使用我们的自定义登录网页,但我一直无法做到这一点

我已经检查了Web代理rsahandler.dll和rsamodule.dll附带的dll,但它们似乎不打算用作Windows代理中的acecln.dll库。我所能做的就是绕过RSA Web代理的登录页面,向Web代理设置的WebID Web应用程序的Web.config中定义的处理程序发出POST请求。详情如下:

这是在C:\Program Files\RSA Security\RSAWebAgent\WebID\web.config中定义处理程序的方式

<handlers>
            <add name="RSASecurIDHandlerMapping" path="IISWebAgentIF.dll" verb="*" modules="SecurIDHandler" scriptProcessor="C:\Program Files\RSA Security\RSAWebAgent\WebID\rsahandler.dll" requireAccess="None" />
        </handlers>
这是我在自定义登录页面中编写的表单。对应于用户验证后显示的index.htm页面

<form action="/WebID/IISWebAgentIF.dll" method="POST" name="transportForm">

     Username: <INPUT  id="username" style=WIDTH: 155px" maxLength=64 value="jctorres" name="username" AUTOCOMPLETE=OFF"><br />

     Passcode: <INPUT ID="passcode" NAME="passcode" VALUE="1984" MAXLENGTH=16  AUTOCOMPLETE="OFF"  style="width:155px;"><br />
          <input type="hidden" name="referrer"  value="Z2FindexZ2Ehtm"> 

          <input type="hidden" name="sessionid" value="0">
          <input type="hidden" name="postdata"  value="get&#58;">
          <input type="hidden" name="authntype" value="2">
          <input type="hidden" name="stage"     value="useridandpasscode">

          <input type="hidden" name="csrftoken" value="">
          <INPUT TYPE=submit VALUE="Log In" onclick="">
     </form>
正如我所说,通过这个,我可以使用我们的自定义登录页面登录,但我仍然看到在index.htm出现之前出现的中间身份验证成功

我的问题是:

1-如何使用RSA Authentication Web agent并仍然使用公司自己的登录、错误网页,而不显示中间身份验证成功网页?rsahandler.dll库的行为是否可自定义

提前谢谢