You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@wink.apache.org by "Michael Elman (JIRA)" <ji...@apache.org> on 2009/08/27 08:56:59 UTC

[jira] Created: (WINK-155) Deploy Wink as a servlet filter

Deploy Wink as a servlet filter
-------------------------------

                 Key: WINK-155
                 URL: https://issues.apache.org/jira/browse/WINK-155
             Project: Wink
          Issue Type: New Feature
          Components: Server
    Affects Versions: 0.1
            Reporter: Michael Elman
             Fix For: 0.2


Following the discussion in the mailing list (http://n2.nabble.com/Use-case-deploy-wink-as-a-servlet-filter-td3515605.html#a3515605)

We should be able to deploy Wink as servlet filter. For the 404 responses, the request should propagate to the servlets layer.

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


[jira] Closed: (WINK-155) Deploy Wink as a servlet filter

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

Michael Elman closed WINK-155.
------------------------------


> Deploy Wink as a servlet filter
> -------------------------------
>
>                 Key: WINK-155
>                 URL: https://issues.apache.org/jira/browse/WINK-155
>             Project: Wink
>          Issue Type: New Feature
>          Components: Server
>    Affects Versions: 0.1
>            Reporter: Michael Elman
>            Assignee: Bryant Luk
>             Fix For: 0.2
>
>
> Following the discussion in the mailing list (http://n2.nabble.com/Use-case-deploy-wink-as-a-servlet-filter-td3515605.html#a3515605)
> We should be able to deploy Wink as servlet filter. For the 404 responses, the request should propagate to the servlets layer.

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


[jira] Commented: (WINK-155) Deploy Wink as a servlet filter

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WINK-155?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12751769#action_12751769 ] 

Hudson commented on WINK-155:
-----------------------------

Integrated in Wink-Trunk-JDK1.5 #130 (See [http://hudson.zones.apache.org/hudson/job/Wink-Trunk-JDK1.5/130/])
    Add specific RestFilter integration test

See []
Add RestFilter

See []


> Deploy Wink as a servlet filter
> -------------------------------
>
>                 Key: WINK-155
>                 URL: https://issues.apache.org/jira/browse/WINK-155
>             Project: Wink
>          Issue Type: New Feature
>          Components: Server
>    Affects Versions: 0.1
>            Reporter: Michael Elman
>            Assignee: Bryant Luk
>             Fix For: 0.2
>
>
> Following the discussion in the mailing list (http://n2.nabble.com/Use-case-deploy-wink-as-a-servlet-filter-td3515605.html#a3515605)
> We should be able to deploy Wink as servlet filter. For the 404 responses, the request should propagate to the servlets layer.

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


[jira] Resolved: (WINK-155) Deploy Wink as a servlet filter

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

Bryant Luk resolved WINK-155.
-----------------------------

    Resolution: Fixed

I added the filter implementation.  One difference from the RestServlet is that the filter does not take into account the URL mapping directly.  (i.e. whereas the servlet uses context-root/servlet-path/root resource path, the filter uses context-root/root resource path).  Also if the filter is set to only use url-mapping of /foo/*, a byproduct is that only root resources with /foo/* would be invoked.

> Deploy Wink as a servlet filter
> -------------------------------
>
>                 Key: WINK-155
>                 URL: https://issues.apache.org/jira/browse/WINK-155
>             Project: Wink
>          Issue Type: New Feature
>          Components: Server
>    Affects Versions: 0.1
>            Reporter: Michael Elman
>            Assignee: Bryant Luk
>             Fix For: 0.2
>
>
> Following the discussion in the mailing list (http://n2.nabble.com/Use-case-deploy-wink-as-a-servlet-filter-td3515605.html#a3515605)
> We should be able to deploy Wink as servlet filter. For the 404 responses, the request should propagate to the servlets layer.

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


[jira] Assigned: (WINK-155) Deploy Wink as a servlet filter

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

Bryant Luk reassigned WINK-155:
-------------------------------

    Assignee: Bryant Luk

I'll take a look at this.

> Deploy Wink as a servlet filter
> -------------------------------
>
>                 Key: WINK-155
>                 URL: https://issues.apache.org/jira/browse/WINK-155
>             Project: Wink
>          Issue Type: New Feature
>          Components: Server
>    Affects Versions: 0.1
>            Reporter: Michael Elman
>            Assignee: Bryant Luk
>             Fix For: 0.2
>
>
> Following the discussion in the mailing list (http://n2.nabble.com/Use-case-deploy-wink-as-a-servlet-filter-td3515605.html#a3515605)
> We should be able to deploy Wink as servlet filter. For the 404 responses, the request should propagate to the servlets layer.

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


[jira] Commented: (WINK-155) Deploy Wink as a servlet filter

Posted by "Nick Gallardo (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WINK-155?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12753085#action_12753085 ] 

Nick Gallardo commented on WINK-155:
------------------------------------

bq. Also if the filter is set to only use url-mapping of /foo/, a byproduct is that only root resources with /foo/ would be invoked. 

Thanks Bryant...  This makes sense and is how I would expect it to work.  We just need to make sure we document the pattern and limitations well.

> Deploy Wink as a servlet filter
> -------------------------------
>
>                 Key: WINK-155
>                 URL: https://issues.apache.org/jira/browse/WINK-155
>             Project: Wink
>          Issue Type: New Feature
>          Components: Server
>    Affects Versions: 0.1
>            Reporter: Michael Elman
>            Assignee: Bryant Luk
>             Fix For: 0.2
>
>
> Following the discussion in the mailing list (http://n2.nabble.com/Use-case-deploy-wink-as-a-servlet-filter-td3515605.html#a3515605)
> We should be able to deploy Wink as servlet filter. For the 404 responses, the request should propagate to the servlets layer.

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