The following issue has been updated:

    Updater: Scott England-Sullivan (mailto:[EMAIL PROTECTED])
       Date: Tue, 1 Mar 2005 3:38 PM
    Comment:
Patch for updated Servlet 2.4 <servlet> element.
    Changes:
             Attachment changed to patch.diff
    ---------------------------------------------------------------------
For a full history of the issue, see:

  http://opensource.atlassian.com/projects/xdoclet/browse/XDT-1286?page=history

---------------------------------------------------------------------
View the issue:
  http://opensource.atlassian.com/projects/xdoclet/browse/XDT-1286

Here is an overview of the issue:
---------------------------------------------------------------------
        Key: XDT-1286
    Summary: Servlet 2.4 changed sub-element order for <servlet>
       Type: Bug

     Status: Open
   Priority: Major

 Original Estimate: Unknown
 Time Spent: Unknown
  Remaining: Unknown

    Project: XDoclet
 Components: 
             Web Module
   Versions:
             1.3

   Assignee: xdoclet-devel (Use for new issues)
   Reporter: Scott England-Sullivan

    Created: Tue, 1 Mar 2005 3:31 PM
    Updated: Tue, 1 Mar 2005 3:38 PM

Description:
The schema for the Servlet 2.4 web.xml file has changed the order of the 
<servlet> element sub-elements.  It has also changed the order of the 
<init-param> sub-elements.

2.3
<servlet>
    <icon/>             <-- MOVED
    <servlet-name/>     <-- MOVED
    <display-name/>     <-- MOVED
    <description/>      <-- MOVED
    ...
    <init-param>
        <param-name/>
        <param-value/>
        <description/>  <-- MOVED
    </init-param>
    ...
</servlet>

2.4
<servlet>
    <description/>      <-- MOVED
    <display-name/>     <-- MOVED
    <icon/>             <-- MOVED
    <servlet-name/>     <-- MOVED
    ...
    <init-param>
        <description/>  <-- MOVED
        <param-name/>
        <param-value/>
    </init-param>
    ...
</servlet>


Generated web.xml is undeployable on Servlet 2.4 containers.

Patch to follow.

Thanks,
ses


---------------------------------------------------------------------
JIRA INFORMATION:
This message is automatically generated by JIRA.

If you think it was sent incorrectly contact one of the administrators:
   http://opensource.atlassian.com/projects/xdoclet/secure/Administrators.jspa

If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira



-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
xdoclet-devel mailing list
xdoclet-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/xdoclet-devel

Reply via email to