The end tag "</html:html" is unbalanced>

[nobr]Hi All,

I am getting an error while trying to run the jsp in sun one app server.

org.apache.jasper.JasperException: /aswelcome.jsp(37,0) The end tag "</html:html" is unbalanced

Please have a look at the JSP file below.

><%@ taglib uri="/tags/struts-bean" prefix="bean" %>

<%@ taglib uri="/tags/struts-html" prefix="html" %>

html:html locale="true">

<head>

<title>application</title>

<html:base/>

</head>

<body bgcolor="white">

<h3> The eAM Application </h3>

<html:form action="/first" name="firstForm" type="form.Loginform">

<tr>

<td class="PSTEXT">

<bean:message key="app.empid"/>

<html:text property="name" />

</td>

</tr>

<br><br>

<tr>

<td class="PSTEXT">

<bean:message key="app.password"/>

<html:password property="password" />

</td>

</tr>

<tr>

<td>

<html:submit/>

</td>

</tr>

</html:form>

</body>

</html:html>

Please help .[/nobr]

[1656 byte] By [java_jamboreea] at [2007-11-27 9:53:52]
# 1

Compare with your version

<%@ taglib uri="/tags/struts-bean" prefix="bean" %>

<%@ taglib uri="/tags/struts-html" prefix="html" %>

<html:html locale="true"/>

I'm not sure this is the answer

manuel.leiriaa at 2007-7-13 0:23:12 > top of Java-index,Java Essentials,Java Programming...
# 2
@Op. This is a Java forum and I this isn't a Java question(?)
kajbja at 2007-7-13 0:23:12 > top of Java-index,Java Essentials,Java Programming...
# 3
Is your opening html tag really missing it's open bracket, or is that a cut & paste error?
hunter9000a at 2007-7-13 0:23:12 > top of Java-index,Java Essentials,Java Programming...