Re: Same versioned link opens different pages on different machines

2012-04-13 Thread Martin Grigorov
https://issues.apache.org/jira/browse/WICKET-4441
now I'm convinced that this additional check is needed there

On Fri, Apr 13, 2012 at 12:00 AM, Igor Vaynberg igor.vaynb...@gmail.com wrote:
 in that case a bit of logic in the page that checks the product id in
 onconfigure() against one in the model, and if they are different
 redirects to the correct page...

 -igor

 On Thu, Apr 12, 2012 at 1:56 PM, Bertrand Guay-Paquet
 ber...@step.polymtl.ca wrote:
 you simply need to check what page class is mounted, and if the page
 retrieved by id is not of that class then dont render it but redirect
 to the bookmarkable url instead.

 -igor

 Both pages actually use the same MyPage.java class in this case. The only
 difference is the page parameter encoded in the URL which presumably drives
 a model.


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Same versioned link opens different pages on different machines

2012-04-13 Thread Alec Swan
@Bertrand Thank you for clarifying that ALL urls in this discussion
are mapped to the same page class.

@Igor The core of Wicket value proposition is that it manages the
state of your pages correctly. So, verifying that the state that
Wicket manages is consistent with user inputs (product id 123 vs 379)
should not be necessary. I can add the checks that you recommended in
onconfigure() but I would like to get your agreement that it's a
workaround for a critical bug.

Thanks,

Alec

On Fri, Apr 13, 2012 at 1:55 AM, Martin Grigorov mgrigo...@apache.org wrote:
 https://issues.apache.org/jira/browse/WICKET-4441
 now I'm convinced that this additional check is needed there

 On Fri, Apr 13, 2012 at 12:00 AM, Igor Vaynberg igor.vaynb...@gmail.com 
 wrote:
 in that case a bit of logic in the page that checks the product id in
 onconfigure() against one in the model, and if they are different
 redirects to the correct page...

 -igor

 On Thu, Apr 12, 2012 at 1:56 PM, Bertrand Guay-Paquet
 ber...@step.polymtl.ca wrote:
 you simply need to check what page class is mounted, and if the page
 retrieved by id is not of that class then dont render it but redirect
 to the bookmarkable url instead.

 -igor

 Both pages actually use the same MyPage.java class in this case. The only
 difference is the page parameter encoded in the URL which presumably drives
 a model.


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 Martin Grigorov
 jWeekend
 Training, Consulting, Development
 http://jWeekend.com

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Same versioned link opens different pages on different machines

2012-04-12 Thread Martin Grigorov
Hey Bertrand,

This is not a complete answer. The complete answer is in the mail
thread that led to WICKET-4488:
Only the initial version of _stateful_ page is bookmarkable.
I.e. only ?0 is really bookmarkable because in my session page1?3
could be created by clicking link1 then link2 while in the other
session page1?3 could be already created by clicking link4 and then
link5 (i.e. by doing completely different actions than the ones I
did). Then sending this url with the version encoded in it will just
load it from the receiver's page store and show it.

Summary - bookmarkable urls are:
1) the url of a stateless page (because it keeps the state in page parameters)
2) the url to the initial version of a stateful page. The pageId (1.5:
mountPath?pageId, 1.4 Hybrid url: mountPath.pageId) is session scoped
so it could be 0 or bigger. The important thing is that this is the
first render of this page instance.

An exception in these rules is when there is authorization involved.
I.e. the application may decide to show/hide some components depending
on the current user roles. In this case users with different roles
will see different content as well.

On Thu, Apr 12, 2012 at 1:08 AM, Bertrand Guay-Paquet
ber...@step.polymtl.ca wrote:
 Hi,

 A ticket regarding this was created and resolved in 1.5 (WICKET-4488). From
 the work log:
 There was code for this situation but it didn't cover the case 100%.
 Now if a request to page2?0 is made and the type of the found page with id=0
 is not Page2 then a new instance of Page2 is instantiated.




 On 11/04/2012 5:56 PM, Igor Vaynberg wrote:

 page 5 in your session can be completely different then page 5 in
 user's session.

 non-bookmarkable urls cannot be emailed...thats kind of the point.

 -igor

 On Wed, Apr 11, 2012 at 2:37 PM, Alec Swanalecs...@gmail.com  wrote:

 Hello,

 I received a link from a customer to a versioned page (.version at the
 end of the URL). However, when I click on the link I see a completely
 different page.

 We are using Wicket 1.4.17 and the page is mounted  as:

 mount(new HybridUrlCodingStrategy(mp, MyPage.class));

 Why is this happening and how can I fix this?

 Thanks,

 Alec

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Same versioned link opens different pages on different machines

2012-04-12 Thread Alec Swan
Igor,

The link I click ends with /mp/oid/123.9, where 123 is a product id.
However, when the page is rendered its URL changes to end with
/mp/oid/123.x where x is different every time. Moreover, the page is
displaying the wrong product 379!

So, it's not the wrong version of the page, but the wrong product that
worries me.

Can you explain this?

Thanks,

Alec

