Have been using Wicket as part of large SOA project for some time - version
1.2.4. Running our code during development phase using Wepshere application
developer (WID) environments had no probs, wicket has performed v.well.

We are in model office stages of dev for release 1. We're using load runner
for load testing and getting a frequent WicketRuntimeException (please see
snippet below where xxx refers to specific wicket impl. component ids) :-

0000008a RequestCycle  E wicket.RequestCycle step Submit Button xxx
(path=theForm:xxx) is not visible
                                 wicket.WicketRuntimeException: Submit
Button xxx (path=theForm:xxx) is not visible
        at wicket.markup.html.form.Form$5.component(Form.java(Compiled
Code))
        at
wicket.MarkupContainer.visitChildren(MarkupContainer.java(Compiled Code))
        at wicket.markup.html.form.Form.findSubmittingButton(Form.java:583)


"Think" this problem ultimately surfaces because somehow the visibility of
the submitting button has been toggled from visible to invisible before the
form child visitor has had a chance to actually find the submitting button
to perform required subsequent invocation... this would tally with our code
that does call isVisible() as part of the submission process but...

This same symptom appears in several parts of our app using similar code
(different wicket components)
How would the visibility call manage to be invoked before the
findSubmittingButton() method has been invoked?
Is it more likely somewhere we've got an error in our load scripts? 

Any ideas much appreciated. 
Cheers, Rich.



FYI only - code where runtime exception actually raised in
findSubmittingButton() given below...

if (!button.isVisible())
{
        throw new WicketRuntimeException("Submit Button " +
button.getInputName()
                + " (path=" + button.getPageRelativePath() + ") is not
visible");
}


This e-mail (and any attachments) may contain privileged and/or confidential 
information. If you are not the intended recipient please do not disclose, 
copy, distribute, disseminate or take any action in reliance on it. If you have 
received this message in error please reply and tell us and then delete it. 
Should you wish to communicate with us by e-mail we cannot guarantee the 
security of any data outside our own computer systems. For the protection of 
Legal & General's systems and staff, incoming emails will be automatically 
scanned.

Any information contained in this message may be subject to applicable terms 
and conditions and must not be construed as giving investment advice within or 
outside the United Kingdom.

The following companies are subsidiary companies of the Legal & General Group 
Plc which are authorised and regulated by the Financial Services Authority for 
advising and arranging the products shown: Legal & General Partnership Services 
Limited (insurance and mortgages), Legal & General Insurance Limited 
(insurance), Legal & General Assurance Society Limited 
(life assurance, pensions and investments), Legal & General Unit Trust Managers 
Limited and Legal & General Portfolio Management Services Limited (investments).

They are registered in England under numbers shown.
The registered office is Temple Court, 11 Queen Victoria Street, London EC4N 
4TP.

Legal & General Partnership Services Limited: 5045000 Legal & General Assurance 
Society Limited: 166055 Legal & General (Unit Trust Managers) Limited: 1009418 
Legal & General (Portfolio Management Services) Limited: 2457525 Legal & 
General Insurance Limited: 423930

They are registered with the Financial Services Authority under numbers shown. 
You can check this at www.fsa.gov.uk/register

Legal & General Partnership Services Limited: 300792 Legal & General Assurance 
Society Limited: 117659 Legal & General (Unit Trust Managers) Limited: 119273 
Legal & General (Portfolio Management Services) Limited: 146786 Legal & General 
Insurance Limited: 202050


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to