You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-dev@portals.apache.org by "Lee Butts (JIRA)" <ji...@apache.org> on 2007/11/20 06:24:43 UTC

[jira] Created: (PLUTO-439) Assembly code cannot parse Servlet 2.4 web.xml containing tags

Assembly code cannot parse Servlet 2.4 web.xml containing <jsp-config> tags
---------------------------------------------------------------------------

                 Key: PLUTO-439
                 URL: https://issues.apache.org/jira/browse/PLUTO-439
             Project: Pluto
          Issue Type: Bug
          Components: build system
    Affects Versions: 1.1.4
         Environment: Windows XP, Java 1.5.0_07
            Reporter: Lee Butts


I am trying to assemble a portlet using the ant tasks and an expception is being thrown when trying to parse a web.xml file containing:
<web-app version="2.4" ...>
<jsp-config>
    <taglib>
        ...
    </taglib>
    ....
</jsp-config>
</web-app>

Looking through the source it appears that the WebAppDD needs to be updated to support the new wrapping element
http://svn.apache.org/viewvc/portals/pluto/tags/pluto-1.1.4/pluto-descriptor-api/src/main/java/org/apache/pluto/descriptors/servlet/WebAppDD.java?annotate=556325



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


Re: [jira] Updated: (PLUTO-439) Assembly code cannot parse Servlet 2.4 web.xml containing tags

Posted by Elliot Metsger <em...@jhu.edu>.
Hey Craig,

What is the status of the JAXB impl in the 1.1-286-trunk-merge?  Is it 
the default implementation for descriptor services or is castor being used?

Craig Doremus (JIRA) wrote:
>      [ https://issues.apache.org/jira/browse/PLUTO-439?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
> 
> Craig Doremus updated PLUTO-439:
> --------------------------------
> 
>     Fix Version/s: 1.1-286-trunk-merge
> 
> This fix also needs to be applied to the 1.1-286-trunk-merge branch so it makes it into Pluto 2.0.
> 
>> Assembly code cannot parse Servlet 2.4 web.xml containing <jsp-config> tags
>> ---------------------------------------------------------------------------
>>
>>                 Key: PLUTO-439
>>                 URL: https://issues.apache.org/jira/browse/PLUTO-439
>>             Project: Pluto
>>          Issue Type: Bug
>>          Components: descriptor
>>    Affects Versions: 1.1.4
>>         Environment: Windows XP, Java 1.5.0_07
>>            Reporter: Lee Butts
>>            Assignee: Elliot Metsger
>>             Fix For: 1.2.0, 1.1.5, 1.1-286-trunk-merge
>>
>>
>> I am trying to assemble a portlet using the ant tasks and an expception is being thrown when trying to parse a web.xml file containing:
>> <web-app version="2.4" ...>
>> <jsp-config>
>>     <taglib>
>>         ...
>>     </taglib>
>>     ....
>> </jsp-config>
>> </web-app>
>> Looking through the source it appears that the WebAppDD needs to be updated to support the new wrapping element
>> http://svn.apache.org/viewvc/portals/pluto/tags/pluto-1.1.4/pluto-descriptor-api/src/main/java/org/apache/pluto/descriptors/servlet/WebAppDD.java?annotate=556325
> 

[jira] Updated: (PLUTO-439) Assembly code cannot parse Servlet 2.4 web.xml containing tags

Posted by "Craig Doremus (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PLUTO-439?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Craig Doremus updated PLUTO-439:
--------------------------------

    Fix Version/s: 1.1-286-trunk-merge

This fix also needs to be applied to the 1.1-286-trunk-merge branch so it makes it into Pluto 2.0.

> Assembly code cannot parse Servlet 2.4 web.xml containing <jsp-config> tags
> ---------------------------------------------------------------------------
>
>                 Key: PLUTO-439
>                 URL: https://issues.apache.org/jira/browse/PLUTO-439
>             Project: Pluto
>          Issue Type: Bug
>          Components: descriptor
>    Affects Versions: 1.1.4
>         Environment: Windows XP, Java 1.5.0_07
>            Reporter: Lee Butts
>            Assignee: Elliot Metsger
>             Fix For: 1.2.0, 1.1.5, 1.1-286-trunk-merge
>
>
> I am trying to assemble a portlet using the ant tasks and an expception is being thrown when trying to parse a web.xml file containing:
> <web-app version="2.4" ...>
> <jsp-config>
>     <taglib>
>         ...
>     </taglib>
>     ....
> </jsp-config>
> </web-app>
> Looking through the source it appears that the WebAppDD needs to be updated to support the new wrapping element
> http://svn.apache.org/viewvc/portals/pluto/tags/pluto-1.1.4/pluto-descriptor-api/src/main/java/org/apache/pluto/descriptors/servlet/WebAppDD.java?annotate=556325

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PLUTO-439) Assembly code cannot parse Servlet 2.4 web.xml containing tags

