Hi ,
I created a tag file called header.tagx (HF says tagx extn is valid ), below is the contents:
<%@ attribute name="name" %>
<h1>Welcome ${name}</h1>
When I call this from a
jsp , I get the error :
java.lang.RuntimeException: org.apache.jasper.JasperException: /WEB-INF/tags/Header.tagx(1,2) The markup in the document preceding the root element must be well-formed.
But the same tag file if I rename to header.tag , it works with any problem. Can someone tell whats the difference ?
thanks!