You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Nino Martinez (JIRA)" <ji...@apache.org> on 2010/10/12 23:54:32 UTC

[jira] Created: (WICKET-3103) RequestCycle logs something, when its intended for servlet container

RequestCycle logs something, when its intended for servlet container
--------------------------------------------------------------------

                 Key: WICKET-3103
                 URL: https://issues.apache.org/jira/browse/WICKET-3103
             Project: Wicket
          Issue Type: Bug
          Components: wicket
    Affects Versions: 1.5-M2.1
            Reporter: Nino Martinez
            Priority: Minor
             Fix For: 1.5-M3


I have something where I reference an image directly in html, wicket has no idea what it should do with it so it passes the request to the servlet container.. It works as I wanted, but should it give an error message?

html:
 <img src="/images/icons/arrow_down_end.png"/>

Log:
ERROR [org.apache.wicket.request.cycle.RequestCycle]  - Unable to execute request. No suitable RequestHandler found. URL=images/icons/arrow_down_end.png

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


[jira] Commented: (WICKET-3103) RequestCycle logs something, when its intended for servlet container

Posted by "Nino Martinez (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WICKET-3103?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12920484#action_12920484 ] 

Nino Martinez commented on WICKET-3103:
---------------------------------------

yes, I think so.. 

> RequestCycle logs something, when its intended for servlet container
> --------------------------------------------------------------------
>
>                 Key: WICKET-3103
>                 URL: https://issues.apache.org/jira/browse/WICKET-3103
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.5-M2.1
>            Reporter: Nino Martinez
>            Assignee: Martin Grigorov
>            Priority: Minor
>             Fix For: 1.5-M3
>
>
> I have something where I reference an image directly in html, wicket has no idea what it should do with it so it passes the request to the servlet container.. It works as I wanted, but should it give an error message?
> html:
>  <img src="/images/icons/arrow_down_end.png"/>
> Log:
> ERROR [org.apache.wicket.request.cycle.RequestCycle]  - Unable to execute request. No suitable RequestHandler found. URL=images/icons/arrow_down_end.png

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


[jira] Resolved: (WICKET-3103) RequestCycle logs something, when its intended for servlet container

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

Martin Grigorov resolved WICKET-3103.
-------------------------------------

    Resolution: Fixed

The log message level is decreased to debug with r1022225 

> RequestCycle logs something, when its intended for servlet container
> --------------------------------------------------------------------
>
>                 Key: WICKET-3103
>                 URL: https://issues.apache.org/jira/browse/WICKET-3103
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.5-M2.1
>            Reporter: Nino Martinez
>            Assignee: Martin Grigorov
>            Priority: Minor
>             Fix For: 1.5-M3
>
>
> I have something where I reference an image directly in html, wicket has no idea what it should do with it so it passes the request to the servlet container.. It works as I wanted, but should it give an error message?
> html:
>  <img src="/images/icons/arrow_down_end.png"/>
> Log:
> ERROR [org.apache.wicket.request.cycle.RequestCycle]  - Unable to execute request. No suitable RequestHandler found. URL=images/icons/arrow_down_end.png

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


[jira] Commented: (WICKET-3103) RequestCycle logs something, when its intended for servlet container

Posted by "Martin Grigorov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/WICKET-3103?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12920470#action_12920470 ] 

Martin Grigorov commented on WICKET-3103:
-----------------------------------------

I guess WicketFilter is configured to listen on '/*' and that's why it logs this message.
Probably just the logging level should be changed to DEBUG.

> RequestCycle logs something, when its intended for servlet container
> --------------------------------------------------------------------
>
>                 Key: WICKET-3103
>                 URL: https://issues.apache.org/jira/browse/WICKET-3103
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.5-M2.1
>            Reporter: Nino Martinez
>            Priority: Minor
>             Fix For: 1.5-M3
>
>
> I have something where I reference an image directly in html, wicket has no idea what it should do with it so it passes the request to the servlet container.. It works as I wanted, but should it give an error message?
> html:
>  <img src="/images/icons/arrow_down_end.png"/>
> Log:
> ERROR [org.apache.wicket.request.cycle.RequestCycle]  - Unable to execute request. No suitable RequestHandler found. URL=images/icons/arrow_down_end.png

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


