Details
-
Bug
-
Status: Open
-
Critical
-
Resolution: Unresolved
-
1.1.7, 1.1.9
-
None
-
None
-
Tomcat 6, myfaces-impl-1.1.7, myfaces-api-1.1.7 and tomahawk-1.1.9. Working on myfaces-example-blank-1.1.9 war file in eclipse.
Description
After downloading the myfaces-example-blank-1.1.9 war file I am trying to run following jsp page :
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<f:view>
<h:form id="form">
<h:panelGrid id="grid" >
<h:inputText id="input1" value="D:\\spool\\test_receiver11
" required="true"/>
</h:panelGrid>
</h:form>
</f:view>
</body>
</html>
Because thaevalue of inputText value box is ending with
slashes i am getting the following warning:
WARNING: Invalid tag found: unexpected input while looking for attr name or '/>' at line 10. Surroundings: '" name="form_SUBMIT" value="1"'.
Anybody has any idea.