Schema « Tag « JSP-Servlet Q&A





1. Is there a DTD or Schema file for jsp tag files?    stackoverflow.com

I am writing some JSP 2.x tag files. I have searched for a few hours now, but I was not able to find doctype/schema definitions/dtds for jsp based tag files. Does anybody ...

2. JSP custom tags: missing DTD/XML Schema    stackoverflow.com

I've written my JSP custom tag with the following TLD:

<?xml version="1.0" encoding="UTF-8"?>
<taglib
  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee web-jsptaglibrary_2_1.xsd"
  xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  version="2.1">
  <tlibversion>1.0</tlibversion> 
  <jspversion>2.1</jspversion>
  ...
Now Eclipse Helios complains that ...