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 a

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 fo

Re: Complicated workflows

2009-09-30 Thread Randy S.
rects are out of the question 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 wrote: > 2009/9/30 Randy S. : > > Have you thought about using Spring Web Flow for this? I

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 nev

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 wrote: > Wow!!! > > I will upgrade my project for a major italian bank on coming monday. > > Thanks a lot for all your efforts in

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 wrote: > The bank is "Intesa San Paolo": http://www.group.intesasanpaolo.co

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 wrote: > Dear all, > > would you be so kind and share

Re: Wicket in JBoss cluster

2009-10-22 Thread Randy S.
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. wrote: > > Isn't this caused by the storage of past pages in files on disk rather > than > > i

Re: Wicket in JBoss cluster

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

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. -Ra

Re: Wicket pages as plugin

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

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: 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 ge

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

2010-12-04 Thread Randy S.
t;>>>>> appears to be a sensible option for normal operation. I'm not very >>>>>> familiar >>>>>> with the render strategies but you appear to be right: The page is >>>>>> actually >>>>>> rendered at the

wicket-ajax.js header contribution with

2011-02-02 Thread Randy S.
Hi all. I have narrowed a problem down to the following scenario: I have a panel with this: if (someVariable < 0) { someVariable = 0; } This script fails to execute when the panel is loaded by ajax. If I replace the less than character "<" with equals "==", then it executes (but of

Re: wicket-ajax.js header contribution with

2011-02-03 Thread Randy S.
cket... > > I needed to escape the "<" character somehow, or try to reverse the arguments > > like: 0 > someVariable. > > > see http://www.informit.com/articles/article.aspx?p=1193471&seqNum=9 > > > > Am 03.02.2011 um 08:56 schrieb Randy S.: > >

Re: wicket-ajax.js header contribution with

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 wrote: > wicket should do this for you. please file a bug. > > -igor > > On Thu, Feb 3, 2011 at 6:09 AM, Randy S. wrote: > > Matthias: of course, reversing the

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 br