You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Adrian Sandor (JIRA)" <ji...@apache.org> on 2008/10/25 19:38:44 UTC

[jira] Created: (WICKET-1897) StatelessForm submitted to the wrong page

StatelessForm submitted to the wrong page
-----------------------------------------

                 Key: WICKET-1897
                 URL: https://issues.apache.org/jira/browse/WICKET-1897
             Project: Wicket
          Issue Type: Bug
    Affects Versions: 1.4-M3
            Reporter: Adrian Sandor


I made a small application to reproduce the problem. You can download it from http://aditsu.net/wickettest.zip , I'll try to attach it too.
Dependencies: jetty 6, wicket 1.4-m3, slf4j, log4j
Steps to reproduce:
1. Run the test.Start class
2. Open http://localhost:8080 in a browser
3. Open http://localhost:8080/page2 in a new tab
4. Go to the first tab and click submit

Result:

WicketRuntimeException: unable to find component with path form on stateless page [Page class = test.Page2, id = 0, version = 0]

It looks like the 2 pages are created with the same id in 2 different pagemaps, but when I submit the form, it goes to the second pagemap and finds the second page (with no form on it).

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


[jira] Assigned: (WICKET-1897) StatelessForm submitted to the wrong page

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

Igor Vaynberg reassigned WICKET-1897:
-------------------------------------

    Assignee: Johan Compagner

> StatelessForm submitted to the wrong page
> -----------------------------------------
>
>                 Key: WICKET-1897
>                 URL: https://issues.apache.org/jira/browse/WICKET-1897
>             Project: Wicket
>          Issue Type: Bug
>    Affects Versions: 1.4-M3
>            Reporter: Adrian Sandor
>            Assignee: Johan Compagner
>             Fix For: 1.4-RC2
>
>         Attachments: wickettest.zip
>
>
> I made a small application to reproduce the problem. You can download it from http://aditsu.net/wickettest.zip , I'll try to attach it too.
> Dependencies: jetty 6, wicket 1.4-m3, slf4j, log4j
> Steps to reproduce:
> 1. Run the test.Start class
> 2. Open http://localhost:8080 in a browser
> 3. Open http://localhost:8080/page2 in a new tab
> 4. Go to the first tab and click submit
> Result:
> WicketRuntimeException: unable to find component with path form on stateless page [Page class = test.Page2, id = 0, version = 0]
> It looks like the 2 pages are created with the same id in 2 different pagemaps, but when I submit the form, it goes to the second pagemap and finds the second page (with no form on it).

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


[jira] Updated: (WICKET-1897) StatelessForm submitted to the wrong page

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

Jeremy Thomerson updated WICKET-1897:
-------------------------------------

    Fix Version/s:     (was: 1.4-RC5)
                   1.4-RC6

> StatelessForm submitted to the wrong page
> -----------------------------------------
>
>                 Key: WICKET-1897
>                 URL: https://issues.apache.org/jira/browse/WICKET-1897
>             Project: Wicket
>          Issue Type: Bug
>    Affects Versions: 1.4-M3
>            Reporter: Adrian Sandor
>            Assignee: Johan Compagner
>             Fix For: 1.4-RC6
>
>         Attachments: jira1897.patch, wickettest.zip
>
>
> I made a small application to reproduce the problem. You can download it from http://aditsu.net/wickettest.zip , I'll try to attach it too.
> Dependencies: jetty 6, wicket 1.4-m3, slf4j, log4j
> Steps to reproduce:
> 1. Run the test.Start class
> 2. Open http://localhost:8080 in a browser
> 3. Open http://localhost:8080/page2 in a new tab
> 4. Go to the first tab and click submit
> Result:
> WicketRuntimeException: unable to find component with path form on stateless page [Page class = test.Page2, id = 0, version = 0]
> It looks like the 2 pages are created with the same id in 2 different pagemaps, but when I submit the form, it goes to the second pagemap and finds the second page (with no form on it).

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


[jira] Updated: (WICKET-1897) StatelessForm submitted to the wrong page

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

Jeremy Thomerson updated WICKET-1897:
-------------------------------------

    Fix Version/s:     (was: 1.4-RC3)
                   1.4-RC4