On Wed, Apr 11, 2012 at 4:08 PM, Bertrand Guay-Paquet
ber...@step.polymtl.ca wrote:
 Hi,

 A ticket regarding this was created and resolved in 1.5 (WICKET-4488). From
 the work log:
 There was code for this situation but it didn't cover the case 100%.
 Now if a request to page2?0 is made and the type of the found page with id=0
 is not Page2 then a new instance of Page2 is instantiated.




 On 11/04/2012 5:56 PM, Igor Vaynberg wrote:

 page 5 in your session can be completely different then page 5 in
 user's session.

 non-bookmarkable urls cannot be emailed...thats kind of the point.

 -igor

 On Wed, Apr 11, 2012 at 2:37 PM, Alec Swanalecs...@gmail.com  wrote:

 Hello,

 I received a link from a customer to a versioned page (.version at the
 end of the URL). However, when I click on the link I see a completely
 different page.

 We are using Wicket 1.4.17 and the page is mounted  as:

 mount(new HybridUrlCodingStrategy(mp, MyPage.class));

 Why is this happening and how can I fix this?

 Thanks,

 Alec

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Same versioned link opens different pages on different machines

2012-04-12 Thread Igor Vaynberg
On Thu, Apr 12, 2012 at 8:22 AM, Alec Swan alecs...@gmail.com wrote:
 Igor,

 The link I click ends with /mp/oid/123.9, where 123 is a product id.
 However, when the page is rendered its URL changes to end with
 /mp/oid/123.x where x is different every time. Moreover, the page is
 displaying the wrong product 379!

 So, it's not the wrong version of the page, but the wrong product that
 worries me.

 Can you explain this?

i never once said the word version in my response :) i was, in fact,
talking about page ids. i dont think the old hybrid url coding
strategy checks the page id in its url against the mount. so in your
session page 9 can be something entirely different. i believe this is
what was fixed by WICKET-4488.

-igor



 Thanks,

 Alec

 On Wed, Apr 11, 2012 at 4:08 PM, Bertrand Guay-Paquet
 ber...@step.polymtl.ca wrote:
 Hi,

 A ticket regarding this was created and resolved in 1.5 (WICKET-4488). From
 the work log:
 There was code for this situation but it didn't cover the case 100%.
 Now if a request to page2?0 is made and the type of the found page with id=0
 is not Page2 then a new instance of Page2 is instantiated.




 On 11/04/2012 5:56 PM, Igor Vaynberg wrote:

 page 5 in your session can be completely different then page 5 in
 user's session.

 non-bookmarkable urls cannot be emailed...thats kind of the point.

 -igor

 On Wed, Apr 11, 2012 at 2:37 PM, Alec Swanalecs...@gmail.com  wrote:

 Hello,

 I received a link from a customer to a versioned page (.version at the
 end of the URL). However, when I click on the link I see a completely
 different page.

 We are using Wicket 1.4.17 and the page is mounted  as:

 mount(new HybridUrlCodingStrategy(mp, MyPage.class));

 Why is this happening and how can I fix this?

 Thanks,

 Alec

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Same versioned link opens different pages on different machines

2012-04-12 Thread Martin Grigorov
On Thu, Apr 12, 2012 at 6:43 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote:
 On Thu, Apr 12, 2012 at 8:22 AM, Alec Swan alecs...@gmail.com wrote:
 Igor,

 The link I click ends with /mp/oid/123.9, where 123 is a product id.
 However, when the page is rendered its URL changes to end with
 /mp/oid/123.x where x is different every time. Moreover, the page is
 displaying the wrong product 379!

 So, it's not the wrong version of the page, but the wrong product that
 worries me.

 Can you explain this?

 i never once said the word version in my response :) i was, in fact,
 talking about page ids. i dont think the old hybrid url coding
 strategy checks the page id in its url against the mount. so in your
 session page 9 can be something entirely different. i believe this is
 what was fixed by WICKET-4488.

Not exactly.
4488 fixes the problem when user1 has opened page1?0. Then user2 sends
a url page2?0 to user1.
user1 opens this url but because of the existence of a page with
pageId 0 in the page store user sees page1, not page2 as user2
intended.

After 4488 Wicket will load page with id == 0 then it will check its
class against the class of the mountPoint and ignore the stored page
if they don't match. And will create a completely new instance of
mountPoint and show it to user1. I.e. a new instance of page2

I hope I described it clearly.



 -igor



 Thanks,

 Alec

 On Wed, Apr 11, 2012 at 4:08 PM, Bertrand Guay-Paquet
 ber...@step.polymtl.ca wrote:
 Hi,

 A ticket regarding this was created and resolved in 1.5 (WICKET-4488). From
 the work log:
 There was code for this situation but it didn't cover the case 100%.
 Now if a request to page2?0 is made and the type of the found page with id=0
 is not Page2 then a new instance of Page2 is instantiated.




 On 11/04/2012 5:56 PM, Igor Vaynberg wrote:

 page 5 in your session can be completely different then page 5 in
 user's session.

 non-bookmarkable urls cannot be emailed...thats kind of the point.

 -igor

 On Wed, Apr 11, 2012 at 2:37 PM, Alec Swanalecs...@gmail.com  wrote:

 Hello,

 I received a link from a customer to a versioned page (.version at the
 end of the URL). However, when I click on the link I see a completely
 different page.

 We are using Wicket 1.4.17 and the page is mounted  as:

 mount(new HybridUrlCodingStrategy(mp, MyPage.class));

 Why is this happening and how can I fix this?

 Thanks,

 Alec

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Same versioned link opens different pages on different machines

