Re: swarm wicket 1.4

2008-11-19 Thread Wayne Pope
thing. The most information I've found is here: http://www.nabble.com/WASP-SWARM-status-td20318330.html . It sounds like Wayne Pope may be taking up the torch. Marc Ende-2 wrote: Hi, currently I'm using swarm securing some webpages build on wicket. Now, that's wicket 1.4 is getting

Is there any other way? DataProviders must hit the Db twice for (possible) large datasets

2008-11-26 Thread Wayne Pope
Ok, I was just having a bit of code clean up and I realized that in our IDataProviders we are loading all rows for a given dataset. So looking at the iterator method I see we can limit the result (and the offset). Great I thought - however I see that that the size() method is called as part of

Re: Is there any other way? DataProviders must hit the Db twice for (possible) large datasets

2008-11-26 Thread Wayne Pope
.) On Wed, Nov 26, 2008 at 3:58 PM, Michael Sparer [EMAIL PROTECTED]wrote: have a look at https://issues.apache.org/jira/browse/WICKET-1784 Wayne Pope-2 wrote: Ok, I was just having a bit of code clean up and I realized that in our IDataProviders we are loading all rows for a given

Re: Is there any other way? DataProviders must hit the Db twice for (possible) large datasets

2008-11-26 Thread Wayne Pope
, then you're doing something wrong, IMHO. On Wed, Nov 26, 2008 at 10:32 AM, Wayne Pope [EMAIL PROTECTED] wrote: Hi, thanks for the replies. Micheal O/Hoover - I still don't see how this works as you don't have the limit and offset (that is used in Iterator). How do you know how many rows

Re: Is there any other way? DataProviders must hit the Db twice for (possible) large datasets

2008-11-26 Thread Wayne Pope
if there will be a next page or not. -Matej On Wed, Nov 26, 2008 at 5:15 PM, Wayne Pope [EMAIL PROTECTED] wrote: Hi James, its not killing anything at the moment, I just don't like the idea of hitting the database with due cause. However I thinking about this some more I believe perhaps I should not use

Re: Is there any other way? DataProviders must hit the Db twice for (possible) large datasets

2008-11-26 Thread Wayne Pope
and IGridSortState from the code. It should do exactly what you want and It shouldn't have any dependencies on the rest of grids. -Matej On Wed, Nov 26, 2008 at 5:39 PM, Wayne Pope [EMAIL PROTECTED] wrote: Hi Matej, The idea is always to load one row more than required on page which tells

Re: Is there any other way? DataProviders must hit the Db twice for (possible) large datasets

2008-11-26 Thread Wayne Pope
/o's is never great for scalability. I'm not 'having a go' at wicket or DataViews or anything, just trying to understand it. I never claimed to be a guru - far from it. Wayne On Wed, Nov 26, 2008 at 5:58 PM, Igor Vaynberg [EMAIL PROTECTED]wrote: On Wed, Nov 26, 2008 at 7:32 AM, Wayne Pope

Re: Is there any other way? DataProviders must hit the Db twice for (possible) large datasets

2008-11-26 Thread Wayne Pope
:06 AM, Wayne Pope [EMAIL PROTECTED] wrote: Hi Igor, what? why would you ever load the whole dataset? just to avoid 2 calls on smallish datasets, especially when there are multiple joins and database isnt on the same box. so you think pushing all that extra data over the network

Re: Is there any other way? DataProviders must hit the Db twice for (possible) large datasets

2008-11-26 Thread Wayne Pope
the number of calls itself is meaningless, i dont comprehend why people have a hard time understanding this simple fact. The point for me is : something like select count(*) from user user1 inner join company com1 on user1.company_id= com1.id where com1.code='dht2' - called in size()

Re: Is there any other way? DataProviders must hit the Db twice for (possible) large datasets

2008-11-26 Thread Wayne Pope
. And it transfers minimal data. On Wed, Nov 26, 2008 at 12:45 PM, Wayne Pope [EMAIL PROTECTED] wrote: the number of calls itself is meaningless, i dont comprehend why people have a hard time understanding this simple fact. The point for me is : something like select count(*) from user user1

Re: Is there any other way? DataProviders must hit the Db twice for (possible) large datasets

2008-11-27 Thread Wayne Pope
because it changes the basic assumptions with which the code was written. -igor Best regards, Stefan [0] https://issues.apache.org/jira/browse/WICKET-1784?focusedCommentId=12651278#action_12651278 igor.vaynberg wrote: On Wed, Nov 26, 2008 at 9:32 AM, Wayne Pope [EMAIL

Re: Looking for the previous thread about pagingnavigator with infinite pages

