YUI menu and development mode
Hi, I am trying to use YUI menu2 however when the application is deployed in development mode the menus are not working, ie no submenus, no change of color when the mouse pointer is on an item... Does anyone experience this or has a solution to this ? Thanks, Philippe - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
Re: Need Wicket Examples
On Thu, Mar 26, 2009 at 12:06:23AM -0700, FaRHaN wrote: I have Wicket in Action book but those examples are being explained in Ant/Maven and not in netbeans IDE. Are there any examples which are also executable in netbeans IDE ? In Netbeans, install the Maven plugin and create a new Maven project using an existing pom.xml. Philippe - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
Re: URL mounting on Websphere causes Error 404
On Wed, Mar 11, 2009 at 07:04:17AM -0700, Goran Novak wrote: Hi, I developed my application using Jetty server and URL mounting worked fine. When I deploy it on Websphere it still works but on the end of HTML response to browser, string Error 404: SRVE0190E: File not found: /home is appended. I'm using: - wicket 1.3.4 - IBM WebSphere Application Server - ND, 6.0.2.17 Build Number: cf170648.10 Build Date: 11/29/06 - java version 1.5.0_12 (build 1.5.0_12-b04) Example of URL mount: mount(new QueryStringUrlCodingStrategy(/home, HomePage.class)); End of source of return HTML: html ?xml version='1.0' encoding='UTF-8'? html head ... !-- some HTML cut -- ... /table /body /html Error 404: SRVE0190E: File not found: /home html Does somebody have an idea what could be the problem? Without URL mounting string does not apear on Websphere. If you are using WicketFilter you need to apply this: http://www-01.ibm.com/support/docview.wss?uid=swg24014758 Philippe - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
Re: URL mounting on Websphere causes Error 404
On Thu, Mar 12, 2009 at 02:04:11AM -0700, Goran Novak wrote: Philippe Marzouk-2 wrote: If you are using WicketFilter you need to apply this: http://www-01.ibm.com/support/docview.wss?uid=swg24014758 I tryed to add the custom property and restarted the server but the problem still occures. com.ibm.ws.webcontainer.invokefilterscompatibility = true It works for me on Websphere Process Server 6.1.2.1 which has WAS 6.1.0.19 Be sure the property was added on the Web Container custom properties and not elsewhere. Philippe - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org
Re: Wicket Portlets on WAS 7.5
On Thu, Feb 26, 2009 at 08:11:46AM -0800, suneeelu wrote: Hi, We are trying to run the echo wicket example application as a wicket portlet on WAS 7.5. We are able to load the echo application as a portlet but when we enter any text and submit the form, the form doesn't gets submitted and the page always gets loaded with the default echo text. We are using the same echo example application given in the wicket examples and we are using the wicket-1.4.2-SNAPSHOT versions for the portlet JSR 286 support. Has the 286 support tested on WAS? Are there known issues? The Wicket documentation mentions that we need to use WicketFilter instead of WicketServlet, but when we run the wicket web application in WAS, the application doesn't run with the WicketFilter. we need to change it to WicketServlet to make it run. do Wicket Portlets also need the WicketServlet configuration? I don't know about WAS 7.5 or portlet but on WAS 6.1 for wicket to run with WicketFilter you have to apply this solution else you get 404 HTTP errors: http://www-01.ibm.com/support/docview.wss?uid=swg24014758 Philippe - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org