[jira] Commented: (WICKET-3103) RequestCycle logs something, when its intended for servlet container

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

Hudson commented on WICKET-3103:
--------------------------------

Integrated in Apache Wicket 1.5.x #392 (See [https://hudson.apache.org/hudson/job/Apache%20Wicket%201.5.x/392/])
    WICKET-3103 RequestCycle logs something, when its intended for servlet container

When no suitable request handler is found log just a debug message.
It is common to setup WicketFilter to listens on '/*' and then all requests for static resources (next to WEB-INF folder) to be filtered and let the container to deliver them.


> RequestCycle logs something, when its intended for servlet container
> --------------------------------------------------------------------
>
>                 Key: WICKET-3103
>                 URL: https://issues.apache.org/jira/browse/WICKET-3103
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.5-M2.1
>            Reporter: Nino Martinez
>            Assignee: Martin Grigorov
>            Priority: Minor
>             Fix For: 1.5-M3
>
>
> I have something where I reference an image directly in html, wicket has no idea what it should do with it so it passes the request to the servlet container.. It works as I wanted, but should it give an error message?
> html:
>  <img src="/images/icons/arrow_down_end.png"/>
> Log:
> ERROR [org.apache.wicket.request.cycle.RequestCycle]  - Unable to execute request. No suitable RequestHandler found. URL=images/icons/arrow_down_end.png

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


[jira] Commented: (WICKET-3103) RequestCycle logs something, when its intended for servlet container

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

Hudson commented on WICKET-3103:
--------------------------------

Integrated in Apache Wicket 1.5.x #400 (See [https://hudson.apache.org/hudson/job/Apache%20Wicket%201.5.x/400/])
    cleanup and better message
Issue: WICKET-3103


> RequestCycle logs something, when its intended for servlet container
> --------------------------------------------------------------------
>
>                 Key: WICKET-3103
>                 URL: https://issues.apache.org/jira/browse/WICKET-3103
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.5-M2.1
>            Reporter: Nino Martinez
>            Assignee: Martin Grigorov
>            Priority: Minor
>             Fix For: 1.5-M3
>
>
> I have something where I reference an image directly in html, wicket has no idea what it should do with it so it passes the request to the servlet container.. It works as I wanted, but should it give an error message?
> html:
>  <img src="/images/icons/arrow_down_end.png"/>
> Log:
> ERROR [org.apache.wicket.request.cycle.RequestCycle]  - Unable to execute request. No suitable RequestHandler found. URL=images/icons/arrow_down_end.png

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


[jira] Assigned: (WICKET-3103) RequestCycle logs something, when its intended for servlet container

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

Martin Grigorov reassigned WICKET-3103:
---------------------------------------

    Assignee: Martin Grigorov

> RequestCycle logs something, when its intended for servlet container
> --------------------------------------------------------------------
>
>                 Key: WICKET-3103
>                 URL: https://issues.apache.org/jira/browse/WICKET-3103
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.5-M2.1
>            Reporter: Nino Martinez
>            Assignee: Martin Grigorov
>            Priority: Minor
>             Fix For: 1.5-M3
>
>
> I have something where I reference an image directly in html, wicket has no idea what it should do with it so it passes the request to the servlet container.. It works as I wanted, but should it give an error message?
> html:
>  <img src="/images/icons/arrow_down_end.png"/>
> Log:
> ERROR [org.apache.wicket.request.cycle.RequestCycle]  - Unable to execute request. No suitable RequestHandler found. URL=images/icons/arrow_down_end.png

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