You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Andreas Halbig (JIRA)" <de...@myfaces.apache.org> on 2010/10/25 15:17:20 UTC

[jira] Created: (MYFACES-2959) Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0

Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0
---------------------------------------------------------------------------------

                 Key: MYFACES-2959
                 URL: https://issues.apache.org/jira/browse/MYFACES-2959
             Project: MyFaces Core
          Issue Type: Bug
          Components: General
    Affects Versions: 1.1.8
         Environment: SAP NetWeaver J2EE Engine 7.0 (WebAs Java)
            Reporter: Andreas Halbig
            Priority: Blocker


According to the requirement specifrication, MyFaces 1.1 is supposed to support java 1.3 or later, JSP 1.2, JSTL 1.0, and a Java Servlet 2.3 implementation. Unfortunately, the FacesConfigurator is using the javax.servlet.jsp.el package, which is only available since JSP 2.0.

Following classes to use wrongly javax.servlet.jsp.el.

- org.apache.myfaces.shared_impl.util.ClassUtils
- org.apache.myfaces.shared_impl.util._Coercions
- org.apache.myfaces.config.ManagedBeanBuilder
- org.apache.myfaces.el.ELParserHelper
- org.apache.myfaces.el.MethodBindingImpl
- org.apache.myfaces.el.ValueBindingImpl

Issue is related to the fact, that the apache commons-el 1.0 package is used, which requires the JSP 2.0 interfaces. This issue can be solved by reworking in two ways

1) Rework the interfaces for commons-el to remove the dependency for JSP 2.0

2) or by Adding the missing classes manually. You need to remove the annotations within the source code and compile it using Java 1.3

- ELException
- Expression
- ExpressionEvalutator
- FunctionMapper
- VariableResolver

The corresponding exception thrown within my j2ee container below

Error occured in invoking event "contextInitialized()" on listener class org.apache.myfaces.webapp.StartupServletContextListener. The error is: java.lang.NoClassDefFoundError: javax/servlet/jsp/el/ELException
	at org.apache.myfaces.config.FacesConfigurator.feedStandardConfig(FacesConfigurator.java:308)
	at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:276)
	at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:82)
	at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:65)
	at com.sap.engine.services.servlets_jsp.server.runtime.context.WebEvents.contextInitialized(WebEvents.java:45)
	at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:112)
	at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
	at java.security.AccessController.doPrivileged(Native Method)
	at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
	at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (MYFACES-2959) Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0

Posted by "Andreas Halbig (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/MYFACES-2959?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12996411#comment-12996411 ] 

Andreas Halbig commented on MYFACES-2959:
-----------------------------------------

How? Do I need to upload somehwere the modified classes? I tried to use the "Provide Patch" button, but nothing happens beside the status change.

What is an acceptable approach

1) Modifying the problematic myfaces classes by including a renamed copy of "ELException"

or

2) Including the missing classes like "ELException" to myFaces?

Cheers,

Andreas

> Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0
> ---------------------------------------------------------------------------------
>
>                 Key: MYFACES-2959
>                 URL: https://issues.apache.org/jira/browse/MYFACES-2959
>             Project: MyFaces Core
>          Issue Type: Bug
>          Components: General
>    Affects Versions: 1.1.8
>         Environment: SAP NetWeaver J2EE Engine 7.0 (WebAs Java)
>            Reporter: Andreas Halbig
>            Priority: Blocker
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> According to the requirement specifrication, MyFaces 1.1 is supposed to support java 1.3 or later, JSP 1.2, JSTL 1.0, and a Java Servlet 2.3 implementation. Unfortunately, the FacesConfigurator is using the javax.servlet.jsp.el package, which is only available since JSP 2.0.
> Following classes to use wrongly javax.servlet.jsp.el.
> - org.apache.myfaces.shared_impl.util.ClassUtils
> - org.apache.myfaces.shared_impl.util._Coercions
> - org.apache.myfaces.config.ManagedBeanBuilder
> - org.apache.myfaces.el.ELParserHelper
> - org.apache.myfaces.el.MethodBindingImpl
> - org.apache.myfaces.el.ValueBindingImpl
> Issue is related to the fact, that the apache commons-el 1.0 package is used, which requires the JSP 2.0 interfaces. This issue can be solved by reworking in two ways
> 1) Rework the interfaces for commons-el to remove the dependency for JSP 2.0
> 2) or by Adding the missing classes manually. You need to remove the annotations within the source code and compile it using Java 1.3
> - ELException
> - Expression
> - ExpressionEvalutator
> - FunctionMapper
> - VariableResolver
> The corresponding exception thrown within my j2ee container below
> Error occured in invoking event "contextInitialized()" on listener class org.apache.myfaces.webapp.StartupServletContextListener. The error is: java.lang.NoClassDefFoundError: javax/servlet/jsp/el/ELException
> 	at org.apache.myfaces.config.FacesConfigurator.feedStandardConfig(FacesConfigurator.java:308)
> 	at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:276)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:82)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:65)
> 	at com.sap.engine.services.servlets_jsp.server.runtime.context.WebEvents.contextInitialized(WebEvents.java:45)
> 	at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:112)
> 	at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
> 	at java.security.AccessController.doPrivileged(Native Method)
> 	at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
> 	at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (MYFACES-2959) Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0

Posted by "Andreas Halbig (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/MYFACES-2959?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12996291#comment-12996291 ] 

Andreas Halbig commented on MYFACES-2959:
-----------------------------------------

HI, I think you are wrong. I am working with the J2EE Solution of SAP and they are currently not so far to support the requirements of the newer version of myFaces. Companies are often years behind the current version and not everyone is constantly updating their environments. There are definitely many people, who are still working on their legacy system and they would appreciate to have a working myFaces solution available. However, under the bottom line you have to keep in mind that myFaces has advertised the minimum technical requirements, but is not able to fulfill it. I have pointed out the issue and it cost just 30 minutes to make it working again, so I would appreciate if this project is focusing on having working solutions published. Regards

> Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0
> ---------------------------------------------------------------------------------
>
>                 Key: MYFACES-2959
>                 URL: https://issues.apache.org/jira/browse/MYFACES-2959
>             Project: MyFaces Core
>          Issue Type: Bug
>          Components: General
>    Affects Versions: 1.1.8
>         Environment: SAP NetWeaver J2EE Engine 7.0 (WebAs Java)
>            Reporter: Andreas Halbig
>            Assignee: Leonardo Uribe
>            Priority: Blocker
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> According to the requirement specifrication, MyFaces 1.1 is supposed to support java 1.3 or later, JSP 1.2, JSTL 1.0, and a Java Servlet 2.3 implementation. Unfortunately, the FacesConfigurator is using the javax.servlet.jsp.el package, which is only available since JSP 2.0.
> Following classes to use wrongly javax.servlet.jsp.el.
> - org.apache.myfaces.shared_impl.util.ClassUtils
> - org.apache.myfaces.shared_impl.util._Coercions
> - org.apache.myfaces.config.ManagedBeanBuilder
> - org.apache.myfaces.el.ELParserHelper
> - org.apache.myfaces.el.MethodBindingImpl
> - org.apache.myfaces.el.ValueBindingImpl
> Issue is related to the fact, that the apache commons-el 1.0 package is used, which requires the JSP 2.0 interfaces. This issue can be solved by reworking in two ways
> 1) Rework the interfaces for commons-el to remove the dependency for JSP 2.0
> 2) or by Adding the missing classes manually. You need to remove the annotations within the source code and compile it using Java 1.3
> - ELException
> - Expression
> - ExpressionEvalutator
> - FunctionMapper
> - VariableResolver
> The corresponding exception thrown within my j2ee container below
> Error occured in invoking event "contextInitialized()" on listener class org.apache.myfaces.webapp.StartupServletContextListener. The error is: java.lang.NoClassDefFoundError: javax/servlet/jsp/el/ELException
> 	at org.apache.myfaces.config.FacesConfigurator.feedStandardConfig(FacesConfigurator.java:308)
> 	at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:276)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:82)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:65)
> 	at com.sap.engine.services.servlets_jsp.server.runtime.context.WebEvents.contextInitialized(WebEvents.java:45)
> 	at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:112)
> 	at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
> 	at java.security.AccessController.doPrivileged(Native Method)
> 	at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
> 	at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (MYFACES-2959) Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0

