[arquillian-issues] [JBoss JIRA] (ARQ-1290) Warp: support Servlets 2.5

Lukáš Fryč (JIRA) jira-events at lists.jboss.org
Wed May 8 09:47:53 EDT 2013


    [ https://issues.jboss.org/browse/ARQ-1290?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12772975#comment-12772975 ] 

Lukáš Fryč commented on ARQ-1290:
---------------------------------

{code}
deployment.webXml(new Function<WebAppDescriptor, WebAppDescriptor>() {
            public WebAppDescriptor apply(WebAppDescriptor webXml) {
                webXml
                    .createFilter()
                        .asyncSupported(true)
                        .filterName("WarpFilter")
                        .filterClass(WarpFilter.class.getName())
                    .up()
                    .createFilterMapping()
                        .filterName("WarpFilter")
                        .urlPattern("/*");
                return webXml;
            };
        });
{code}
                
> Warp: support Servlets 2.5
> --------------------------
>
>                 Key: ARQ-1290
>                 URL: https://issues.jboss.org/browse/ARQ-1290
>             Project: Arquillian
>          Issue Type: Enhancement
>      Security Level: Public(Everyone can see) 
>          Components: Extension - Warp
>    Affects Versions: warp_1.0.0.Alpha2
>            Reporter: Lukáš Fryč
>            Assignee: Lukáš Fryč
>
> Warp currently uses {{@WebFilter}} and thus it is supported only when using Servlets 3.0 protocol.
> Additionally with ARQ-1027, the usage of {{web-fragment.xml}} was introduced.
> Warp should detect what protocol is used (2.5 or 3.0) and in case of 2.5, the {{web.xml}} enrichment will be used instead.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira



More information about the arquillian-issues mailing list