2012-04-12 Thread Igor Vaynberg
On Thu, Apr 12, 2012 at 8:55 AM, Martin Grigorov mgrigo...@apache.org wrote:
 On Thu, Apr 12, 2012 at 6:43 PM, Igor Vaynberg igor.vaynb...@gmail.com 
 wrote:
 On Thu, Apr 12, 2012 at 8:22 AM, Alec Swan alecs...@gmail.com wrote:
 Igor,

 The link I click ends with /mp/oid/123.9, where 123 is a product id.
 However, when the page is rendered its URL changes to end with
 /mp/oid/123.x where x is different every time. Moreover, the page is
 displaying the wrong product 379!

 So, it's not the wrong version of the page, but the wrong product that
 worries me.

 Can you explain this?

 i never once said the word version in my response :) i was, in fact,
 talking about page ids. i dont think the old hybrid url coding
 strategy checks the page id in its url against the mount. so in your
 session page 9 can be something entirely different. i believe this is
 what was fixed by WICKET-4488.

 Not exactly.
 4488 fixes the problem when user1 has opened page1?0. Then user2 sends
 a url page2?0 to user1.
 user1 opens this url but because of the existence of a page with
 pageId 0 in the page store user sees page1, not page2 as user2
 intended.

 After 4488 Wicket will load page with id == 0 then it will check its
 class against the class of the mountPoint and ignore the stored page
 if they don't match. And will create a completely new instance of
 mountPoint and show it to user1. I.e. a new instance of page2

 I hope I described it clearly.

i think thats *exactly* what i said...




 -igor



 Thanks,

 Alec

 On Wed, Apr 11, 2012 at 4:08 PM, Bertrand Guay-Paquet
 ber...@step.polymtl.ca wrote:
 Hi,

 A ticket regarding this was created and resolved in 1.5 (WICKET-4488). From
 the work log:
 There was code for this situation but it didn't cover the case 100%.
 Now if a request to page2?0 is made and the type of the found page with 
 id=0
 is not Page2 then a new instance of Page2 is instantiated.




 On 11/04/2012 5:56 PM, Igor Vaynberg wrote:

 page 5 in your session can be completely different then page 5 in
 user's session.

 non-bookmarkable urls cannot be emailed...thats kind of the point.

 -igor

 On Wed, Apr 11, 2012 at 2:37 PM, Alec Swanalecs...@gmail.com  wrote:

 Hello,

 I received a link from a customer to a versioned page (.version at the
 end of the URL). However, when I click on the link I see a completely
 different page.

 We are using Wicket 1.4.17 and the page is mounted  as:

 mount(new HybridUrlCodingStrategy(mp, MyPage.class));

 Why is this happening and how can I fix this?

 Thanks,

 Alec

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 Martin Grigorov
 jWeekend
 Training, Consulting, Development
 http://jWeekend.com

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Same versioned link opens different pages on different machines

2012-04-12 Thread Alec Swan
but because of the existence of a page with pageId 0 in the page
store user sees page1, not page2 as user2 intended

So, what is the page id in ../mp/oid/123.9 url?


On Thu, Apr 12, 2012 at 9:58 AM, Igor Vaynberg igor.vaynb...@gmail.com wrote:
 On Thu, Apr 12, 2012 at 8:55 AM, Martin Grigorov mgrigo...@apache.org wrote:
 On Thu, Apr 12, 2012 at 6:43 PM, Igor Vaynberg igor.vaynb...@gmail.com 
 wrote:
 On Thu, Apr 12, 2012 at 8:22 AM, Alec Swan alecs...@gmail.com wrote:
 Igor,

 The link I click ends with /mp/oid/123.9, where 123 is a product id.
 However, when the page is rendered its URL changes to end with
 /mp/oid/123.x where x is different every time. Moreover, the page is
 displaying the wrong product 379!

 So, it's not the wrong version of the page, but the wrong product that
 worries me.

 Can you explain this?

 i never once said the word version in my response :) i was, in fact,
 talking about page ids. i dont think the old hybrid url coding
 strategy checks the page id in its url against the mount. so in your
 session page 9 can be something entirely different. i believe this is
 what was fixed by WICKET-4488.

 Not exactly.
 4488 fixes the problem when user1 has opened page1?0. Then user2 sends
 a url page2?0 to user1.
 user1 opens this url but because of the existence of a page with
 pageId 0 in the page store user sees page1, not page2 as user2
 intended.

 After 4488 Wicket will load page with id == 0 then it will check its
 class against the class of the mountPoint and ignore the stored page
 if they don't match. And will create a completely new instance of
 mountPoint and show it to user1. I.e. a new instance of page2

 I hope I described it clearly.

 i think thats *exactly* what i said...




 -igor



 Thanks,

 Alec

 On Wed, Apr 11, 2012 at 4:08 PM, Bertrand Guay-Paquet
 ber...@step.polymtl.ca wrote:
 Hi,

 A ticket regarding this was created and resolved in 1.5 (WICKET-4488). 
 From
 the work log:
 There was code for this situation but it didn't cover the case 100%.
 Now if a request to page2?0 is made and the type of the found page with 
 id=0
 is not Page2 then a new instance of Page2 is instantiated.




 On 11/04/2012 5:56 PM, Igor Vaynberg wrote:

 page 5 in your session can be completely different then page 5 in
 user's session.

 non-bookmarkable urls cannot be emailed...thats kind of the point.

 -igor

 On Wed, Apr 11, 2012 at 2:37 PM, Alec Swanalecs...@gmail.com  wrote:

 Hello,

 I received a link from a customer to a versioned page (.version at the
 end of the URL). However, when I click on the link I see a completely
 different page.

 We are using Wicket 1.4.17 and the page is mounted  as:

 mount(new HybridUrlCodingStrategy(mp, MyPage.class));

 Why is this happening and how can I fix this?

 Thanks,

 Alec

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org



 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 Martin Grigorov
 jWeekend
 Training, Consulting, Development
 http://jWeekend.com

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Same versioned link opens different pages on different machines