Posted by "Mike Kienenberger (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/MYFACES-2959?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12996431#comment-12996431 ] 

Mike Kienenberger commented on MYFACES-2959:
--------------------------------------------

Provide Patch just marks the issue as having a patch.
You need to go under "More Actions" and pick "Attach Files".
Please make sure they are in the form of a unified diff, and you also will need to grant us license to use them (option in attach files)

As for the more acceptable approach, I'm not really sure as I haven't looked into the issue in any depth.
This would be a perfect question to take the dev@myfaces mailing list:  Describe the problem, describe your two possible solutions, see what people think.
If you already have one of the possible solutions finished, attach that one to the issue, and ask for comments on it.   Sometimes the best solution is the one that's already available :)


> Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0
> ---------------------------------------------------------------------------------
>
>                 Key: MYFACES-2959
>                 URL: https://issues.apache.org/jira/browse/MYFACES-2959
>             Project: MyFaces Core
>          Issue Type: Bug
>          Components: General
>    Affects Versions: 1.1.8
>         Environment: SAP NetWeaver J2EE Engine 7.0 (WebAs Java)
>            Reporter: Andreas Halbig
>            Priority: Blocker
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> According to the requirement specifrication, MyFaces 1.1 is supposed to support java 1.3 or later, JSP 1.2, JSTL 1.0, and a Java Servlet 2.3 implementation. Unfortunately, the FacesConfigurator is using the javax.servlet.jsp.el package, which is only available since JSP 2.0.
> Following classes to use wrongly javax.servlet.jsp.el.
> - org.apache.myfaces.shared_impl.util.ClassUtils
> - org.apache.myfaces.shared_impl.util._Coercions
> - org.apache.myfaces.config.ManagedBeanBuilder
> - org.apache.myfaces.el.ELParserHelper
> - org.apache.myfaces.el.MethodBindingImpl
> - org.apache.myfaces.el.ValueBindingImpl
> Issue is related to the fact, that the apache commons-el 1.0 package is used, which requires the JSP 2.0 interfaces. This issue can be solved by reworking in two ways
> 1) Rework the interfaces for commons-el to remove the dependency for JSP 2.0
> 2) or by Adding the missing classes manually. You need to remove the annotations within the source code and compile it using Java 1.3
> - ELException
> - Expression
> - ExpressionEvalutator
> - FunctionMapper
> - VariableResolver
> The corresponding exception thrown within my j2ee container below
> Error occured in invoking event "contextInitialized()" on listener class org.apache.myfaces.webapp.StartupServletContextListener. The error is: java.lang.NoClassDefFoundError: javax/servlet/jsp/el/ELException
> 	at org.apache.myfaces.config.FacesConfigurator.feedStandardConfig(FacesConfigurator.java:308)
> 	at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:276)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:82)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:65)
> 	at com.sap.engine.services.servlets_jsp.server.runtime.context.WebEvents.contextInitialized(WebEvents.java:45)
> 	at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:112)
> 	at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
> 	at java.security.AccessController.doPrivileged(Native Method)
> 	at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
> 	at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Commented: (MYFACES-2959) Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0

