web.xml - XML validation error in sample applications
-----------------------------------------------------
Key: MYFACES-515
URL: http://issues.apache.org/jira/browse/MYFACES-515
Project: MyFaces
Type: Bug
Components: General
Versions: Nightly Build
Environment: WebLogic 9.0 (J2EE 1.4, Servlet 2.4)
Reporter: A. Kim
Priority: Trivial
The sample application (simple.war) does not deploy on WebLogic 9.0. The
following in web.xml does not seem to pass the validation
(param-name/param-value before description element):
<context-param>
<param-name>javax.faces.CONFIG_FILES</param-name>
<param-value>/WEB-INF/examples-config.xml</param-value>
<description>
Comma separated list of URIs of (additional) faces config files.
(e.g. /WEB-INF/my-config.xml)
See JSF 1.0 PRD2, 10.3.2
</description>
</context-param>
This works (description element before param-name element):
<context-param>
<description>
Comma separated list of URIs of (additional) faces config files.
(e.g. /WEB-INF/my-config.xml)
See JSF 1.0 PRD2, 10.3.2
</description>
<param-name>javax.faces.CONFIG_FILES</param-name>
<param-value>/WEB-INF/examples-config.xml</param-value>
</context-param>
--
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