2012-04-12 Thread Bertrand Guay-Paquet
I don't know much about HybridUrlCodingStrategy since I use Wicket 1.5, 
but based on what you observed (.x changes on every render), I would say 
the x is the page version.


I re-read your emails and if I understand correctly, both product 379 
and 123 use the same page class. If that is the case, I don't think 
WICKET-4488 is the same problem. That issue concerns rendering a 
different *Page* class because of a page version id. In your case, the 
MyPage page class is the single page involved in both the wrong and 
right pages you see rendered.


I suggest putting a break point or logging code in your page's 
constructor to check 1) if a new page is created or an old version is 
displayed and 2) if the page parameters are properly decoded.


On 12/04/2012 12:32 PM, Alec Swan wrote:

but because of the existence of a page with pageId 0 in the page
store user sees page1, not page2 as user2 intended

So, what is the page id in ../mp/oid/123.9 url?


On Thu, Apr 12, 2012 at 9:58 AM, Igor Vaynbergigor.vaynb...@gmail.com  wrote:

On Thu, Apr 12, 2012 at 8:55 AM, Martin Grigorovmgrigo...@apache.org  wrote:

On Thu, Apr 12, 2012 at 6:43 PM, Igor Vaynbergigor.vaynb...@gmail.com  wrote:

On Thu, Apr 12, 2012 at 8:22 AM, Alec Swanalecs...@gmail.com  wrote:

Igor,

The link I click ends with /mp/oid/123.9, where 123 is a product id.
However, when the page is rendered its URL changes to end with
/mp/oid/123.x where x is different every time. Moreover, the page is
displaying the wrong product 379!

So, it's not the wrong version of the page, but the wrong product that
worries me.

Can you explain this?

i never once said the word version in my response :) i was, in fact,
talking about page ids. i dont think the old hybrid url coding
strategy checks the page id in its url against the mount. so in your
session page 9 can be something entirely different. i believe this is
what was fixed by WICKET-4488.

Not exactly.
4488 fixes the problem when user1 has opened page1?0. Then user2 sends
a url page2?0 to user1.
user1 opens this url but because of the existence of a page with
pageId 0 in the page store user sees page1, not page2 as user2
intended.

After 4488 Wicket will load page with id == 0 then it will check its
class against the class of the mountPoint and ignore the stored page
if they don't match. And will create a completely new instance of
mountPoint and show it to user1. I.e. a new instance of page2

I hope I described it clearly.

i think thats *exactly* what i said...




-igor



Thanks,

Alec

On Wed, Apr 11, 2012 at 4:08 PM, Bertrand Guay-Paquet
ber...@step.polymtl.ca  wrote:

Hi,

A ticket regarding this was created and resolved in 1.5 (WICKET-4488). From
the work log:
There was code for this situation but it didn't cover the case 100%.
Now if a request to page2?0 is made and the type of the found page with id=0
is not Page2 then a new instance of Page2 is instantiated.




On 11/04/2012 5:56 PM, Igor Vaynberg wrote:

page 5 in your session can be completely different then page 5 in
user's session.

non-bookmarkable urls cannot be emailed...thats kind of the point.

-igor

On Wed, Apr 11, 2012 at 2:37 PM, Alec Swanalecs...@gmail.comwrote:

Hello,

I received a link from a customer to a versioned page (.version at the
end of the URL). However, when I click on the link I see a completely
different page.

We are using Wicket 1.4.17 and the page is mounted  as:

mount(new HybridUrlCodingStrategy(mp, MyPage.class));

Why is this happening and how can I fix this?

Thanks,

Alec

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org




--
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Same versioned link opens different pages on different machines

2012-04-12 Thread Martin Grigorov
On Thu, Apr 12, 2012 at 7:47 PM, Bertrand Guay-Paquet
ber...@step.polymtl.ca wrote:
 I don't know much about HybridUrlCodingStrategy since I use Wicket 1.5, but
 based on what you observed (.x changes on every render), I would say the x
 is the page version.

 I re-read your emails and if I understand correctly, both product 379 and
 123 use the same page class. If that is the case, I don't think WICKET-4488
 is the same problem. That issue concerns rendering a different *Page* class
 because of a page version id. In your case, the MyPage page class is the
 single page involved in both the wrong and right pages you see rendered.

^^This is what I tried to explain in my earlier mail.

user1 visits /product/10.8 then goes to /product/20.9
later user2 sends /product/30.8 to user1
user1 opens /product/30.8 but actually sees product/10 because Wicket
loads page with id = 8 from the store ignoring the current request
parameter (10)