Posted by "Leonardo Uribe (JIRA)" <de...@myfaces.apache.org>.
    [ https://issues.apache.org/jira/browse/MYFACES-2959?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12991051#comment-12991051 ] 

Leonardo Uribe commented on MYFACES-2959:
-----------------------------------------

Since at the time this is written (5 feb 2011) I don't think there is much interest about do this. java 1.3 has reached its End Of Life long time ago, and 1.1.x branch is only released for maintenance errors. 

> Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0
> ---------------------------------------------------------------------------------
>
>                 Key: MYFACES-2959
>                 URL: https://issues.apache.org/jira/browse/MYFACES-2959
>             Project: MyFaces Core
>          Issue Type: Bug
>          Components: General
>    Affects Versions: 1.1.8
>         Environment: SAP NetWeaver J2EE Engine 7.0 (WebAs Java)
>            Reporter: Andreas Halbig
>            Priority: Blocker
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> According to the requirement specifrication, MyFaces 1.1 is supposed to support java 1.3 or later, JSP 1.2, JSTL 1.0, and a Java Servlet 2.3 implementation. Unfortunately, the FacesConfigurator is using the javax.servlet.jsp.el package, which is only available since JSP 2.0.
> Following classes to use wrongly javax.servlet.jsp.el.
> - org.apache.myfaces.shared_impl.util.ClassUtils
> - org.apache.myfaces.shared_impl.util._Coercions
> - org.apache.myfaces.config.ManagedBeanBuilder
> - org.apache.myfaces.el.ELParserHelper
> - org.apache.myfaces.el.MethodBindingImpl
> - org.apache.myfaces.el.ValueBindingImpl
> Issue is related to the fact, that the apache commons-el 1.0 package is used, which requires the JSP 2.0 interfaces. This issue can be solved by reworking in two ways
> 1) Rework the interfaces for commons-el to remove the dependency for JSP 2.0
> 2) or by Adding the missing classes manually. You need to remove the annotations within the source code and compile it using Java 1.3
> - ELException
> - Expression
> - ExpressionEvalutator
> - FunctionMapper
> - VariableResolver
> The corresponding exception thrown within my j2ee container below
> Error occured in invoking event "contextInitialized()" on listener class org.apache.myfaces.webapp.StartupServletContextListener. The error is: java.lang.NoClassDefFoundError: javax/servlet/jsp/el/ELException
> 	at org.apache.myfaces.config.FacesConfigurator.feedStandardConfig(FacesConfigurator.java:308)
> 	at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:276)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:82)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:65)
> 	at com.sap.engine.services.servlets_jsp.server.runtime.context.WebEvents.contextInitialized(WebEvents.java:45)
> 	at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:112)
> 	at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
> 	at java.security.AccessController.doPrivileged(Native Method)
> 	at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
> 	at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Reopened: (MYFACES-2959) Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0

Posted by "Mike Kienenberger (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/MYFACES-2959?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Mike Kienenberger reopened MYFACES-2959:
----------------------------------------

      Assignee:     (was: Leonardo Uribe)

I don't think we need to say we won't fix it at all.
I think it's probably a better resolution to say that we won't fix it without a patch.

Andreas, if you have a working patch for MyFaces 1.1.x which doesn't break anything else, please submit a patch for it.


> Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0
> ---------------------------------------------------------------------------------
>
>                 Key: MYFACES-2959
>                 URL: https://issues.apache.org/jira/browse/MYFACES-2959
>             Project: MyFaces Core
>          Issue Type: Bug
>          Components: General
>    Affects Versions: 1.1.8
>         Environment: SAP NetWeaver J2EE Engine 7.0 (WebAs Java)
>            Reporter: Andreas Halbig
>            Priority: Blocker
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> According to the requirement specifrication, MyFaces 1.1 is supposed to support java 1.3 or later, JSP 1.2, JSTL 1.0, and a Java Servlet 2.3 implementation. Unfortunately, the FacesConfigurator is using the javax.servlet.jsp.el package, which is only available since JSP 2.0.
> Following classes to use wrongly javax.servlet.jsp.el.
> - org.apache.myfaces.shared_impl.util.ClassUtils
> - org.apache.myfaces.shared_impl.util._Coercions
> - org.apache.myfaces.config.ManagedBeanBuilder
> - org.apache.myfaces.el.ELParserHelper
> - org.apache.myfaces.el.MethodBindingImpl
> - org.apache.myfaces.el.ValueBindingImpl
> Issue is related to the fact, that the apache commons-el 1.0 package is used, which requires the JSP 2.0 interfaces. This issue can be solved by reworking in two ways
> 1) Rework the interfaces for commons-el to remove the dependency for JSP 2.0
> 2) or by Adding the missing classes manually. You need to remove the annotations within the source code and compile it using Java 1.3
> - ELException
> - Expression
> - ExpressionEvalutator
> - FunctionMapper
> - VariableResolver
> The corresponding exception thrown within my j2ee container below
> Error occured in invoking event "contextInitialized()" on listener class org.apache.myfaces.webapp.StartupServletContextListener. The error is: java.lang.NoClassDefFoundError: javax/servlet/jsp/el/ELException
> 	at org.apache.myfaces.config.FacesConfigurator.feedStandardConfig(FacesConfigurator.java:308)
> 	at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:276)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:82)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:65)
> 	at com.sap.engine.services.servlets_jsp.server.runtime.context.WebEvents.contextInitialized(WebEvents.java:45)
> 	at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:112)
> 	at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
> 	at java.security.AccessController.doPrivileged(Native Method)
> 	at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
> 	at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (MYFACES-2959) Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0

Posted by "Andreas Halbig (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/MYFACES-2959?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andreas Halbig updated MYFACES-2959:
------------------------------------

    Status: Patch Available  (was: Open)

> Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0
> ---------------------------------------------------------------------------------
>
>                 Key: MYFACES-2959
>                 URL: https://issues.apache.org/jira/browse/MYFACES-2959
>             Project: MyFaces Core
>          Issue Type: Bug
>          Components: General
>    Affects Versions: 1.1.8
>         Environment: SAP NetWeaver J2EE Engine 7.0 (WebAs Java)
>            Reporter: Andreas Halbig
>            Priority: Blocker
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> According to the requirement specifrication, MyFaces 1.1 is supposed to support java 1.3 or later, JSP 1.2, JSTL 1.0, and a Java Servlet 2.3 implementation. Unfortunately, the FacesConfigurator is using the javax.servlet.jsp.el package, which is only available since JSP 2.0.
> Following classes to use wrongly javax.servlet.jsp.el.
> - org.apache.myfaces.shared_impl.util.ClassUtils
> - org.apache.myfaces.shared_impl.util._Coercions
> - org.apache.myfaces.config.ManagedBeanBuilder
> - org.apache.myfaces.el.ELParserHelper
> - org.apache.myfaces.el.MethodBindingImpl
> - org.apache.myfaces.el.ValueBindingImpl
> Issue is related to the fact, that the apache commons-el 1.0 package is used, which requires the JSP 2.0 interfaces. This issue can be solved by reworking in two ways
> 1) Rework the interfaces for commons-el to remove the dependency for JSP 2.0
> 2) or by Adding the missing classes manually. You need to remove the annotations within the source code and compile it using Java 1.3
> - ELException
> - Expression
> - ExpressionEvalutator
> - FunctionMapper
> - VariableResolver
> The corresponding exception thrown within my j2ee container below
> Error occured in invoking event "contextInitialized()" on listener class org.apache.myfaces.webapp.StartupServletContextListener. The error is: java.lang.NoClassDefFoundError: javax/servlet/jsp/el/ELException
> 	at org.apache.myfaces.config.FacesConfigurator.feedStandardConfig(FacesConfigurator.java:308)
> 	at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:276)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:82)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:65)
> 	at com.sap.engine.services.servlets_jsp.server.runtime.context.WebEvents.contextInitialized(WebEvents.java:45)
> 	at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:112)
> 	at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
> 	at java.security.AccessController.doPrivileged(Native Method)
> 	at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
> 	at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (MYFACES-2959) Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0

Posted by "Andreas Halbig (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/MYFACES-2959?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andreas Halbig updated MYFACES-2959:
------------------------------------

    Status: Open  (was: Patch Available)

> Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0
> ---------------------------------------------------------------------------------
>
>                 Key: MYFACES-2959
>                 URL: https://issues.apache.org/jira/browse/MYFACES-2959
>             Project: MyFaces Core
>          Issue Type: Bug
>          Components: General
>    Affects Versions: 1.1.8
>         Environment: SAP NetWeaver J2EE Engine 7.0 (WebAs Java)
>            Reporter: Andreas Halbig
>            Priority: Blocker
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> According to the requirement specifrication, MyFaces 1.1 is supposed to support java 1.3 or later, JSP 1.2, JSTL 1.0, and a Java Servlet 2.3 implementation. Unfortunately, the FacesConfigurator is using the javax.servlet.jsp.el package, which is only available since JSP 2.0.
> Following classes to use wrongly javax.servlet.jsp.el.
> - org.apache.myfaces.shared_impl.util.ClassUtils
> - org.apache.myfaces.shared_impl.util._Coercions
> - org.apache.myfaces.config.ManagedBeanBuilder
> - org.apache.myfaces.el.ELParserHelper
> - org.apache.myfaces.el.MethodBindingImpl
> - org.apache.myfaces.el.ValueBindingImpl
> Issue is related to the fact, that the apache commons-el 1.0 package is used, which requires the JSP 2.0 interfaces. This issue can be solved by reworking in two ways
> 1) Rework the interfaces for commons-el to remove the dependency for JSP 2.0
> 2) or by Adding the missing classes manually. You need to remove the annotations within the source code and compile it using Java 1.3
> - ELException
> - Expression
> - ExpressionEvalutator
> - FunctionMapper
> - VariableResolver
> The corresponding exception thrown within my j2ee container below
> Error occured in invoking event "contextInitialized()" on listener class org.apache.myfaces.webapp.StartupServletContextListener. The error is: java.lang.NoClassDefFoundError: javax/servlet/jsp/el/ELException
> 	at org.apache.myfaces.config.FacesConfigurator.feedStandardConfig(FacesConfigurator.java:308)
> 	at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:276)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:82)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:65)
> 	at com.sap.engine.services.servlets_jsp.server.runtime.context.WebEvents.contextInitialized(WebEvents.java:45)
> 	at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:112)
> 	at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
> 	at java.security.AccessController.doPrivileged(Native Method)
> 	at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
> 	at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (MYFACES-2959) Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0

Posted by "Andreas Halbig (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/MYFACES-2959?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andreas Halbig updated MYFACES-2959:
------------------------------------

    Status: Patch Available  (was: Reopened)

> Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0
> ---------------------------------------------------------------------------------
>
>                 Key: MYFACES-2959
>                 URL: https://issues.apache.org/jira/browse/MYFACES-2959
>             Project: MyFaces Core
>          Issue Type: Bug
>          Components: General
>    Affects Versions: 1.1.8
>         Environment: SAP NetWeaver J2EE Engine 7.0 (WebAs Java)
>            Reporter: Andreas Halbig
>            Priority: Blocker
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> According to the requirement specifrication, MyFaces 1.1 is supposed to support java 1.3 or later, JSP 1.2, JSTL 1.0, and a Java Servlet 2.3 implementation. Unfortunately, the FacesConfigurator is using the javax.servlet.jsp.el package, which is only available since JSP 2.0.
> Following classes to use wrongly javax.servlet.jsp.el.
> - org.apache.myfaces.shared_impl.util.ClassUtils
> - org.apache.myfaces.shared_impl.util._Coercions
> - org.apache.myfaces.config.ManagedBeanBuilder
> - org.apache.myfaces.el.ELParserHelper
> - org.apache.myfaces.el.MethodBindingImpl
> - org.apache.myfaces.el.ValueBindingImpl
> Issue is related to the fact, that the apache commons-el 1.0 package is used, which requires the JSP 2.0 interfaces. This issue can be solved by reworking in two ways
> 1) Rework the interfaces for commons-el to remove the dependency for JSP 2.0
> 2) or by Adding the missing classes manually. You need to remove the annotations within the source code and compile it using Java 1.3
> - ELException
> - Expression
> - ExpressionEvalutator
> - FunctionMapper
> - VariableResolver
> The corresponding exception thrown within my j2ee container below
> Error occured in invoking event "contextInitialized()" on listener class org.apache.myfaces.webapp.StartupServletContextListener. The error is: java.lang.NoClassDefFoundError: javax/servlet/jsp/el/ELException
> 	at org.apache.myfaces.config.FacesConfigurator.feedStandardConfig(FacesConfigurator.java:308)
> 	at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:276)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:82)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:65)
> 	at com.sap.engine.services.servlets_jsp.server.runtime.context.WebEvents.contextInitialized(WebEvents.java:45)
> 	at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:112)
> 	at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
> 	at java.security.AccessController.doPrivileged(Native Method)
> 	at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
> 	at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (MYFACES-2959) Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0