> StatelessForm submitted to the wrong page
> -----------------------------------------
>
>                 Key: WICKET-1897
>                 URL: https://issues.apache.org/jira/browse/WICKET-1897
>             Project: Wicket
>          Issue Type: Bug
>    Affects Versions: 1.4-M3
>            Reporter: Adrian Sandor
>            Assignee: Johan Compagner
>             Fix For: 1.4-RC4
>
>         Attachments: jira1897.patch, wickettest.zip
>
>
> I made a small application to reproduce the problem. You can download it from http://aditsu.net/wickettest.zip , I'll try to attach it too.
> Dependencies: jetty 6, wicket 1.4-m3, slf4j, log4j
> Steps to reproduce:
> 1. Run the test.Start class
> 2. Open http://localhost:8080 in a browser
> 3. Open http://localhost:8080/page2 in a new tab
> 4. Go to the first tab and click submit
> Result:
> WicketRuntimeException: unable to find component with path form on stateless page [Page class = test.Page2, id = 0, version = 0]
> It looks like the 2 pages are created with the same id in 2 different pagemaps, but when I submit the form, it goes to the second pagemap and finds the second page (with no form on it).

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


[jira] Resolved: (WICKET-1897) StatelessForm submitted to the wrong page

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

Igor Vaynberg resolved WICKET-1897.
-----------------------------------

    Resolution: Fixed
      Assignee: Igor Vaynberg  (was: Johan Compagner)

> StatelessForm submitted to the wrong page
> -----------------------------------------
>
>                 Key: WICKET-1897
>                 URL: https://issues.apache.org/jira/browse/WICKET-1897
>             Project: Wicket
>          Issue Type: Bug
>    Affects Versions: 1.4-M3
>            Reporter: Adrian Sandor
>            Assignee: Igor Vaynberg
>             Fix For: 1.4-RC6
>
>         Attachments: jira1897.patch, wickettest.zip
>
>
> I made a small application to reproduce the problem. You can download it from http://aditsu.net/wickettest.zip , I'll try to attach it too.
> Dependencies: jetty 6, wicket 1.4-m3, slf4j, log4j
> Steps to reproduce:
> 1. Run the test.Start class
> 2. Open http://localhost:8080 in a browser
> 3. Open http://localhost:8080/page2 in a new tab
> 4. Go to the first tab and click submit
> Result:
> WicketRuntimeException: unable to find component with path form on stateless page [Page class = test.Page2, id = 0, version = 0]
> It looks like the 2 pages are created with the same id in 2 different pagemaps, but when I submit the form, it goes to the second pagemap and finds the second page (with no form on it).

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


[jira] Updated: (WICKET-1897) StatelessForm submitted to the wrong page

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

Anatoly Kupriyanov updated WICKET-1897:
---------------------------------------

    Attachment: jira1897.patch

Patch to fix the problem and unit-test.

> StatelessForm submitted to the wrong page
> -----------------------------------------
>
>                 Key: WICKET-1897
>                 URL: https://issues.apache.org/jira/browse/WICKET-1897
>             Project: Wicket
>          Issue Type: Bug
>    Affects Versions: 1.4-M3
>            Reporter: Adrian Sandor
>            Assignee: Johan Compagner
>             Fix For: 1.4-RC3
>
>         Attachments: jira1897.patch, wickettest.zip
>
>
> I made a small application to reproduce the problem. You can download it from http://aditsu.net/wickettest.zip , I'll try to attach it too.
> Dependencies: jetty 6, wicket 1.4-m3, slf4j, log4j
> Steps to reproduce:
> 1. Run the test.Start class
> 2. Open http://localhost:8080 in a browser
> 3. Open http://localhost:8080/page2 in a new tab
> 4. Go to the first tab and click submit
> Result:
> WicketRuntimeException: unable to find component with path form on stateless page [Page class = test.Page2, id = 0, version = 0]
> It looks like the 2 pages are created with the same id in 2 different pagemaps, but when I submit the form, it goes to the second pagemap and finds the second page (with no form on it).

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


[jira] Updated: (WICKET-1897) StatelessForm submitted to the wrong page

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

Igor Vaynberg updated WICKET-1897:
----------------------------------

    Fix Version/s: 1.4-RC2

> StatelessForm submitted to the wrong page
> -----------------------------------------
>
>                 Key: WICKET-1897
>                 URL: https://issues.apache.org/jira/browse/WICKET-1897
>             Project: Wicket
>          Issue Type: Bug
>    Affects Versions: 1.4-M3
>            Reporter: Adrian Sandor
>            Assignee: Johan Compagner
>             Fix For: 1.4-RC2
>
>         Attachments: wickettest.zip
>
>
> I made a small application to reproduce the problem. You can download it from http://aditsu.net/wickettest.zip , I'll try to attach it too.
> Dependencies: jetty 6, wicket 1.4-m3, slf4j, log4j
> Steps to reproduce:
> 1. Run the test.Start class
> 2. Open http://localhost:8080 in a browser
> 3. Open http://localhost:8080/page2 in a new tab
> 4. Go to the first tab and click submit
> Result:
> WicketRuntimeException: unable to find component with path form on stateless page [Page class = test.Page2, id = 0, version = 0]
> It looks like the 2 pages are created with the same id in 2 different pagemaps, but when I submit the form, it goes to the second pagemap and finds the second page (with no form on it).

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


