Re: Wicket on low end hardware

2023-01-03 Thread François Meillet
Have you try the command line options -verbose:class to list all classes loaded in the JVM at startup ? For example loading Yauaa (Yet Another UserAgent Analyzer, https://github.com/nielsbasjes/yauaa) or Simple Magic (https://github.com/j256/simplemagic) takes time. François > Le 3 janv.

Re: Apache Wicket 6.0.0-beta1 is released

2012-03-26 Thread François Meillet
Great ! Thanks ! François Le 26 mars 2012 à 20:43, Martin Grigorov a écrit : The Wicket team is proud to announce the first beta release of the Wicket 6.x series. This release brings over many improvements over the 1.5.x series. The roadmap with the major goals can be found at

Re: PageExpiredException and PageExpired

2012-03-15 Thread François Meillet
I found the problem : I use a IRequestCycleListener and my onException implementation was buggy. The ordering of catch-clause was bad !. Thanks Martin. François Le 15 mars 2012 à 08:46, Martin Grigorov a écrit : Hi, Looking at the application from your other post I think the

Re: PageExpiredErrorPage - httpServletResponse.status

2012-03-15 Thread François Meillet
ticket : https://issues.apache.org/jira/browse/WICKET-4455 Le 15 mars 2012 à 10:24, Martin Grigorov a écrit : This is the case since several versions of Wicket, not just 6.0. But I think your suggestion is better. File a ticket please. On Thu, Mar 15, 2012 at 11:17 AM, Francois Meillet

Re: Could not find component after session dies

2012-03-14 Thread François Meillet
Hi Martin, Le 14 mars 2012 à 13:50, Martin Grigorov a écrit : Hi Francois, On Wed, Mar 14, 2012 at 1:51 PM, Francois Meillet qq...@gmail.com wrote: Release: Wicket 6.0-SNAPSHOT Good! And sorry if I break the APIs from time to time ;-) ;-) The pages: All pages extends

Re: Enable debug messages for org.apache.wicket.util.resource to get a list of all filenames tried

2012-03-08 Thread François Meillet
if you use logback, add the line logger name=org.apache.wicket.util.resource level=debug/ in your log config file Le 9 mars 2012 à 08:28, mlabs a écrit : how exactly do I enable these debug messages? -- View this message in context:

Re: LoadableDetachableModels for a ListView ( database with Cayenne)

