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

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 > ht

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 Meille

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 > author

Re: Debug Performance Issue in Wicket App

2012-03-14 Thread François Meillet
A java profiler will save your time François Le 14 mars 2012 à 15:22, eugenebalt a écrit : > I am having some delays/performance issues in my Wicket app. It could be > anything. > > Is there a way to turn on some debugging that monitors the lifecycle of all > Wicket requests/responses? thanks

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 > wrote: >> Release: >> Wicket 6.0-SNAPSHOT > > Good! > And sorry if I break the APIs from time to time ;-) ;-) > >> >> >> The pages: >> All pages extends a Sk

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 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: > http://apache-wicket.1842946.n4.nabble.com/Enable-debug-messages-for-org-apache-wicket-util-resource-to-ge

Re: LoadableDetachableModels for a ListView ( database with Cayenne)

2012-02-16 Thread François Meillet
Hi Vineet, public LoadableDetachableModel load(final Long xxx) { LoadableDetachableModel> model = new LoadableDetachableModel>() { protected YourClass load() { try { List list = get your liste here( xxx )

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 enteri

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 = > servle

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
gt;> >>> thanks. >>> >>> Mathilde >>> >>> -- >>> Mathilde Pellerin Ingénieur en Génie Logiciel Tél mobile : >>> 06.60.78.79.03 E-mail >>> : mathilde.pelle...@gmail.com Mon CV en ligne : >>> <http://www.mathilde-pellerin.fr/> http://www.mathilde-pellerin.fr/ >> Mes >>> liens : <http://www.viadeo.com/fr/profile/mathilde.pellerin> >>> <http://fr.linkedin.com/in/mathildepellerin> >>> >> >> >> >> -- >> Martin Grigorov >> jWeekend >> Training, Consulting, Development >> http://jWeekend.com <http://jweekend.com/> >> > > > > -- > Mathilde Pellerin Ingénieur en Génie Logiciel Tél mobile : > 06.60.78.79.03 E-mail > : mathilde.pelle...@gmail.com Mon CV en ligne : > <http://www.mathilde-pellerin.fr/> http://www.mathilde-pellerin.fr/Mes > liens : <http://www.viadeo.com/fr/profile/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

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 seco

Re: StoredResponsesMap

2011-05-23 Thread François Meillet
5 PM, Martin Grigorov wrote: > >> Please file a ticket. >> >> 2011/5/23 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 request

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 java.lang.NullPointerExcept

Re: Killing threads in Application's onDestroy method

2011-05-18 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. >

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

Re: File upload with inner form and modal window

2010-12-07 Thread François Meillet
eld); > >form.add(new AjaxButton("submit") { > > @Override > protected void onSubmit(AjaxRequestTarget target, > @SuppressWarnings("hiding") Form form) { >FileUpload fileUpload = uploadField.getFileUpload(); >if (fileUpload

Re: File upload with inner form and modal window

2010-12-07 Thread François Meillet
ain form > (not the one 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 : >> just add >&g

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 >

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 advic

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 http://download.oracle.com/docs/cd/E12840_01/wls/docs103/programmi

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

2010-02-22 Thread François Meillet
Hi Ashika, have a look to http://cwiki.apache.org/WICKET/control-where-html-files-are-loaded-from.html François Le 23 févr. 2010 à 07:47, Ashika Umanga Umagiliya a écrit : > Hi friends, > > Is there a way to configure this in Wicket? > My client wants to add some static HTML pages by himself

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

2010-01-31 Thread François Meillet
Hi Ashika, Give a try to this François Le 1 févr. 2010 à 05:59, Ashika Umanga Umagiliya a écrit : > Greetings, > > I've been developing my wicket application using maven+jetty and when I > deployed it in Tomcat , all the CSS styles were missing. > I noticed that all the

Re: images not under the context root directory

2010-01-28 Thread François Meillet
>>> path = path.substring(0, path.indexOf('/')); >>> add(new AttributeModifier("src",true, new >>> Model("/"+path+"/"+getMountPoint()+"?name="+imageName))); >>> super.onBeforeRender(); >>> } >>> };

Re: images not under the context root directory

2010-01-27 Thread François Meillet
Tag(ComponentTag tag) > { > super.onComponentTag(tag); > checkComponentTag(tag, "img"); > } > } > > > This in the Wiki at > http://cwiki.apache.org/WICKET/how-to-load-an-external-image.html. > > > -- Thomas

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