You must turn on your extensions filter.  Add the following to your
deployment descriptor:

<filter>
        <filter-name>
                MyFacesExtensionsFilter
        </filter-name>
        <filter-class>
                org.apache.myfaces.component.html.util.ExtensionsFilter
        </filter-class>
        <init-param>
        <param-name>maxFileSize</param-name>
        <param-value>20m</param-value>
        <description>Set the size limit for uploaded files.
            Format: 10 - 10 bytes
                    10k - 10 KB
                    10m - 10 MB
                    1g - 1 GB
        </description>
        </init-param>
</filter>

<filter-mapping>
        <filter-name>MyFacesExtensionsFilter</filter-name>
      <servlet-name>Faces Servlet</servlet-name>
</filter-mapping>

<filter-mapping>
        <filter-name>MyFacesExtensionsFilter</filter-name>
        <url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
</filter-mapping>

  
Chad Lyon
Application Software Developer
Science Applications International Corporation (SAIC)

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Holger Benl (JIRA)
Sent: Tuesday, April 11, 2006 11:15 AM
To: [email protected]
Subject: [jira] Commented: (MYFACES-1259) login page commandLink error

    [
http://issues.apache.org/jira/browse/MYFACES-1259?page=comments#action_12374
051 ] 

Holger Benl commented on MYFACES-1259:
--------------------------------------

... and when I attach that javascript myself, the <h:commandLink>s work the
way they should.


> login page commandLink error
> ----------------------------
>
>          Key: MYFACES-1259
>          URL: http://issues.apache.org/jira/browse/MYFACES-1259
>      Project: MyFaces Core
>         Type: Bug

>     Versions: 1.1.2-SNAPSHOT
>  Environment: JBoss 4.0.4 RC1,  MyFaces 4/4/06 night build.
>     Reporter: Dave
>     Priority: Blocker

>
> Upgraded to  JBoss 4.0.4RC1 and MyFaces 4/4/06 night build.
> When user visit a protected page, the login.jsp will show up for user to
login in.
> But in the login.jsp, if clicking commandLink "Forget Password",   "Error
on Page" will show up on browser status bar (IE).
> nothing else happens.  It was working before: JBoss 4.0.3 RC1 and MyFaces
1/16/06.
> login.jsp  (simplified for testing)
> -----------
> <%@ page contentType="text/html; charset=UTF-8"%>
> <%@ taglib uri="http://java.sun.com/jsf/html"; prefix="h" %>
> <%@ taglib uri="http://java.sun.com/jsf/core"; prefix="f" %>
> <HTML>
> <body>
> <f:view>
>       <h:commandLink value="Forget Password" 
>                       action="#{bean.resetPassword}"/>
> </f:view>
> </body>
> </html>
> Browser source
> ------------------
> <HTML>
> <body>
>             <a href="#"
onclick="clear_linkDummyForm();document.forms['linkDummyForm'].elements['aut
oScroll'].value=getScrolling();document.forms['linkDummyForm'].elements['lin
kDummyForm:_link_hidden_'].value='_idJsp0';if(document.forms['linkDummyForm'
].onsubmit){var result=document.forms['linkDummyForm'].onsubmit();  if(
(typeof result == 'undefined') || result )
{document.forms['linkDummyForm'].submit();}}else{document.forms['linkDummyFo
rm'].submit();}return false;" id="_idJsp0">ForgetPassword</a>
>       
> </body>
> </html>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira

Reply via email to