So this is *not* covered by 4488!
And I see no way to detect such problem by having just the information
encoded in the url



 I suggest putting a break point or logging code in your page's constructor
 to check 1) if a new page is created or an old version is displayed and 2)
 if the page parameters are properly decoded.


 On 12/04/2012 12:32 PM, Alec Swan wrote:

 but because of the existence of a page with pageId 0 in the page
 store user sees page1, not page2 as user2 intended

 So, what is the page id in ../mp/oid/123.9 url?


 On Thu, Apr 12, 2012 at 9:58 AM, Igor Vaynbergigor.vaynb...@gmail.com
  wrote:

 On Thu, Apr 12, 2012 at 8:55 AM, Martin Grigorovmgrigo...@apache.org
  wrote:

 On Thu, Apr 12, 2012 at 6:43 PM, Igor Vaynbergigor.vaynb...@gmail.com
  wrote:

 On Thu, Apr 12, 2012 at 8:22 AM, Alec Swanalecs...@gmail.com  wrote:

 Igor,

 The link I click ends with /mp/oid/123.9, where 123 is a product id.
 However, when the page is rendered its URL changes to end with
 /mp/oid/123.x where x is different every time. Moreover, the page is
 displaying the wrong product 379!

 So, it's not the wrong version of the page, but the wrong product that
 worries me.

 Can you explain this?

 i never once said the word version in my response :) i was, in fact,
 talking about page ids. i dont think the old hybrid url coding
 strategy checks the page id in its url against the mount. so in your
 session page 9 can be something entirely different. i believe this is
 what was fixed by WICKET-4488.

 Not exactly.
 4488 fixes the problem when user1 has opened page1?0. Then user2 sends
 a url page2?0 to user1.
 user1 opens this url but because of the existence of a page with
 pageId 0 in the page store user sees page1, not page2 as user2
 intended.

 After 4488 Wicket will load page with id == 0 then it will check its
 class against the class of the mountPoint and ignore the stored page
 if they don't match. And will create a completely new instance of
 mountPoint and show it to user1. I.e. a new instance of page2

 I hope I described it clearly.

 i think thats *exactly* what i said...


 -igor


 Thanks,

 Alec

 On Wed, Apr 11, 2012 at 4:08 PM, Bertrand Guay-Paquet
 ber...@step.polymtl.ca  wrote:

 Hi,

 A ticket regarding this was created and resolved in 1.5
 (WICKET-4488). From
 the work log:
 There was code for this situation but it didn't cover the case 100%.
 Now if a request to page2?0 is made and the type of the found page
 with id=0
 is not Page2 then a new instance of Page2 is instantiated.




 On 11/04/2012 5:56 PM, Igor Vaynberg wrote:

 page 5 in your session can be completely different then page 5 in
 user's session.

 non-bookmarkable urls cannot be emailed...thats kind of the point.

 -igor

 On Wed, Apr 11, 2012 at 2:37 PM, Alec Swanalecs...@gmail.com
  wrote:

 Hello,

 I received a link from a customer to a versioned page (.version at
 the
 end of the URL). However, when I click on the link I see a
 completely
 different page.

 We are using Wicket 1.4.17 and the page is mounted  as:

 mount(new HybridUrlCodingStrategy(mp, MyPage.class));

 Why is this happening and how can I fix this?

 Thanks,

 Alec


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org

 -
 To unsubscribe, e-mail: 

Re: Same versioned link opens different pages on different machines

2012-04-12 Thread Alec Swan
And I see no way to detect such problem by having just the
information encoded in the url
This is VERY scary!

How do I fix this?