Posted by "Leonardo Uribe (JIRA)" <de...@myfaces.apache.org>.
     [ https://issues.apache.org/jira/browse/MYFACES-2959?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Leonardo Uribe resolved MYFACES-2959.
-------------------------------------

    Resolution: Won't Fix
      Assignee: Leonardo Uribe

> Version 1.1.8 not compatible using JSP 1.2 because of using apache commons-el 1.0
> ---------------------------------------------------------------------------------
>
>                 Key: MYFACES-2959
>                 URL: https://issues.apache.org/jira/browse/MYFACES-2959
>             Project: MyFaces Core
>          Issue Type: Bug
>          Components: General
>    Affects Versions: 1.1.8
>         Environment: SAP NetWeaver J2EE Engine 7.0 (WebAs Java)
>            Reporter: Andreas Halbig
>            Assignee: Leonardo Uribe
>            Priority: Blocker
>   Original Estimate: 2h
>  Remaining Estimate: 2h
>
> According to the requirement specifrication, MyFaces 1.1 is supposed to support java 1.3 or later, JSP 1.2, JSTL 1.0, and a Java Servlet 2.3 implementation. Unfortunately, the FacesConfigurator is using the javax.servlet.jsp.el package, which is only available since JSP 2.0.
> Following classes to use wrongly javax.servlet.jsp.el.
> - org.apache.myfaces.shared_impl.util.ClassUtils
> - org.apache.myfaces.shared_impl.util._Coercions
> - org.apache.myfaces.config.ManagedBeanBuilder
> - org.apache.myfaces.el.ELParserHelper
> - org.apache.myfaces.el.MethodBindingImpl
> - org.apache.myfaces.el.ValueBindingImpl
> Issue is related to the fact, that the apache commons-el 1.0 package is used, which requires the JSP 2.0 interfaces. This issue can be solved by reworking in two ways
> 1) Rework the interfaces for commons-el to remove the dependency for JSP 2.0
> 2) or by Adding the missing classes manually. You need to remove the annotations within the source code and compile it using Java 1.3
> - ELException
> - Expression
> - ExpressionEvalutator
> - FunctionMapper
> - VariableResolver
> The corresponding exception thrown within my j2ee container below
> Error occured in invoking event "contextInitialized()" on listener class org.apache.myfaces.webapp.StartupServletContextListener. The error is: java.lang.NoClassDefFoundError: javax/servlet/jsp/el/ELException
> 	at org.apache.myfaces.config.FacesConfigurator.feedStandardConfig(FacesConfigurator.java:308)
> 	at org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:276)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:82)
> 	at org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:65)
> 	at com.sap.engine.services.servlets_jsp.server.runtime.context.WebEvents.contextInitialized(WebEvents.java:45)
> 	at com.sap.engine.services.servlets_jsp.server.container.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:112)
> 	at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
> 	at java.security.AccessController.doPrivileged(Native Method)
> 	at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
> 	at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)

-- 
This message is automatically generated by JIRA.
-
For more information on JIRA, see: http://www.atlassian.com/software/jira