2008-12-03 Thread Wayne Pope
not sure if this is the one you mean - it was titled : Is there any other way? DataProviders must hit the Db twice On Wed, Dec 3, 2008 at 3:41 PM, Serkan Camurcuoglu [EMAIL PROTECTED] wrote: Hi all, Sorry for disturbing but I remember I've read a discussion about implementing a paging

Re: passing list from java class to javascript

2008-12-11 Thread Wayne Pope
definitly json. On Thu, Dec 11, 2008 at 10:29 AM, KAN [EMAIL PROTECTED] wrote: http://json.org/ ? 2008/12/11 Ashis [EMAIL PROTECTED]: Hello all, I have a question i need to pass list from java class to javascript. How can i do this stuff? Thanks -- View this message in context:

Re: [OT] wicket users around the world

2008-12-14 Thread Wayne Pope
Brit, working down here in france with the original Mr Francisco T, on an uber web2.0 app. ;-) Ah monday morning, back to technical things... On Mon, Dec 15, 2008 at 8:01 AM, Juri Prokofjev proj...@gmail.com wrote: Estonia, Tallinn I've tried many frameworks, but wicket is one of my

Using AbstractDefaultAjaxBehavior on a Bookmarkable page?

2009-01-20 Thread Wayne Pope
Hi, when I use an AbstractDefaultAjaxBehavior on a Bookmarkable page I get a : org.apache.wicket.protocol.http.PageExpiredException: Cannot find the rendered page in session [pagemap=null,componentPath=37,versionNumber=0] However if the AbstractDefaultAjaxBehavior is on a none nookmarkable

Re: Using AbstractDefaultAjaxBehavior on a Bookmarkable page?

2009-01-20 Thread Wayne Pope
. please provide a quickstart. -igor On Tue, Jan 20, 2009 at 4:20 AM, Wayne Pope waynemailingli...@googlemail.com wrote: Hi, when I use an AbstractDefaultAjaxBehavior on a Bookmarkable page I get a : org.apache.wicket.protocol.http.PageExpiredException: Cannot find the rendered page

subdomains and setting up WebSession

2009-02-23 Thread Wayne Pope
Hi, I need to be able to map urls like: foo.myapp.com foo2.myapp.com woo.myapp.com etc.. and be able to have a parameter in my session (say a String) set to either foo, foo2, woo, etc These subdomains are database driven and therefore I don't want to add any subdomains hardcoded to web.xml or

Re: subdomains and setting up WebSession

2009-02-23 Thread Wayne Pope
the request ulr root by calling ((WebRequest)RequestCycle.get().getRequest()).getRequestURL() Is that what you want? ** Martin 2009/2/23 Wayne Pope waynemailingli...@googlemail.com: Hi, I need to be able to map urls like: foo.myapp.com foo2.myapp.com woo.myapp.com etc.. and be able

Re: subdomains and setting up WebSession

2009-02-23 Thread Wayne Pope
running several apps on the same tomcat so I need some logic in front of tomcat anyhow.. regards Nino Wayne Pope wrote: Hi Martin, basically I need subdomains to map to a context within the application. For example if you have a application that has several customers, I want to have

Re: subdomains and setting up WebSession

2009-02-23 Thread Wayne Pope
ok thanks Martin, I'll give it a go On Mon, Feb 23, 2009 at 5:27 PM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: ((WebRequest)RequestCycle.get().getRequest()).getRequestURL() should work for you. ** Martin 2009/2/23 Wayne Pope waynemailingli...@googlemail.com: Hi Martin

How to deal with IE bug/feature 'return form submit' in Wicket?

2009-02-25 Thread Wayne Pope
Hi, I have a form that has a single text field and an ajax button. In FF when I click on the button or hit return key the onSumit of the ajaxButton is called. In IE when I click on the button the onSubmit of the ajaxButton is called. However In IE (as you may know) if I hit the return key it

Re: How to deal with IE bug/feature 'return form submit' in Wicket?

2009-02-26 Thread Wayne Pope
On Wed, Feb 25, 2009 at 11:57 AM, Wayne Pope waynemailingli...@googlemail.com wrote: Hi, I have a form that has a single text field and an ajax button. In FF when I click on the button or hit return key the onSumit of the ajaxButton is called. In IE when I click on the button the onSubmit

Re: How to deal with IE bug/feature 'return form submit' in Wicket?

2009-02-26 Thread Wayne Pope
Just looking through some of our forms and this isn;t going to work where we have 2 ajaxbuttons in the same form. I suppose we'll need to separate the forms or something now. On Thu, Feb 26, 2009 at 9:06 AM, Wayne Pope waynemailingli...@googlemail.com wrote: Hi Jeremy, thanks very much

Re: Wicket Security Question