Posted by "Elliot Metsger (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PLUTO-439?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12555484#action_12555484 ] 

Elliot Metsger commented on PLUTO-439:
--------------------------------------

Committed to the 1.1.x branch r608340.  Lee can you verify that the fix works with your web.xml?

> Assembly code cannot parse Servlet 2.4 web.xml containing <jsp-config> tags
> ---------------------------------------------------------------------------
>
>                 Key: PLUTO-439
>                 URL: https://issues.apache.org/jira/browse/PLUTO-439
>             Project: Pluto
>          Issue Type: Bug
>          Components: descriptor
>    Affects Versions: 1.1.4
>         Environment: Windows XP, Java 1.5.0_07
>            Reporter: Lee Butts
>            Assignee: Elliot Metsger
>             Fix For: 1.2.0, 1.1.5
>
>
> I am trying to assemble a portlet using the ant tasks and an expception is being thrown when trying to parse a web.xml file containing:
> <web-app version="2.4" ...>
> <jsp-config>
>     <taglib>
>         ...
>     </taglib>
>     ....
> </jsp-config>
> </web-app>
> Looking through the source it appears that the WebAppDD needs to be updated to support the new wrapping element
> http://svn.apache.org/viewvc/portals/pluto/tags/pluto-1.1.4/pluto-descriptor-api/src/main/java/org/apache/pluto/descriptors/servlet/WebAppDD.java?annotate=556325

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (PLUTO-439) Assembly code cannot parse Servlet 2.4 web.xml containing tags

Posted by "Elliot Metsger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PLUTO-439?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Elliot Metsger reassigned PLUTO-439:
------------------------------------

    Assignee: Elliot Metsger

> Assembly code cannot parse Servlet 2.4 web.xml containing <jsp-config> tags
> ---------------------------------------------------------------------------
>
>                 Key: PLUTO-439
>                 URL: https://issues.apache.org/jira/browse/PLUTO-439
>             Project: Pluto
>          Issue Type: Bug
>          Components: descriptor
>    Affects Versions: 1.1.4
>         Environment: Windows XP, Java 1.5.0_07
>            Reporter: Lee Butts
>            Assignee: Elliot Metsger
>             Fix For: 1.2.0, 1.1.5
>
>
> I am trying to assemble a portlet using the ant tasks and an expception is being thrown when trying to parse a web.xml file containing:
> <web-app version="2.4" ...>
> <jsp-config>
>     <taglib>
>         ...
>     </taglib>
>     ....
> </jsp-config>
> </web-app>
> Looking through the source it appears that the WebAppDD needs to be updated to support the new wrapping element
> http://svn.apache.org/viewvc/portals/pluto/tags/pluto-1.1.4/pluto-descriptor-api/src/main/java/org/apache/pluto/descriptors/servlet/WebAppDD.java?annotate=556325

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PLUTO-439) Assembly code cannot parse Servlet 2.4 web.xml containing tags

Posted by "Elliot Metsger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PLUTO-439?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Elliot Metsger updated PLUTO-439:
---------------------------------

      Component/s:     (was: build system)
                   descriptor
    Fix Version/s: 1.1.5
                   1.2.0

Scheduling for 1.1.5.  Thanks for the report Lee!

> Assembly code cannot parse Servlet 2.4 web.xml containing <jsp-config> tags
> ---------------------------------------------------------------------------
>
>                 Key: PLUTO-439
>                 URL: https://issues.apache.org/jira/browse/PLUTO-439
>             Project: Pluto
>          Issue Type: Bug
>          Components: descriptor
>    Affects Versions: 1.1.4
>         Environment: Windows XP, Java 1.5.0_07
>            Reporter: Lee Butts
>            Assignee: Elliot Metsger
>             Fix For: 1.2.0, 1.1.5
>
>
> I am trying to assemble a portlet using the ant tasks and an expception is being thrown when trying to parse a web.xml file containing:
> <web-app version="2.4" ...>
> <jsp-config>
>     <taglib>
>         ...
>     </taglib>
>     ....
> </jsp-config>
> </web-app>
> Looking through the source it appears that the WebAppDD needs to be updated to support the new wrapping element
> http://svn.apache.org/viewvc/portals/pluto/tags/pluto-1.1.4/pluto-descriptor-api/src/main/java/org/apache/pluto/descriptors/servlet/WebAppDD.java?annotate=556325

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (PLUTO-439) Assembly code cannot parse Servlet 2.4 web.xml containing tags

