Re: Iam getting Errors while starting the Tomcat 5.5 server

2009-02-04 Thread noon
I had exactly the same kind of error and I solved it by adding following lines to my log4j.properties file: log4j.rootLogger=WARN, stdout and/or following one: org.apache.catalina=INFO, stdout In my case, there were some missing JARs in my webapp's classpath. Marcelo Morales-2 wrote: > > H

Re: Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-18 Thread noon
ren > > > On Thu, Jan 15, 2009 at 11:59 PM, noon wrote: >> >> No, I didn't mean the "default output folder". For some reason, Maven >> added >> also the "target/classes" folder as a source folder. I noticed also that >> this was done onl

Re: Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-16 Thread noon
en artifact. If I removed that plugin from the pom.xml, everything worked ok. As a workaround, I have to delete the "target/classes" folder from the source list... I'll solve this problem of ours later... Good if you got your project working... :) tauren wrote: > > Noon, &

Re: Wicket/Eclipse/Maven/m2eclipse - HTML files not refreshing

2009-01-15 Thread noon
I had to remove the "target/classes" folder from the java source paths which Maven Eclipse plugin adds (project properties ==> java build path). After this, the markup files refreshed as expected. Tauren Mills-2 wrote: > > Thanks Igor, but I already looked there and the only thing listed in > f

Re: access ServletOutputStream in wicket

2009-01-15 Thread noon
I had some similar issues and I solved them by upgrading the JasperReports from 2.x to 3.0.0. novotny wrote: > > Hi, > > Ok I found in wicketstuff, a JRPdfResource class that does the jasper to > pdf conversion for me > and I added code to do this: > > InputStream is = getClass().getResour

Re: Intercept AutoCompleteTextField choice...

2009-01-12 Thread noon
I followed the example introduced in Wicket wiki and it solved exaclty my problem. http://cwiki.apache.org/WICKET/autocomplete-using-a-wicket-model.html Luca Provenzani wrote: > > Hi to all! > > I've an AutoCompleteTextField and it's all ok. But how can i intercept the > final choice of the

From which Maven repository can I find the wicket-contrib-jasperreports JAR file(s)?

2009-01-07 Thread noon
Is there a Maven2 repository where I can download the wicket-contrib-jasperreports JAR files? http://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicket-contrib-jasperreports -- View this message in context: http://www.nabble.com/From-which-Maven-repository-can-I-find-the-wicket-

Re: Turn off form validation

2008-12-21 Thread noon
I solved similar problem where I had some required TextField components and an AJAX component which does a AJAX submit. During this AJAX submit I wanted to prohibit all the form validations. I achieved this by setting the AJAX components (an autocomplete TextField with custom AJAX behaviour) into