2009-02-26 Thread Wayne Pope
up for doing it again. Wayne www.glasscubes.com On Thu, Feb 26, 2009 at 8:09 PM, Nino Martinez nino.martinez.w...@gmail.com wrote: I might pick it up (But since it's not something I need right now, it has low priority).. But was hoping that Wayne Pope would get back and tell whats state

Using RequestCycle outside of a http request

2009-03-06 Thread Wayne Pope
Hi, We have some Bookmarkable pages that display some given content. I would like to email these links out to a set of users. We have a set of classes that knows how to build the good bookmarkable link depending on the content. Now this works all fine and good. However we need to move the email

Re: Using RequestCycle outside of a http request

2009-03-06 Thread Wayne Pope
://www.wickettraining.com On Fri, Mar 6, 2009 at 10:03 AM, Wayne Pope waynemailingli...@googlemail.com wrote: Hi, We have some Bookmarkable pages that display some given content. I would like to email these links out to a set of users. We have a set of classes that knows how to build the good

Custom wicket:tags?

2009-03-09 Thread Wayne Pope
Hi, is it possible to develop our own custom wicket tag(s)? Anyone done this, or have any pointers? thanks - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: Custom wicket:tags?

2009-03-09 Thread Wayne Pope
, 2009 at 4:58 AM, Wayne Pope waynemailingli...@googlemail.com wrote: Hi, is it possible to develop our own custom wicket tag(s)? Anyone done this, or have any pointers? thanks - To unsubscribe, e-mail: users-unsubscr

please ignore - test.

2008-08-12 Thread Wayne Pope
test

Authorization strategy help

2008-08-12 Thread Wayne Pope
Hi everyone, hope we don't get a double posting, but for some reason the last email account I used couldn't seem to post. Anyhow ! Ok so I'm very new around here so firstly I'd like to say hello! I'm looking to create an online application, and I think I shall be using Wicket, so I forgive the

Re: Authorization strategy help

2008-08-13 Thread Wayne Pope
(mysecuritykey); if (role==null) { return true; } else { return user.hasrole(role); } } and just like that you can have role-based visiblity of any component instead of metadata you can also have an interface components implement, etc -igor On Tue, Aug 12, 2008 at 10:08 AM, Wayne Pope

Re: Is this right? Seems at odds with wicket philosophy

2008-08-14 Thread Wayne Pope
PM, Igor Vaynberg [EMAIL PROTECTED]wrote: On Wed, Aug 13, 2008 at 9:50 AM, Wayne Pope [EMAIL PROTECTED] wrote: Ok, so I'm new to this, however things have been progression ok for my first day with Wicket. However it seems to me that I must be doing HTML markup manipulation in java

SWARM authorization inheritance

2008-08-16 Thread Wayne Pope
Hi, bit confised on this. I set up SWARM and everything is working on my test application. However it seems that I must add every page that I want to under my basic principle in the hive file. ie grant principal test.BasicPrincipal basic { permission ${ComponentPermission} test.Index,

I'm adding a new item to a ListView via ajax - how to get reference to the new item?

2008-08-17 Thread Wayne Pope
Hi everyone, I have a ListView that displays a list of cars (say). I have a small form on the page whereby they can add a new car using a AjaxFallbackButton. I can enter a new car and it updates the ListView However I want to highlight the newly added item, and I just can't seemt to figure out

Re: I'm adding a new item to a ListView via ajax - how to get reference to the new item?

2008-08-17 Thread Wayne Pope
: Hi, The item is already on your page so just use its html id in the javascript script you use to highlight it. Vitaly On Sun, Aug 17, 2008 at 1:22 PM, Wayne Pope [EMAIL PROTECTED] wrote: Hi everyone, I have a ListView that displays a list of cars (say). I have a small form

Re: I'm adding a new item to a ListView via ajax - how to get reference to the new item?

2008-08-18 Thread Wayne Pope
PROTECTED] wrote: use AjaxRequestTarget.get() Am 17.08.2008 um 15:36 schrieb Martin Grigorov: On Sun, 2008-08-17 at 13:36 +0200, Wayne Pope wrote: Hi, But how do I get that target? As the items are being rendered using a ListView - the only time I can get access is during the populateItem

(WebRequest)getRequestCycle() is always null on first request

2008-08-19 Thread Wayne Pope
Hi, I've got a problem that I have no idea how to fix. I'm using IAuthorizationStrategy to authenticate the users of my application. However on the first request to the server (WebRequest)getRequestCycle() returns null all the time, so I therefore cannot get an cookies (which I want). This is a

Re: (WebRequest)getRequestCycle() is always null on first request

