I installed and configured the default portal with cocoon (sunrise)

In the login pipeline I added a XSP-page between the Login page
(login.xml) and the sunrise-user.xsl. Here is my pipeline :

<map:match pattern="sunrise-authuser">   
        <map:generate type="serverpages" src="ldap.xsp"/>       
        <map:transform type="ldap">   
            <map:parameter name="rootdn" value="{request-param:name}"/> 
            <map:parameter name="password"
value="{request-param:password}"/>  
        </map:transform>   
        <map:transform type="log"> 
                <map:parameter name="logfile" value="UserList.log"/>  
                <map:parameter name="append" value="NO"/> 
        </map:transform>        
        <map:transform type="xslt" src="ldap.xsl"/> 
        <map:transform src="styles/sunrise-user.xsl"> 
                <map:parameter name="use-request-parameters"
value="true"/> 
        </map:transform>       
        <map:serialize type="xml"/>
    </map:match>


In the surise-user.xsl I have the following code and this parameter
works fine.
        <xsl:param name="name"/> 


But in But in my XSP page I cannot request the "name" field from
login.xml. The code is :
        <xsp:logic>
              String myUser = request.getParameter("name"); 
        </xsp:logic> 

thanks for any help.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to