2012-02-16 Thread François Meillet
Hi Vineet, public LoadableDetachableModelYourClass load(final Long xxx) { LoadableDetachableModelListYourClass model = new LoadableDetachableModelListYourClass() { protected YourClass load() { try {

Re: Problem DatePicker, ModalWindow and IE8

2012-02-10 Thread François Meillet
Hi Mathieu, Have you try to modify (or set) the CSS z-index property (link the the position property) of the div that cover the close button François Le 10 févr. 2012 à 09:21, Matt a écrit : close

Re: Numeric Filter on TextField

2012-01-05 Thread François Meillet
Have a look to http://stackoverflow.com/questions/469357/html-text-input-allow-only-numeric-input François Le 5 janv. 2012 à 09:16, codix a écrit : I have a TextField for filtering the data in a DataTable. However, the rows in the table is purely numeric. How do I prevent users from

Re: How to get client ip with wicket 1.5

2011-11-20 Thread François Meillet
((ServletWebRequest) RequestCycle.get().getRequest()).getContainerRequest().getRemoteHost() François Le 21 nov. 2011 à 08:20, vineet semwal a écrit : ServletWebRequest servletWebRequest = (ServletWebRequest) getRequestCycle().getRequest(); HttpServletRequest request =

Re: Wicket deployment issue on oc4j

2011-08-30 Thread François Meillet
Have a look to jmxremote.access http://download.oracle.com/javase/6/docs/technotes/guides/management/agent.html#gdeup and http://download.oracle.com/javase/1,5.0/docs/guide/jmx/tutorial/security.html François Le 30 août 2011 à 07:22, josyula jagan kumar a écrit : Dear All, When we try

Re: form in modal window

2011-05-25 Thread François Meillet
just use an AjaxButton François Le 25 mai 2011 à 13:57, Mathilde Pellerin a écrit : Thanks for answer. Sorry for the first question : it was not the main problem so I didn't search the solution. Now it's fine, the confirmation message disappear. But the main problem was the second :

Re: form in modal window

2011-05-25 Thread François Meillet
/mathilde.pellerin http://fr.linkedin.com/in/mathildepellerin François Meillet fm...@meillet.com - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

StoredResponsesMap

2011-05-23 Thread François Meillet
Hi Wicketers, While I was doing some load testing with with a small prog using Apache httpclient (45 threads, only the get requests were done) I got this error 17:59:22.086 ERROR [http-bio-8080-exec-1] DefaultExceptionMapper - 108 - Unexpected error occurred

Re: StoredResponsesMap

2011-05-23 Thread François Meillet
...@apache.orgwrote: Please file a ticket. 2011/5/23 François Meillet fm...@meillet.com Hi Wicketers, While I was doing some load testing with with a small prog using Apache httpclient (45 threads, only the get requests were done) I got this error 17:59:22.086 ERROR [http-bio-8080-exec-1

Re: Killing threads in Application's onDestroy method

2011-05-19 Thread François Meillet
You should have a look at Terracotta Quartz, a very good scheduler. François Le 18 mai 2011 à 20:51, Henrique Boregio a écrit : Hi, in my Wicket Application class, I create a couple of thread that sleep most of the time..and come alive every one in a while to do some maintenance tasks. I

Re: Access to HttpServletResponse gone in 1.5?

2011-01-26 Thread François Meillet
with the 1.5 API you get WebResponse response = (WebResponse) getRequestCycle().getResponse(); François Le 27 janv. 2011 à 01:15, Todd Wolff a écrit : Hi, After migrating from 1.4.x to 1.5 RCI, I encountered only one breaking change. I used to be able to access the servlet

Re: File upload with inner form and modal window

2010-12-07 Thread François Meillet
just add form.setMultiPart(true); in your form François Le 7 déc. 2010 à 20:11, Cédric Thiébault a écrit : Hi, I want to upload files with an Ajax form that is in a modal window (using a Panel, not a WebPage). The modal and its form are part of the main form: main-page.html form

Re: File upload with inner form and modal window

2010-12-07 Thread François Meillet
for the upload) throws an exception on submit. Here is the code that I've attached to the Jira issue: http://dl.dropbox.com/u/2167784/wicket-modal-upload.zip Cedric 2010/12/7 François Meillet fm...@meillet.com: just add form.setMultiPart(true); in your form François Le 7 déc

Re: File upload with inner form and modal window

2010-12-07 Thread François Meillet
); } }); } protected abstract void onSubmit(AjaxRequestTarget target, String fileName); } 2010/12/7 François Meillet fm...@meillet.com: it has to be in the main form afaik François Le 7 déc. 2010 à 20:27, Cédric Thiébault a écrit : I've done this in the modal window form... And I

Scalability

2010-04-11 Thread François Meillet
Hi Wicketers, 1) I need to build a system which can perform -6000 different users per day and -200 concurent users The software used: wicket postgresql (mainly read operations) hibernate jms At the beginning there will be 2 computers (I prefer horizontal scalability). What would be your

Re: ClassLoader (Serialization?) error

2010-03-12 Thread François Meillet
sounds like a classloading effect. Have a look to the classloader hierarchy Here is a good doc: http://download.oracle.com/docs/cd/E12840_01/wls/docs103/programming/classloading.html Especially this one : Resource Loading Order

Re: Tomcat Deployment problem : adding CSS links have been modified ?

2010-01-31 Thread François Meillet
Hi Ashika, Give a try to this wicket:link link rel=stylesheet type=text/css href=style/tablestyle.css/ link rel=stylesheet type=text/css href=images/style.css/ /wicket:link François Le 1 févr. 2010 à 05:59, Ashika Umanga Umagiliya a écrit : Greetings, I've been

Re: images not under the context root directory

2010-01-28 Thread François Meillet
/1/27 François Meillet fm...@meillet.com Thank for yours posts. I try the solutions, but I can't figure out how to serve images as static images. F. Le 27 janv. 2010 à 16:10, Thomas Kappler a écrit : On 01/27/10 15:57, Jonas wrote: Have you tried the following: WebComponent image

images not under the context root directory

2010-01-27 Thread François Meillet
Hi Wicketers, I have a directory, /xxx/images with uploaded images, which is not under the application context root directory. How can I serve them as static images ? I tried the StaticImage class I found in the forum (http://old.nabble.com/Plain-IMG-src-urls-td21547371.html#a21547543 ) but it

Re: images not under the context root directory

2010-01-27 Thread François Meillet
--- - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org François Meillet fm...@meillet.com