On Thu, Apr 12, 2012 at 11:39 AM, Martin Grigorov mgrigo...@apache.org wrote:
 On Thu, Apr 12, 2012 at 7:47 PM, Bertrand Guay-Paquet
 ber...@step.polymtl.ca wrote:
 I don't know much about HybridUrlCodingStrategy since I use Wicket 1.5, but
 based on what you observed (.x changes on every render), I would say the x
 is the page version.

 I re-read your emails and if I understand correctly, both product 379 and
 123 use the same page class. If that is the case, I don't think WICKET-4488
 is the same problem. That issue concerns rendering a different *Page* class
 because of a page version id. In your case, the MyPage page class is the
 single page involved in both the wrong and right pages you see rendered.

 ^^This is what I tried to explain in my earlier mail.

 user1 visits /product/10.8 then goes to /product/20.9
 later user2 sends /product/30.8 to user1
 user1 opens /product/30.8 but actually sees product/10 because Wicket
 loads page with id = 8 from the store ignoring the current request
 parameter (10)

 So this is *not* covered by 4488!
 And I see no way to detect such problem by having just the information
 encoded in the url



 I suggest putting a break point or logging code in your page's constructor
 to check 1) if a new page is created or an old version is displayed and 2)
 if the page parameters are properly decoded.


 On 12/04/2012 12:32 PM, Alec Swan wrote:

 but because of the existence of a page with pageId 0 in the page
 store user sees page1, not page2 as user2 intended

 So, what is the page id in ../mp/oid/123.9 url?


 On Thu, Apr 12, 2012 at 9:58 AM, Igor Vaynbergigor.vaynb...@gmail.com
  wrote:

 On Thu, Apr 12, 2012 at 8:55 AM, Martin Grigorovmgrigo...@apache.org
  wrote:

 On Thu, Apr 12, 2012 at 6:43 PM, Igor Vaynbergigor.vaynb...@gmail.com
  wrote:

 On Thu, Apr 12, 2012 at 8:22 AM, Alec Swanalecs...@gmail.com  wrote:

 Igor,

 The link I click ends with /mp/oid/123.9, where 123 is a product id.
 However, when the page is rendered its URL changes to end with
 /mp/oid/123.x where x is different every time. Moreover, the page is
 displaying the wrong product 379!

 So, it's not the wrong version of the page, but the wrong product that
 worries me.

 Can you explain this?

 i never once said the word version in my response :) i was, in fact,
 talking about page ids. i dont think the old hybrid url coding
 strategy checks the page id in its url against the mount. so in your
 session page 9 can be something entirely different. i believe this is
 what was fixed by WICKET-4488.

 Not exactly.
 4488 fixes the problem when user1 has opened page1?0. Then user2 sends
 a url page2?0 to user1.
 user1 opens this url but because of the existence of a page with
 pageId 0 in the page store user sees page1, not page2 as user2
 intended.

 After 4488 Wicket will load page with id == 0 then it will check its
 class against the class of the mountPoint and ignore the stored page
 if they don't match. And will create a completely new instance of
 mountPoint and show it to user1. I.e. a new instance of page2

 I hope I described it clearly.

 i think thats *exactly* what i said...


 -igor


 Thanks,

 Alec

 On Wed, Apr 11, 2012 at 4:08 PM, Bertrand Guay-Paquet
 ber...@step.polymtl.ca  wrote:

 Hi,

 A ticket regarding this was created and resolved in 1.5
 (WICKET-4488). From
 the work log:
 There was code for this situation but it didn't cover the case 100%.
 Now if a request to page2?0 is made and the type of the found page
 with id=0
 is not Page2 then a new instance of Page2 is instantiated.




 On 11/04/2012 5:56 PM, Igor Vaynberg wrote:

 page 5 in your session can be completely different then page 5 in
 user's session.

 non-bookmarkable urls cannot be emailed...thats kind of the point.

 -igor

 On Wed, Apr 11, 2012 at 2:37 PM, Alec Swanalecs...@gmail.com
  wrote:

 Hello,

 I received a link from a customer to a versioned page (.version at
 the
 end of the URL). However, when I click on the link I see a
 completely
 different page.

 We are using Wicket 1.4.17 and the page is mounted  as:

 mount(new HybridUrlCodingStrategy(mp, MyPage.class));

 Why is this happening and how can I fix this?

 Thanks,

 Alec


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org

 -
 

Re: Same versioned link opens different pages on different machines

2012-04-12 Thread Dan Retzlaff
When re-rendering a page, can you parse the new request URL and make sure
all the parameters are the same as those used at construction? I don't
think Wicket saves the original parameters now, but maybe it should.