[jira] Updated: (WICKET-1897) StatelessForm submitted to the wrong page

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

Jeremy Thomerson updated WICKET-1897:
-------------------------------------

    Fix Version/s:     (was: 1.4-RC4)
                   1.4-RC5

> StatelessForm submitted to the wrong page
> -----------------------------------------
>
>                 Key: WICKET-1897
>                 URL: https://issues.apache.org/jira/browse/WICKET-1897
>             Project: Wicket
>          Issue Type: Bug
>    Affects Versions: 1.4-M3
>            Reporter: Adrian Sandor
>            Assignee: Johan Compagner
>             Fix For: 1.4-RC5
>
>         Attachments: jira1897.patch, wickettest.zip
>
>
> I made a small application to reproduce the problem. You can download it from http://aditsu.net/wickettest.zip , I'll try to attach it too.
> Dependencies: jetty 6, wicket 1.4-m3, slf4j, log4j
> Steps to reproduce:
> 1. Run the test.Start class
> 2. Open http://localhost:8080 in a browser
> 3. Open http://localhost:8080/page2 in a new tab
> 4. Go to the first tab and click submit
> Result:
> WicketRuntimeException: unable to find component with path form on stateless page [Page class = test.Page2, id = 0, version = 0]
> It looks like the 2 pages are created with the same id in 2 different pagemaps, but when I submit the form, it goes to the second pagemap and finds the second page (with no form on it).

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


[jira] Updated: (WICKET-1897) StatelessForm submitted to the wrong page

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

Adrian Sandor updated WICKET-1897:
----------------------------------

    Attachment: wickettest.zip

> StatelessForm submitted to the wrong page
> -----------------------------------------
>
>                 Key: WICKET-1897
>                 URL: https://issues.apache.org/jira/browse/WICKET-1897
>             Project: Wicket
>          Issue Type: Bug
>    Affects Versions: 1.4-M3
>            Reporter: Adrian Sandor
>         Attachments: wickettest.zip
>
>
> I made a small application to reproduce the problem. You can download it from http://aditsu.net/wickettest.zip , I'll try to attach it too.
> Dependencies: jetty 6, wicket 1.4-m3, slf4j, log4j
> Steps to reproduce:
> 1. Run the test.Start class
> 2. Open http://localhost:8080 in a browser
> 3. Open http://localhost:8080/page2 in a new tab
> 4. Go to the first tab and click submit
> Result:
> WicketRuntimeException: unable to find component with path form on stateless page [Page class = test.Page2, id = 0, version = 0]
> It looks like the 2 pages are created with the same id in 2 different pagemaps, but when I submit the form, it goes to the second pagemap and finds the second page (with no form on it).

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


[jira] Updated: (WICKET-1897) StatelessForm submitted to the wrong page

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

Frank Bille Jensen updated WICKET-1897:
---------------------------------------

    Fix Version/s:     (was: 1.4-RC2)
                   1.4-RC3

> StatelessForm submitted to the wrong page
> -----------------------------------------
>
>                 Key: WICKET-1897
>                 URL: https://issues.apache.org/jira/browse/WICKET-1897
>             Project: Wicket
>          Issue Type: Bug
>    Affects Versions: 1.4-M3
>            Reporter: Adrian Sandor
>            Assignee: Johan Compagner
>             Fix For: 1.4-RC3
>
>         Attachments: wickettest.zip
>
>
> I made a small application to reproduce the problem. You can download it from http://aditsu.net/wickettest.zip , I'll try to attach it too.
> Dependencies: jetty 6, wicket 1.4-m3, slf4j, log4j
> Steps to reproduce:
> 1. Run the test.Start class
> 2. Open http://localhost:8080 in a browser
> 3. Open http://localhost:8080/page2 in a new tab
> 4. Go to the first tab and click submit
> Result:
> WicketRuntimeException: unable to find component with path form on stateless page [Page class = test.Page2, id = 0, version = 0]
> It looks like the 2 pages are created with the same id in 2 different pagemaps, but when I submit the form, it goes to the second pagemap and finds the second page (with no form on it).

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