Posted by "Elliot Metsger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PLUTO-439?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Elliot Metsger resolved PLUTO-439.
----------------------------------

    Resolution: Fixed

> Assembly code cannot parse Servlet 2.4 web.xml containing <jsp-config> tags
> ---------------------------------------------------------------------------
>
>                 Key: PLUTO-439
>                 URL: https://issues.apache.org/jira/browse/PLUTO-439
>             Project: Pluto
>          Issue Type: Bug
>          Components: descriptor
>    Affects Versions: 1.1.4
>         Environment: Windows XP, Java 1.5.0_07
>            Reporter: Lee Butts
>            Assignee: Elliot Metsger
>             Fix For: 1.1.5
>
>
> I am trying to assemble a portlet using the ant tasks and an expception is being thrown when trying to parse a web.xml file containing:
> <web-app version="2.4" ...>
> <jsp-config>
>     <taglib>
>         ...
>     </taglib>
>     ....
> </jsp-config>
> </web-app>
> Looking through the source it appears that the WebAppDD needs to be updated to support the new wrapping element
> http://svn.apache.org/viewvc/portals/pluto/tags/pluto-1.1.4/pluto-descriptor-api/src/main/java/org/apache/pluto/descriptors/servlet/WebAppDD.java?annotate=556325

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (PLUTO-439) Assembly code cannot parse Servlet 2.4 web.xml containing tags

Posted by "Lee Butts (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PLUTO-439?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12565016#action_12565016 ] 

Lee Butts commented on PLUTO-439:
---------------------------------

Hi Elliot,

sorry I took so long at getting round to try the fix.

I can confirm that the assemble task now successfully runs over my 2.4 web.xml

cheers

Lee

> Assembly code cannot parse Servlet 2.4 web.xml containing <jsp-config> tags
> ---------------------------------------------------------------------------
>
>                 Key: PLUTO-439
>                 URL: https://issues.apache.org/jira/browse/PLUTO-439
>             Project: Pluto
>          Issue Type: Bug
>          Components: descriptor
>    Affects Versions: 1.1.4
>         Environment: Windows XP, Java 1.5.0_07
>            Reporter: Lee Butts
>            Assignee: Elliot Metsger
>             Fix For: 2.0.0, 1.2.0, 1.1.5
>
>
> I am trying to assemble a portlet using the ant tasks and an expception is being thrown when trying to parse a web.xml file containing:
> <web-app version="2.4" ...>
> <jsp-config>
>     <taglib>
>         ...
>     </taglib>
>     ....
> </jsp-config>
> </web-app>
> Looking through the source it appears that the WebAppDD needs to be updated to support the new wrapping element
> http://svn.apache.org/viewvc/portals/pluto/tags/pluto-1.1.4/pluto-descriptor-api/src/main/java/org/apache/pluto/descriptors/servlet/WebAppDD.java?annotate=556325

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (PLUTO-439) Assembly code cannot parse Servlet 2.4 web.xml containing tags

Posted by "Elliot Metsger (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PLUTO-439?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Elliot Metsger updated PLUTO-439:
---------------------------------

    Fix Version/s:     (was: 2.0.0)
                       (was: 1.2.0)

> Assembly code cannot parse Servlet 2.4 web.xml containing <jsp-config> tags
> ---------------------------------------------------------------------------
>
>                 Key: PLUTO-439
>                 URL: https://issues.apache.org/jira/browse/PLUTO-439
>             Project: Pluto
>          Issue Type: Bug
>          Components: descriptor
>    Affects Versions: 1.1.4
>         Environment: Windows XP, Java 1.5.0_07
>            Reporter: Lee Butts
>            Assignee: Elliot Metsger
>             Fix For: 1.1.5
>
>
> I am trying to assemble a portlet using the ant tasks and an expception is being thrown when trying to parse a web.xml file containing:
> <web-app version="2.4" ...>
> <jsp-config>
>     <taglib>
>         ...
>     </taglib>
>     ....
> </jsp-config>
> </web-app>
> Looking through the source it appears that the WebAppDD needs to be updated to support the new wrapping element
> http://svn.apache.org/viewvc/portals/pluto/tags/pluto-1.1.4/pluto-descriptor-api/src/main/java/org/apache/pluto/descriptors/servlet/WebAppDD.java?annotate=556325

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.