2008-08-19 Thread Wayne Pope
Please ignore this, I am being stupid. getRequestCycle() is not available from the session, I had (auto)created that method in my class by mistake... On Tue, Aug 19, 2008 at 10:28 AM, Wayne Pope [EMAIL PROTECTED] wrote: Hi, I've got a problem that I have no idea how to fix. I'm using

Re: Markup Inheritance - not working for head element

2008-08-19 Thread Wayne Pope
:-) that might be it! Its a none issue really, just would be 'nice to have' On Tue, Aug 19, 2008 at 12:19 PM, Martijn Dashorst [EMAIL PROTECTED] wrote: There is the slight possibility that the wiki is inaccurate. Martijn On Tue, Aug 19, 2008 at 11:52 AM, Wayne Pope [EMAIL PROTECTED

Re: Markup Inheritance - not working for head element

2008-08-19 Thread Wayne Pope
On Tue, Aug 19, 2008 at 12:28 PM, Wayne Pope [EMAIL PROTECTED] wrote: :-) that might be it! Its a none issue really, just would be 'nice to have' On Tue, Aug 19, 2008 at 12:19 PM, Martijn Dashorst [EMAIL PROTECTED] wrote: There is the slight possibility that the wiki is inaccurate

Jobs, opertunities and this mailing list

2008-08-21 Thread Wayne Pope
Hi everyone, whats the policy here about advertising jobs or project/dev oppertunities? I'm creating something new and I'm looking for talented people. I don't want to annoy anyone here, so would like to know the rules about this and any suggestions on how I can get in contact with fellow wicket

Re: Jobs, opertunities and this mailing list

2008-08-21 Thread Wayne Pope
ahead, feel free to post the job ads, as long as they are wicket related. -Matej On Thu, Aug 21, 2008 at 4:07 PM, Wayne Pope [EMAIL PROTECTED] wrote: Hi everyone, whats the policy here about advertising jobs or project/dev oppertunities? I'm creating something new and I'm looking

I have some Wicket based opportunities/jobs if you're interested.

2008-08-21 Thread Wayne Pope
Hi, Ok following my last email I have some opportunities for the right people. I'm in the middle of creating a new start-up with funding already sorted. We've got a great idea for an online application totally based on Wicket. I'm activity seeking 2 to 4 developers who would like to get

Re: I have some Wicket based opportunities/jobs if you're interested.

2008-08-21 Thread Wayne Pope
Hi, just to perhaps say - please just contact me directly as I don't want to spam this list in anyway. thanks Wayne On Thu, Aug 21, 2008 at 5:38 PM, Erik van Oosten [EMAIL PROTECTED]wrote: Cristi Manole wrote: Please share more details like when the project is planned to start, how many

PropertyModel/TextArea keeps reference to my detached object!