On Thu, Apr 12, 2012 at 12:15 PM, Alec Swan alecs...@gmail.com wrote:

 And I see no way to detect such problem by having just the
 information encoded in the url
 This is VERY scary!

 How do I fix this?

 On Thu, Apr 12, 2012 at 11:39 AM, Martin Grigorov mgrigo...@apache.org
 wrote:
  On Thu, Apr 12, 2012 at 7:47 PM, Bertrand Guay-Paquet
  ber...@step.polymtl.ca wrote:
  I don't know much about HybridUrlCodingStrategy since I use Wicket 1.5,
 but
  based on what you observed (.x changes on every render), I would say
 the x
  is the page version.
 
  I re-read your emails and if I understand correctly, both product 379
 and
  123 use the same page class. If that is the case, I don't think
 WICKET-4488
  is the same problem. That issue concerns rendering a different *Page*
 class
  because of a page version id. In your case, the MyPage page class is the
  single page involved in both the wrong and right pages you see rendered.
 
  ^^This is what I tried to explain in my earlier mail.
 
  user1 visits /product/10.8 then goes to /product/20.9
  later user2 sends /product/30.8 to user1
  user1 opens /product/30.8 but actually sees product/10 because Wicket
  loads page with id = 8 from the store ignoring the current request
  parameter (10)
 
  So this is *not* covered by 4488!
  And I see no way to detect such problem by having just the information
  encoded in the url
 
 
 
  I suggest putting a break point or logging code in your page's
 constructor
  to check 1) if a new page is created or an old version is displayed and
 2)
  if the page parameters are properly decoded.
 
 
  On 12/04/2012 12:32 PM, Alec Swan wrote:
 
  but because of the existence of a page with pageId 0 in the page
  store user sees page1, not page2 as user2 intended
 
  So, what is the page id in ../mp/oid/123.9 url?
 
 
  On Thu, Apr 12, 2012 at 9:58 AM, Igor Vaynbergigor.vaynb...@gmail.com
 
   wrote:
 
  On Thu, Apr 12, 2012 at 8:55 AM, Martin Grigorovmgrigo...@apache.org
 
   wrote:
 
  On Thu, Apr 12, 2012 at 6:43 PM, Igor Vaynberg
 igor.vaynb...@gmail.com
   wrote:
 
  On Thu, Apr 12, 2012 at 8:22 AM, Alec Swanalecs...@gmail.com
  wrote:
 
  Igor,
 
  The link I click ends with /mp/oid/123.9, where 123 is a product
 id.
  However, when the page is rendered its URL changes to end with
  /mp/oid/123.x where x is different every time. Moreover, the page
 is
  displaying the wrong product 379!
 
  So, it's not the wrong version of the page, but the wrong product
 that
  worries me.
 
  Can you explain this?
 
  i never once said the word version in my response :) i was, in
 fact,
  talking about page ids. i dont think the old hybrid url coding
  strategy checks the page id in its url against the mount. so in your
  session page 9 can be something entirely different. i believe this
 is
  what was fixed by WICKET-4488.
 
  Not exactly.
  4488 fixes the problem when user1 has opened page1?0. Then user2
 sends
  a url page2?0 to user1.
  user1 opens this url but because of the existence of a page with
  pageId 0 in the page store user sees page1, not page2 as user2
  intended.
 
  After 4488 Wicket will load page with id == 0 then it will check its
  class against the class of the mountPoint and ignore the stored page
  if they don't match. And will create a completely new instance of
  mountPoint and show it to user1. I.e. a new instance of page2
 
  I hope I described it clearly.
 
  i think thats *exactly* what i said...
 
 
  -igor
 
 
  Thanks,
 
  Alec
 
  On Wed, Apr 11, 2012 at 4:08 PM, Bertrand Guay-Paquet
  ber...@step.polymtl.ca  wrote:
 
  Hi,
 
  A ticket regarding this was created and resolved in 1.5
  (WICKET-4488). From
  the work log:
  There was code for this situation but it didn't cover the case
 100%.
  Now if a request to page2?0 is made and the type of the found page
  with id=0
  is not Page2 then a new instance of Page2 is instantiated.
 
 
 
 
  On 11/04/2012 5:56 PM, Igor Vaynberg wrote:
 
  page 5 in your session can be completely different then page 5 in
  user's session.
 
  non-bookmarkable urls cannot be emailed...thats kind of the
 point.
 
  -igor
 
  On Wed, Apr 11, 2012 at 2:37 PM, Alec Swanalecs...@gmail.com
   wrote:
 
  Hello,
 
  I received a link from a customer to a versioned page (.version
 at
  the
  end of the URL). However, when I click on the link I see a
  completely
  different page.
 
  We are using Wicket 1.4.17 and the page is mounted  as:
 
  mount(new HybridUrlCodingStrategy(mp, MyPage.class));
 
  Why is this happening and how can I fix this?
 
  Thanks,
 
  Alec
 
 
 
 -
  To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
  For additional commands, e-mail: users-h...@wicket.apache.org
 
 
 
 

Re: Same versioned link opens different pages on different machines

2012-04-12 Thread Igor Vaynberg
On Thu, Apr 12, 2012 at 10:39 AM, Martin Grigorov mgrigo...@apache.org wrote:
 On Thu, Apr 12, 2012 at 7:47 PM, Bertrand Guay-Paquet
 ber...@step.polymtl.ca wrote:
 I don't know much about HybridUrlCodingStrategy since I use Wicket 1.5, but
 based on what you observed (.x changes on every render), I would say the x
 is the page version.

 I re-read your emails and if I understand correctly, both product 379 and
 123 use the same page class. If that is the case, I don't think WICKET-4488
 is the same problem. That issue concerns rendering a different *Page* class
 because of a page version id. In your case, the MyPage page class is the
 single page involved in both the wrong and right pages you see rendered.

 ^^This is what I tried to explain in my earlier mail.

 user1 visits /product/10.8 then goes to /product/20.9
 later user2 sends /product/30.8 to user1
 user1 opens /product/30.8 but actually sees product/10 because Wicket
 loads page with id = 8 from the store ignoring the current request
 parameter (10)

 So this is *not* covered by 4488!
 And I see no way to detect such problem by having just the information
 encoded in the url

you simply need to check what page class is mounted, and if the page
retrieved by id is not of that class then dont render it but redirect
to the bookmarkable url instead.

