DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=34465>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=34465





------- Additional Comments From [EMAIL PROTECTED]  2005-04-15 11:22 -------
Well jasper2 could put jsp directive outside web.xml when pre-compiling :

see this ant example: 

            <jasper2 
                     validateXml="false" 
                     uriroot="${build.dir}/jspc/myapp" 
                     webXmlFragment="${build.dir}/dst/$myapp/WEB-INF/jsp.xml" 
                     outputDir="${build.dir}/${wnamei}-src" 
                         javaEncoding="ISO-8859-1"
                                 trimSpaces="true" /> 


jasper2 jspc will put the jsp URI in jsp.xml, you could at a later time include
in web.xml using <!ENTITY jsp SYSTEM  "jsp.xml"> and &jsp.xml;

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd"; [ 

<!ENTITY jsp SYSTEM  "jsp.xml">

]>

<web-app>

....

&jsp;

</web-app>


Be carefull &jsp; should be in the servlet-mapping area of your web.xml

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to