2008-09-06 Thread Wayne Pope
Ok, this has take me ages to figure out what is happening. I have a model that represents a hibernate entity (called Document). I have a form with a couple of fields which uses PropertyModel on the model and I set the model on this forms contructor.ie.: setModel(model); add(new TextField(title,

Re: newbie problem witch wicket...

2008-09-09 Thread Wayne Pope
Hi, I've only been using Wicket a very short time, but why don;t you just create a simple login form page. Then look at the source and you'll see something like: form action=?wicket:bookmarkablePage=:com.youpackage.LoginPageamp;wicket:interface=:0:signInPanel:signInForm::IFormSubmitListener::

Any wicket based (or plain java) Calendars out there? (not a datepicker)

2008-09-11 Thread Wayne Pope
Hi, does anyone know of a Calendar out there - something comparible to Google's calander in terms of functionality. I've found plenty of php ones and a couple of 'clunky' java ones. Any pointers much appreciated. thanks

Wicket Markup parse doesn't handle Conditional Comments

2008-09-22 Thread Wayne Pope
Hi, I just tried to put some conditional comments in my page: !--[if lt IE 7] style type=text/css .dock img { behavior: url(css/iepngfix.htc) } /style ![endif]-- and the Markupparser just can't seem to handle it: Caused by: java.text.ParseException: Unclosed comment

Re: Wicket Markup parse doesn't handle Conditional Comments

2008-09-23 Thread Wayne Pope
to have to output the whole thing using a label or header contributor. our parser cant handle the non-standard comment tags yet. -igor On Mon, Sep 22, 2008 at 1:40 AM, Wayne Pope [EMAIL PROTECTED] wrote: Hi, I just tried to put some conditional comments in my page: !--[if lt

Why is Wicket called Wicket?

2008-10-22 Thread Wayne Pope
We where just chating here, and we're wondering where the name wicket comes from ? Looking it up on in the dictionary I couldn't really see the connection. Anyone know how the name came about? thanks Wayne

Re: Why is Wicket called Wicket?

2008-10-22 Thread Wayne Pope
of many manyears of effort from the open source community, Wicket now meets most if not all of my criteria for a web framework Wayne Pope wrote: We where just chating here, and we're wondering where the name wicket comes from ? Looking it up on in the dictionary I couldn't really see

Re: How to pass parameters to a BreadCrumbPanel

2008-10-22 Thread Wayne Pope
Hi Naveen, I do it something like this: TabbedPanel tabbedPanel = new TabbedPanel(tabs, tabs){ @Override protected WebMarkupContainer newLink(String linkId, final int index) { PageParameters parameters = new PageParameters();

Re: have anyone tried empire-DB?

2008-10-23 Thread Wayne Pope
Nino what do you recommend in terms orf DB framework. We're currently using Hibernate and I'm personally finding it a pain - it seems to influence the java code way too much and it create some horrible joins if we're not carefull. Any suggestions that you've used in the real world? On Fri, Oct

Re: have anyone tried empire-DB?

2008-10-23 Thread Wayne Pope
does it influence java code... -igor On Wed, Oct 22, 2008 at 10:59 PM, Wayne Pope [EMAIL PROTECTED] wrote: Nino what do you recommend in terms orf DB framework. We're currently using Hibernate and I'm personally finding it a pain - it seems to influence the java code way too much

Re: have anyone tried empire-DB?

2008-10-23 Thread Wayne Pope
coding style. some concepts are very leaky, such as lazy loading, but that cant really be helped. -igor On Wed, Oct 22, 2008 at 11:56 PM, Wayne Pope [EMAIL PROTECTED] wrote: well I'm new to Hibernate, and it seems that you must be extremely consious of how hibernate handles mapping etc

Re: CompoundModel based on proxies

2008-10-29 Thread Wayne Pope
Hi, Francisco and I here where discussing whether we could figure a way of having some form of static/compile time checking on our (Compound)PropertyModels, as I'm a bit concerned long term about some nasty runtime bugs that might slip through the testing coverage. Francisco found this thread -

Re: using wicket

2008-10-29 Thread Wayne Pope
I cannot comment on the stabiliy, but for the javadoc you'll need to download the source and generate the javadoc (use maven for the quickest) as I don;t beleive its online anywhere On Tue, Oct 28, 2008 at 5:53 PM, miro [EMAIL PROTECTED] wrote: I am new to wicket and no guru to help me answer

Re: CompoundModel based on proxies

2008-10-29 Thread Wayne Pope
(hibernate/other) pojo's or are this additional fields? On Wed, Oct 29, 2008 at 10:42 AM, Maarten Bosteels [EMAIL PROTECTED]wrote: On Wed, Oct 29, 2008 at 8:35 AM, Wayne Pope [EMAIL PROTECTED] wrote: Hi, Francisco and I here where discussing whether we could figure a way of having some

Re: CompoundModel based on proxies

2008-10-29 Thread Wayne Pope
Hi Johan, we're now maigrating to 1.4 M3 - do you have any idea roughly when the release proper of 1.4 would be? thanks Wayne On Wed, Oct 29, 2008 at 10:34 AM, Johan Compagner [EMAIL PROTECTED]wrote: wicket 1.5 first 1.4 has to be released On Wed, Oct 29, 2008 at 8:35 AM, Wayne Pope [EMAIL

WASP/SWARM status

2008-11-04 Thread Wayne Pope
Hi, After the staggering loss of Maurice I was wondering if anyone had picked up the baton with WASP/SWARM? I look at svn and the last update was from mrmean so I presume not. I just wanted to check Thanks Wayne

Re: WASP/SWARM status

2008-11-04 Thread Wayne Pope
PROTECTED] wrote: I've been wondering the same thing... Where this what you looked at? https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/branches/wicket-security-1.4-earlyaccess/ Wayne Pope wrote: Hi, After the staggering loss of Maurice I was wondering if anyone had picked

Re: WASP/SWARM status

2008-11-04 Thread Wayne Pope
asking too quickly. But the question still remains to be answered. And it would be a real shame if nobody continued it. Wayne Pope wrote: hi Nino, no I was looking at : https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicket-security/ let me checkout the other

Re: attribute modifier on onclick

2008-11-03 Thread Wayne Pope
not sure but perhaps try modelchanged on the label On Mon, Nov 3, 2008 at 9:32 PM, miro [EMAIL PROTECTED] wrote: I have a linkthis contains a label , now I want to change the style of the label whenever user clicks on the link , to do this I override the method onClick() in

Re: date picker

2008-11-03 Thread Wayne Pope
it probably hasn't been updated. just download the source and do it yourself - its usually very trivial change. On Tue, Nov 4, 2008 at 8:37 AM, tbt [EMAIL PROTECTED] wrote: Hi I'm using wicket 1.3.2 and downloaded wicket-contrib-datepicker-1.2 because I want to use a date picker for my

Re: WASP/SWARM status

2008-11-04 Thread Wayne Pope
Last touched in July by maurice: 'initial compilation against wicket 1.4 (no generics yet)' On Tue, Nov 4, 2008 at 10:16 AM, Wayne Pope [EMAIL PROTECTED] wrote: hi Nino, no I was looking at : https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicket-security/ let me

Using continueToOriginalDestination() in a constructor - will it mess up the PageMap?

2008-11-05 Thread Wayne Pope
Hi, as part of my SWARM 1.4 integration I'm looking trying to get a silent login functionality working, and have used continueToOriginalDestination() in constructor of a Login page. However I saw this thread: http://www.nabble.com/redirect-page-in-the-constructor-td18111387.html#a18204061 So I

RestartResponseAtInterceptPageException causing odd problem with IE

2009-10-08 Thread Wayne Pope
Hi, something we've run across with users using IE - basically if they try and access a page they do not have RENDER permission a UnauthorizedActionException gets thrown. This in turn (when I set through wicket 1.4-rc6) throws a RestartResponseAtInterceptPageException with a AccessDeniedPage that

Fwd: RestartResponseAtInterceptPageException causing odd problem with IE

2009-10-12 Thread Wayne Pope
Last go - any ideas ? thanks -- Forwarded message -- From: Wayne Pope waynemailingli...@googlemail.com Date: Thu, Oct 8, 2009 at 5:17 PM Subject: RestartResponseAtInterceptPageException causing odd problem with IE To: users@wicket.apache.org Hi, something we've run across

WebRequestCycle is creating a HTTP 400/Bad request

2009-10-21 Thread Wayne Pope
Hi, firstly I'm sure this is something we are doing wrong here and is not an issue with wicket however we're lost as to what to do to solve it. We have a page mounted like this: mount(new MixedParamUrlCodingStrategy(/cube/todos, WhichTaskPage.class,. We then request this page:

PageExpiredException: Cannot find the rendered page in session

2009-11-20 Thread Wayne Pope
Hi, we're seeing a few of these in production of late. I however cannot reproduce them locally at the moment. We're using wicket rc7. Any ideas? 2009-11-20 13:43:09,170 ERROR - hub.app.wicket.app.HubWebRequestCycle.onRuntimeException(HubWebRequestCycle.java:72) 72 HubWebRequestCycle -

Re: PageExpiredException: Cannot find the rendered page in session

2009-11-20 Thread Wayne Pope
, Wayne Pope waynemailingli...@googlemail.com wrote: Hi, we're seeing a few of these in production of late. I however cannot reproduce them locally at the moment. We're using wicket rc7. Any ideas? 2009-11-20 13:43:09,170 ERROR - hub.app.wicket.app.HubWebRequestCycle.onRuntimeException

UploadWebRequest is actually a UploadWebRequest$MultipartRequest

2009-11-20 Thread Wayne Pope
Hello, we get the following warning in our logs: (UploadProgressBar.java:106) - UploadProgressBar will not work without an UploadWebRequest. See the javadoc for details. We do override in the application: @Override protected WebRequest newWebRequest(javax.servlet.http.HttpServletRequest

Re: PageExpiredException: Cannot find the rendered page in session

2009-11-20 Thread Wayne Pope
thanks IIja and Igor :-) On Fri, Nov 20, 2009 at 5:54 PM, Ilja Pavkovic ilja.pavko...@binaere-bauten.de wrote: Hi,  Ok I just want to clarify that if we get: [pagemap=null,componentPath=20,versionNumber=0] pagemap null thats not a problem? pagemap with name null indicates the default

How can I disable a IFormValidator?

2009-11-20 Thread Wayne Pope
Hello, I have a form that has a AbstractFormValidator added to it. This does some validation on a couple of formcomponents. However in some situations on of the components is not visible and we get the warming: IFormValidator in form `formContainer:form` depends on a component that has been

Re: UploadWebRequest is actually a UploadWebRequest$MultipartRequest

2009-11-23 Thread Wayne Pope
ok where should I log it? On Fri, Nov 20, 2009 at 7:22 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: looks like a bug. -igor On Fri, Nov 20, 2009 at 8:55 AM, Wayne Pope waynemailingli...@googlemail.com wrote: Hello, we get the following warning in our logs: (UploadProgressBar.java

I feel silly asking this

2010-01-11 Thread Wayne Pope
Ok , I think I must have a brain block or something. Basically how do you localize the submit input on a form with having to add a Button? Currently we have a fairly large number of forms in the applicaiton that just the default form onSubmit and we just add something like: input type=submit

Re: I feel silly asking this

2010-01-11 Thread Wayne Pope
of course the attribute ! ah monday mornings. thanks everyone! On Mon, Jan 11, 2010 at 1:00 PM, Jonas barney...@gmail.com wrote: have a look at http://cwiki.apache.org/WICKET/wickets-xhtml-tags.html section 'Attribute wicket:message' On Mon, Jan 11, 2010 at 12:56 PM, Wayne Pope

Wicket Job offer

2009-04-16 Thread Wayne Pope
PLEASE REPLY TO ME DIRECTLY - NOT THE USER GROUP! Web 2.0 startup based in Nice/Monaco in the south of France seeks top developer to join their small team. English working environment. Skills: Java, Apache Wicket, Hibernate (annotations), Guice, XHTML, CSS, javascript, Agile/SCRUM, Linux skills,

AJAX and Safari

2009-06-22 Thread Wayne Pope
Hi, not sure how to investigate this, but we have an issue with ajax and safari. Problem is it doesn't happen every time - only about 40% . Essentally we send a request: Request Accept text/xml Content-Typeapplication/x-www-form-urlencoded Referer

Re: AJAX and Safari

2009-06-22 Thread Wayne Pope
Sorry I just realised that its not ajax - just a normal form submit. We still have the same problem though Wayne Pope-2 wrote: Hi, not sure how to investigate this, but we have an issue with ajax and safari. Problem is it doesn't happen every time - only about 40% . Essentally we send

Re: AJAX and Safari

2009-06-22 Thread Wayne Pope
though Wayne Pope-2 wrote: Hi, not sure how to investigate this, but we have an issue with ajax and safari. Problem is it doesn't happen every time - only about 40% . Essentally we send a request: Request Accept        text/xml Content-Type  application/x-www-form-urlencoded Referer

Re: AJAX and Safari

2009-06-22 Thread Wayne Pope
to the browser. What does the response Buffer in the WicketFilter look like just before the doGet returns? mf Am 22.06.2009 um 12:58 schrieb Wayne Pope: It looks like we are using an AjaxButton. Sorry for 2 emails to describe the one problem. Any ideas? many thanks On Mon, Jun 22, 2009 at 12:49

Re: AJAX and Safari

2009-06-22 Thread Wayne Pope
the response Buffer in the WicketFilter look like just before the doGet returns? mf Am 22.06.2009 um 12:58 schrieb Wayne Pope: It looks like we are using an AjaxButton. Sorry for 2 emails to describe the one problem. Any ideas? many thanks On Mon, Jun 22, 2009 at 12:49 PM, Wayne

AjaxSubmitLink + setResponsePage = feedback message problem on new page

2010-01-27 Thread Wayne Pope
Hello all, Ok I cannot figure this one out. I have a Page that contains a Form with a AjaxSubmitLink: AjaxSubmitLink submitLink= new AjaxSubmitLink(submitLink) { @Override protected void onSubmit(AjaxRequestTarget target, Form? form) {

Re: AjaxSubmitLink + setResponsePage = feedback message problem on new page

2010-01-27 Thread Wayne Pope
. this is because thats the only way to do it in ajax  - issue a window.location=... if you are doing feedback messages across requests then use getsession().info(...) -igor On Wed, Jan 27, 2010 at 10:15 AM, Wayne Pope waynemailingli...@googlemail.com wrote: Hello all, Ok I cannot figure

Only render javascript once per request?

2010-03-05 Thread Wayne Pope
Hi, I been looking how to solve this and I cannot see a clear way. Basically in a given page we have a list of TextField derived classes that use a JQuery auto complete. This means for each textfield rendered on the page we render in the head something like: $(document).ready(function(){var

PageExpiredException - getting this when the session hasn't timeout

2010-03-26 Thread Wayne Pope
Hi, we're getting this exception in production sometimes, and today I experienced it first hand. We have a session of 60 mins set in the web.xml - however I got this after just 5 mins: org.apache.wicket.protocol.http.PageExpiredException: Cannot find the rendered page in session

Re: PageExpiredException - getting this when the session hasn't timeout

2010-03-26 Thread Wayne Pope
oh and I doubled check that all the classes implement Serializable Wayne Pope-2 wrote: Hi, we're getting this exception in production sometimes, and today I experienced it first hand. We have a session of 60 mins set in the web.xml - however I got this after just 5 mins

Re: PageExpiredException - getting this when the session hasn't timeout

2010-03-26 Thread Wayne Pope
One more bit of info - it was a ajax request that caused this. Any ideas? On Fri, Mar 26, 2010 at 3:42 PM, Wayne Pope waynemailingli...@gmail.com wrote: oh and I doubled check that all the classes implement Serializable Wayne Pope-2 wrote: Hi, we're getting this exception

Re: PageExpiredException - getting this when the session hasn't timeout

2010-03-31 Thread Wayne Pope
Well as far as I know the default balancer in apache supports this yes. On Mon, Mar 29, 2010 at 2:22 PM, Martijn Dashorst martijn.dasho...@gmail.com wrote: Are you using sticky sessions? Martijn On Fri, Mar 26, 2010 at 5:15 PM, Wayne Pope waynemailingli...@googlemail.com wrote: One more

Re: PageExpiredException - getting this when the session hasn't timeout

2010-03-31 Thread Wayne Pope
(or whatever you are using) and bypass apache, if so then it indicates a different problem. -- Regards - Richard Wilkinson Developer, jWeekend: OO Java Technologies - Development and Training http://jWeekend.com On 31 March 2010 13:28, Wayne Pope waynemailingli...@googlemail.com wrote: Well

Re: PageExpiredException - getting this when the session hasn't timeout

2010-03-31 Thread Wayne Pope
= ... } is not completely serializable martijn On Fri, Mar 26, 2010 at 3:42 PM, Wayne Pope waynemailingli...@gmail.com wrote: oh and I doubled check that all the classes implement Serializable Wayne Pope-2 wrote: Hi, we're getting this exception in production sometimes, and today I experienced

Re: PageExpiredException - getting this when the session hasn't timeout

2010-03-31 Thread Wayne Pope
://jWeekend.com On 31 March 2010 14:04, Wayne Pope waynemailingli...@googlemail.com wrote: Hi Richard my mistake we have the following setting: ProxyPass / balancer://cluster/ stickysession=JSESSIONID nofailover=Off This problem happens from time to time in production with no pattern that we

Re: PageExpiredException - getting this when the session hasn't timeout

2010-03-31 Thread Wayne Pope
Technologies - Development and Training http://jWeekend.com On 31 March 2010 15:02, Wayne Pope waynemailingli...@googlemail.com wrote: Hi Richard, thanks for the reply. I'll have a look at trying to make the failover fail again - but the last time we tested it was working fine so unless

Re: PageExpiredException - getting this when the session hasn't timeout

2010-03-31 Thread Wayne Pope
that is a few years old) [1] - http://old.nabble.com/A-few-clustering-questions-td16993201.html -- Regards - Richard Wilkinson Developer, jWeekend: OO Java Technologies - Development and Training http://jWeekend.com On 31 March 2010 15:40, Wayne Pope waynemailingli...@googlemail.com wrote: Thanks

Re: PageExpiredException - getting this when the session hasn't timeout

2010-03-31 Thread Wayne Pope
/A-few-clustering-questions-td16993201.html -- Regards - Richard Wilkinson Developer, jWeekend: OO Java Technologies - Development and Training http://jWeekend.com On 31 March 2010 15:40, Wayne Pope waynemailingli...@googlemail.com wrote: Thanks for the explanation Richard

Properties of model are set to NULL even though we have setRequired set to true

2010-04-02 Thread Wayne Pope
Hi, we've got several examples in our logs of properties of the model being set to null even though the textfield is set to required. I have NO idea how on earth this can happen - its just doesn't make sense - and its really frustrating me!! here's an example: Caused by:

Re: Properties of model are set to NULL even though we have setRequired set to true

2010-04-06 Thread Wayne Pope
Hi, has anyone got any idea about this? I'm still 'spinning my wheels' on it. thanks for any help. On Fri, Apr 2, 2010 at 5:00 PM, Wayne Pope waynemailingli...@googlemail.com wrote: Hi, we've got several examples in our logs of properties of the model being set to null even though

Re: Properties of model are set to NULL even though we have setRequired set to true

2010-04-06 Thread Wayne Pope
you've tried debugging it, so it's not a consistent error? Are you using any special web container or is wrapped somehow (like terracotta)? 2010/4/6 Wayne Pope waynemailingli...@googlemail.com: Hi, has anyone got any idea about this? I'm still 'spinning my wheels' on it. thanks for any help

Re: Properties of model are set to NULL even though we have setRequired set to true

2010-04-06 Thread Wayne Pope
@wicket.apache.org Date: Tuesday, April 6, 2010, 9:51 AM Hi Wayne I guess you've tried debugging it, so it's not a consistent error? Are you using any special web container or is wrapped somehow (like terracotta)? 2010/4/6 Wayne Pope waynemailingli...@googlemail.com: Hi, has anyone got any

  1   2   >