-igor




 I suggest putting a break point or logging code in your page's constructor
 to check 1) if a new page is created or an old version is displayed and 2)
 if the page parameters are properly decoded.


 On 12/04/2012 12:32 PM, Alec Swan wrote:

 but because of the existence of a page with pageId 0 in the page
 store user sees page1, not page2 as user2 intended

 So, what is the page id in ../mp/oid/123.9 url?


 On Thu, Apr 12, 2012 at 9:58 AM, Igor Vaynbergigor.vaynb...@gmail.com
  wrote:

 On Thu, Apr 12, 2012 at 8:55 AM, Martin Grigorovmgrigo...@apache.org
  wrote:

 On Thu, Apr 12, 2012 at 6:43 PM, Igor Vaynbergigor.vaynb...@gmail.com
  wrote:

 On Thu, Apr 12, 2012 at 8:22 AM, Alec Swanalecs...@gmail.com  wrote:

 Igor,

 The link I click ends with /mp/oid/123.9, where 123 is a product id.
 However, when the page is rendered its URL changes to end with
 /mp/oid/123.x where x is different every time. Moreover, the page is
 displaying the wrong product 379!

 So, it's not the wrong version of the page, but the wrong product that
 worries me.

 Can you explain this?

 i never once said the word version in my response :) i was, in fact,
 talking about page ids. i dont think the old hybrid url coding
 strategy checks the page id in its url against the mount. so in your
 session page 9 can be something entirely different. i believe this is
 what was fixed by WICKET-4488.

 Not exactly.
 4488 fixes the problem when user1 has opened page1?0. Then user2 sends
 a url page2?0 to user1.
 user1 opens this url but because of the existence of a page with
 pageId 0 in the page store user sees page1, not page2 as user2
 intended.

 After 4488 Wicket will load page with id == 0 then it will check its
 class against the class of the mountPoint and ignore the stored page
 if they don't match. And will create a completely new instance of
 mountPoint and show it to user1. I.e. a new instance of page2

 I hope I described it clearly.

 i think thats *exactly* what i said...


 -igor


 Thanks,

 Alec

 On Wed, Apr 11, 2012 at 4:08 PM, Bertrand Guay-Paquet
 ber...@step.polymtl.ca  wrote:

 Hi,

 A ticket regarding this was created and resolved in 1.5
 (WICKET-4488). From
 the work log:
 There was code for this situation but it didn't cover the case 100%.
 Now if a request to page2?0 is made and the type of the found page
 with id=0
 is not Page2 then a new instance of Page2 is instantiated.




 On 11/04/2012 5:56 PM, Igor Vaynberg wrote:

 page 5 in your session can be completely different then page 5 in
 user's session.

 non-bookmarkable urls cannot be emailed...thats kind of the point.

 -igor

 On Wed, Apr 11, 2012 at 2:37 PM, Alec Swanalecs...@gmail.com
  wrote:

 Hello,

 I received a link from a customer to a versioned page (.version at
 the
 end of the URL). However, when I click on the link I see a
 completely
 different page.

 We are using Wicket 1.4.17 and the page is mounted  as:

 mount(new HybridUrlCodingStrategy(mp, MyPage.class));

 Why is this happening and how can I fix this?

 Thanks,

 Alec


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org

 

Re: Same versioned link opens different pages on different machines

2012-04-12 Thread Bertrand Guay-Paquet

you simply need to check what page class is mounted, and if the page
retrieved by id is not of that class then dont render it but redirect
to the bookmarkable url instead.

-igor
Both pages actually use the same MyPage.java class in this case. The 
only difference is the page parameter encoded in the URL which 
presumably drives a model.


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Same versioned link opens different pages on different machines

2012-04-12 Thread Igor Vaynberg
in that case a bit of logic in the page that checks the product id in
onconfigure() against one in the model, and if they are different
redirects to the correct page...

-igor

On Thu, Apr 12, 2012 at 1:56 PM, Bertrand Guay-Paquet
ber...@step.polymtl.ca wrote:
 you simply need to check what page class is mounted, and if the page
 retrieved by id is not of that class then dont render it but redirect
 to the bookmarkable url instead.

 -igor

 Both pages actually use the same MyPage.java class in this case. The only
 difference is the page parameter encoded in the URL which presumably drives
 a model.


 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Same versioned link opens different pages on different machines

2012-04-11 Thread Alec Swan
Hello,

I received a link from a customer to a versioned page (.version at the
end of the URL). However, when I click on the link I see a completely
different page.

We are using Wicket 1.4.17 and the page is mounted  as:

mount(new HybridUrlCodingStrategy(mp, MyPage.class));

Why is this happening and how can I fix this?

Thanks,

Alec

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Same versioned link opens different pages on different machines

2012-04-11 Thread Igor Vaynberg
page 5 in your session can be completely different then page 5 in
user's session.

non-bookmarkable urls cannot be emailed...thats kind of the point.

-igor

On Wed, Apr 11, 2012 at 2:37 PM, Alec Swan alecs...@gmail.com wrote:
 Hello,

 I received a link from a customer to a versioned page (.version at the
 end of the URL). However, when I click on the link I see a completely
 different page.

 We are using Wicket 1.4.17 and the page is mounted  as:

 mount(new HybridUrlCodingStrategy(mp, MyPage.class));

 Why is this happening and how can I fix this?

 Thanks,

 Alec

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Same versioned link opens different pages on different machines

2012-04-11 Thread Bertrand Guay-Paquet

Hi,

A ticket regarding this was created and resolved in 1.5 (WICKET-4488). 
From the work log:

There was code for this situation but it didn't cover the case 100%.
Now if a request to page2?0 is made and the type of the found page with 
id=0 is not Page2 then a new instance of Page2 is instantiated.




On 11/04/2012 5:56 PM, Igor Vaynberg wrote:

page 5 in your session can be completely different then page 5 in
user's session.

non-bookmarkable urls cannot be emailed...thats kind of the point.

-igor

On Wed, Apr 11, 2012 at 2:37 PM, Alec Swanalecs...@gmail.com  wrote:

Hello,

I received a link from a customer to a versioned page (.version at the
end of the URL). However, when I click on the link I see a completely
different page.

We are using Wicket 1.4.17 and the page is mounted  as:

mount(new HybridUrlCodingStrategy(mp, MyPage.class));

Why is this happening and how can I fix this?

Thanks,

Alec

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org




-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org