<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
This comes into the resulting JSP file as:
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
How do I get the resulting JSP file to look like this instead (so the server can recognize the jsp tags)?
<%@ taglib uri="/tags/struts-bean" prefix="bean" %>
If I have to, I could write a simple post processor that replaces all the < and > with < and >, but I'd like the transform to do it if possible.
One other small problem, xalan sticks this at the top of my JSP file:
<?xml version="1.0" encoding="UTF-8"?>
How do I turn that off?
Darrel
