Re: How to read cookie from different domain?

2011-02-16 Thread Randy S.
It is not possible to read a cookie from a different domain. That would be a terrible security problem. The browser will not send cookies that do not match your domain so no amount of code tricks on the server handling this request will get you the cookie. The third party cookies settings in

Re: wicket-ajax.js header contribution with script that includes a less than character

2011-02-03 Thread Randy S.
to escape the character somehow, or try to reverse the arguments like: 0 someVariable. see http://www.informit.com/articles/article.aspx?p=1193471seqNum=9 Am 03.02.2011 um 08:56 schrieb Randy S.: Hi all. I have narrowed a problem down to the following scenario: I have a panel

Re: wicket-ajax.js header contribution with script that includes a less than character

2011-02-03 Thread Randy S.
Thanks, Igor. https://issues.apache.org/jira/browse/WICKET-3420 On Thu, Feb 3, 2011 at 11:01 AM, Igor Vaynberg igor.vaynb...@gmail.comwrote: wicket should do this for you. please file a bug. -igor On Thu, Feb 3, 2011 at 6:09 AM, Randy S. randypo...@gmail.com wrote: Matthias: of course

wicket-ajax.js header contribution with script that includes a less than character

2011-02-02 Thread Randy S.
Hi all. I have narrowed a problem down to the following scenario: I have a panel with this: wicket:head script if (someVariable 0) { someVariable = 0; } /script /wicket:head This script fails to execute when the panel is loaded by ajax. If I replace the less than character with

Re: Logout (Session destroy) on the last (stateful) page?

2010-12-04 Thread Randy S.
that if the user hits reload on the confirmation page, he will first be asked about resending the POST parameters... Anything we could do to invalidate the session at the end of the serving of the prerendered page? Thanks a lot Matt On 2010-12-01 20:44, Randy S. wrote: Does the redirect

Re: Logout (Session destroy) on the last (stateful) page?

2010-12-01 Thread Randy S.
Does the redirect to the home page happen because of Wicket's default render strategy (REDIRECT_TO_BUFFER) that causes two requests? You invalidate session on the first which redirects to the buffered response. When the second request comes in expecting to get the already-rendered response, you

RE: Wicket site on Android phone

2010-10-12 Thread Randy S.
A big advantage of the iphone browser is its ability to scroll an inner scrolling box (scrollable div or iframe, for example). It does this by handling a two-finger drag as scroll. I'm not aware of a way to do the same with the android browser. We also are facing demand for a desktop web app to

Re: Wicket in JBoss cluster

2009-10-22 Thread Randy S.
Isn't this caused by the storage of past pages in files on disk rather than in HTTP Session? This is in the default ISessionStore implementation (see SecondLevelCacheSessionStore, DiskPageStore). On Thu, Oct 22, 2009 at 3:27 PM, Jan Grathwohl jan.grathw...@googlemail.com wrote: Dear all,

Re: Wicket in JBoss cluster

2009-10-22 Thread Randy S.
. But wicket tries to store the page being sent across cluster during replication when the session is deserialized on target node. -Matej On Thu, Oct 22, 2009 at 11:46 PM, Randy S. randypo...@gmail.com wrote: Isn't this caused by the storage of past pages in files on disk rather than in HTTP

Re: Wicket in JBoss cluster

2009-10-22 Thread Randy S.
. But this will only work if the container deserializes sessions immediately after replication. -Matej On Fri, Oct 23, 2009 at 12:00 AM, Randy S. randypo...@gmail.com wrote: Are you saying that beca... - To unsubscribe, e-mail: users-...

Re: Italian Bank (was Re: Wicket 1.4.2 Released!)

2009-10-14 Thread Randy S.
Thanks for the info, Giovanni. Please let us know of any Wicket apps released, especially if there is something we can check out without having accounts. (I don't live in Italy.) On Wed, Oct 14, 2009 at 2:32 AM, Giovanni pino_o...@yahoo.com wrote: The bank is Intesa San Paolo:

Italian Bank (was Re: Wicket 1.4.2 Released!)

2009-10-13 Thread Randy S.
Giovanni, What bank is this? What is the URL and is there anything of particular interest that we can see without accounts? On Sat, Oct 10, 2009 at 7:05 AM, Giovanni pino_o...@yahoo.com wrote: Wow!!! I will upgrade my project for a major italian bank on coming monday. Thanks a lot for all

Re: Complicated workflows

2009-09-30 Thread Randy S.
due to the potential that the second request hits a different server before HTTP session has been properly persisted/shared. On Wed, Sep 30, 2009 at 1:51 AM, Phil Housley undeconstruc...@gmail.comwrote: 2009/9/30 Randy S. randypo...@gmail.com: Have you thought about using Spring Web Flow

Re: RE: Complicated workflows

2009-09-30 Thread Randy S.
We use server affinity but you can't guarantee same server and I can't go in with a 100% plan. We have had funny routing in some cases where requests from the same user even bounce from one data center to another... and back. We've done a lot of work to prevent these things but in the end it's

Re: Complicated workflows

2009-09-29 Thread Randy S.
Have you thought about using Spring Web Flow for this? I'm not a SWF expert, but it sounds like something well-tailored to your needs. For example, a flow can have steps that don't have UIs. Our group at work is looking into Wicket SWF integration. I have a seen a few comments on the web from

Re: Large internet rich UI Wicket websites?

2009-07-02 Thread Randy S.
For what it's worth, my employer is a large financial services organization and we are considering switching to Wicket for all our major internal and external development. I also have been disappointed while going through the Wiki page that lists sites using Wicket. Many are not even in existence

Re: Wicket pages as plugin

2009-03-03 Thread Randy S.
space of the app, the boundary of the iframe prevents such UI elements from going outside the iframe. Naturally, apps running in such a way would have constraints because they're sharing the DOM, JS and CSS with other apps (e.g., like a portal page). But it would add flexibility to Wicket. -Randy S

Re: Wicket pages as plugin

2009-03-03 Thread Randy S.
3, 2009 at 3:11 PM, Randy S. randypo...@gmail.com wrote: Hi all. I am evaluating Wi... - To unsubscribe, e-mail: users-...