How to get passed GAE restrictions in Wicket 1.5.3

2012-01-20 Thread Kayode Odeyemi
Hello fellows, I'm building on Google App Engine and I'll like to know how to resolve GAE restrictions of writing to a disk. I've been able to achieve this in 1.4 but while Migrating to 1.5.3 I'm getting the following exceptions: [java] SEVERE: Unexpected error occurred [java]

Re: How to get passed GAE restrictions in Wicket 1.5.3

2012-01-21 Thread Kayode Odeyemi
On Fri, Jan 20, 2012 at 1:33 PM, Martin Grigorov mgrigo...@apache.orgwrote: See http://software.danielwatrous.com/software-engineering/wordpress-plugin-licensing-wicket-on-google-app-engine Thanks. gae-initializer fixed this for me. -- Odeyemi 'Kayode O. http://www.sinati.com. t:

How to retrieve form value within onSubmit

2012-01-24 Thread Kayode Odeyemi
Hi, I will like to understand the dynamics behind retrieving form values when they are submitted. I have the following code: Dashboard.html --- body span wicket:id='mainNavigation'/ form wicket:id=searchForm label for=searchSearch:/label

Re: How to retrieve form value within onSubmit

2012-01-24 Thread Kayode Odeyemi
On Tue, Jan 24, 2012 at 12:09 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, See below. On Tue, Jan 24, 2012 at 1:56 PM, Kayode Odeyemi drey...@gmail.com wrote: Hi, I will like to understand the dynamics behind retrieving form values when they are submitted. I have

Re: wicket appl architecture

2012-01-24 Thread Kayode Odeyemi
On Tue, Jan 24, 2012 at 2:05 AM, nazeem md.naz...@gmail.com wrote: This is an interesting article referring to the Linked In tech team experience and how they are addressing using client side template..

Re: How to make a request to a mapped servlet

2012-01-31 Thread Kayode Odeyemi
On Tue, Jan 31, 2012 at 7:19 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, Wicket doesn't provide such functionalities. If the servler is part of the same application then you can use RequestDispatcher.include(). If it is part of another app then you can use Apache HttpClient,

Re: How to make a request to a mapped servlet

2012-01-31 Thread Kayode Odeyemi
On Tue, Jan 31, 2012 at 8:29 AM, Martin Grigorov mgrigo...@apache.orgwrote: On Tue, Jan 31, 2012 at 10:25 AM, Kayode Odeyemi drey...@gmail.com wrote: On Tue, Jan 31, 2012 at 7:19 AM, Martin Grigorov mgrigo...@apache.org wrote: Hi, Wicket doesn't provide such functionalities

How to make a threaded request within Wicket Application init

2012-01-31 Thread Kayode Odeyemi
If Wicket Application is a singleton, how do I make concurrent request on initialization of my application without getting a WicketRuntimeException? For example I simply want to reload a Page in order to get a RefreshingView component to set its content whenever getObject is triggered. So i will

Re: How to make a threaded request within Wicket Application init

2012-01-31 Thread Kayode Odeyemi
On Tue, Jan 31, 2012 at 11:23 AM, Martin Grigorov mgrigo...@apache.orgwrote: Application#init() is called during javax.servlet,Filter#init(FilterConfig), so there is no http request at that time. What exactly do you want to do with the Page ? I understand that IModel getObject is called

Set Wicket User Session to Servlet's HttpSession

2012-02-03 Thread Kayode Odeyemi
Hi, Is servlet HttpSession same as Wicket Session? If not, because I prefer HttpSession, how do I make wicket make use of HttpSession (server session)? Thanks -- Odeyemi 'Kayode O. http://www.sinati.com. t: @charyorde

Re: Set Wicket User Session to Servlet's HttpSession

2012-02-04 Thread Kayode Odeyemi
Hi, thanks. On Fri, Feb 3, 2012 at 8:05 PM, Serban.Balamaci thespamtr...@gmail.comwrote: Hello, It's not really clear what you mean and maybe you need to tell us what you want to do. I want to use servlet session object for user authentication and not wickets'. A Wicket session stores

Re: Apache Wicket 1.5.4 is released

2012-02-05 Thread Kayode Odeyemi
Does this mean this is the recommended branch to work from? There's a fix on 1.5 RC5 that I need. Is it advisable to work off wicket dev releases as against official releases? When will 1.5 RC5 slated for full release? Thanks On Mon, Jan 23, 2012 at 9:54 AM, Per Newgro per.new...@gmx.ch wrote:

Re: ResourceReference for resource in webapp dir

2012-02-05 Thread Kayode Odeyemi
On Fri, Feb 3, 2012 at 3:40 PM, Bertrand Guay-Paquet ber...@step.polymtl.ca wrote: Hi, I have the following code in my base page: public void renderHead(IHeaderResponse response) { // scripts/jquery-1.7.1.min.js is in webapp dir

Re: Apache Wicket 1.5.4 is released

2012-02-06 Thread Kayode Odeyemi
On Mon, Feb 6, 2012 at 7:24 AM, Martin Grigorov mgrigo...@apache.orgwrote: On Sun, Feb 5, 2012 at 1:51 PM, Kayode Odeyemi drey...@gmail.com wrote: Does this mean this is the recommended branch to work from? There's a fix on 1.5 RC5 that I need. Is it advisable to work off wicket dev

Re: Set Wicket User Session to Servlet's HttpSession

2012-02-06 Thread Kayode Odeyemi
On Mon, Feb 6, 2012 at 7:18 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, On Sat, Feb 4, 2012 at 3:25 PM, Kayode Odeyemi drey...@gmail.com wrote: Hi, thanks. On Fri, Feb 3, 2012 at 8:05 PM, Serban.Balamaci thespamtr...@gmail.com wrote: Hello, It's not really clear what you

Serializing server objects

2012-02-06 Thread Kayode Odeyemi
Hi, Please I will like to know if all IModel class implementations are capable of serializing all type of objects without necessarily having to do custom serialization? I'm asking because I want to know the underlying architecture of how server objects are being transported to Wicket. I had a

Re: Serializing server objects

2012-02-06 Thread Kayode Odeyemi
On Mon, Feb 6, 2012 at 5:52 PM, Andrea Del Bene adelb...@ciseonweb.itwrote: Wicket uses an implementation of org.apache.wicket.serialize.**ISerializer to serialize all objects (pages, models, ecc...) Thanks Andrea. Meaning if I have a custom model that extends one of the IModel implementing

Re: clustering wicket webapps

2012-02-07 Thread Kayode Odeyemi
Here's another example of IPageStore: https://github.com/wicketstuff/core/blob/master/jdk-1.6-parent/shiro-security/wicket-shiro/src/main/java/org/wicketstuff/shiro/wicket/page/store/SessionPageStore.java On Tue, Feb 7, 2012 at 8:13 AM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, You may

Re: Reload html in Wicket + GAE

2012-02-07 Thread Kayode Odeyemi
Glad you got it working Daniel, as Martin mentioned earlier, I'll appreciate if you can contribute this to existing GaeInitializer or somewhere comfortable with the full code so it can be valuable to us all. Thanks On Tue, Feb 7, 2012 at 5:31 PM, Daniel Watrous daniel.watr...@gmail.comwrote: I

Re: ResourceReference for resource in webapp dir

2012-02-08 Thread Kayode Odeyemi
On Mon, Feb 6, 2012 at 3:08 PM, Martin Grigorov mgrigo...@apache.orgwrote: Hi, I'd not invest in AbstractResourceDependentResourceReference. This has been re-implemented in Wicket 6.0 and this class is no more there. For your case I can recommend you to take a look at Wro4j. With this

Re: ResourceReference for resource in webapp dir

2012-02-08 Thread Kayode Odeyemi
() { return new ContextRelativeURLResource(getName()); } I'm still getting this in the logs: /w/wicket/resource/org.apache.wicket.Application/WEB-INF/js/dashboard-ver-1328653530609.js Thank you. On Wed, Feb 8, 2012 at 5:30 PM, Kayode Odeyemi drey...@gmail.com wrote: On Mon, Feb 6, 2012

Re: call a javascript

2012-02-10 Thread Kayode Odeyemi
Try any of these steps as described in the wiki: https://cwiki.apache.org/WICKET/calling-wicket-from-javascript.html https://cwiki.apache.org/WICKET/adding-javascript-from-wicket.html https://cwiki.apache.org/WICKET/how-to-write-json-response.html Wicket javascript integration is built on

Wicket.Ajax.Call.failure: Error while parsing response: Could not find root ajax-response element

2012-02-13 Thread Kayode Odeyemi
Seems like the issue at https://issues.apache.org/jira/browse/WICKET-3427lingers. I'm on Wicket 1.5.4. To replicate, here's what I'm working with: public class MyPage extends BasePage { private final WebMarkupContainer container = new WebMarkupContainer(container); private Label

Design patterns for integration of RingoJS modules in Wicket

2012-02-27 Thread Kayode Odeyemi
Hi, I have lots of RingoJS modules that can be accessed via a url in a browser. I have decided to use RingoJS for building simple modules that I will like to include in wicket application as Page web parts - especially for features I need to be completely written in Javascript. If there's anyone

Re: Design patterns for integration of RingoJS modules in Wicket

2012-02-27 Thread Kayode Odeyemi
technologies. Right now, I feel comfortable. On Mon, Feb 27, 2012 at 1:49 PM, Kayode Odeyemi drey...@gmail.com wrote: Hi, I have lots of RingoJS modules that can be accessed via a url in a browser. I have decided to use RingoJS for building simple modules that I will like to include in wicket

Re: Wicket on Google App Engine

2012-03-02 Thread Kayode Odeyemi
Daniel, I was going to send you a private email on this as well after reading the blog you put up. Did you really get this working for your project? On Thu, Mar 1, 2012 at 6:32 PM, kevjay kev...@gmail.com wrote: Daniel, did you ever get things to work to where the HTML files are updated

A Panel inside another Panel

2012-03-08 Thread Kayode Odeyemi
I have an application structured such that I have 2 version for header panels. One for anonymous(HeaderPanel) users and one for authenticated(AuthenticatedHeaderPanel) users. Both of these are Panels included in their respective pages. Now I added another Panel (SearchPanel. It contains a Form)

Re: A Panel inside another Panel

2012-03-08 Thread Kayode Odeyemi
Here it is: Root cause: org.apache.wicket.WicketRuntimeException: The component(s) below failed to render. A common problem is that you have added a component in code but forgot to reference it in the markup (thus the component will never be rendered). 1. [SearchForm [Component id =

Re: A Panel inside another Panel

2012-03-09 Thread Kayode Odeyemi
On Thu, Mar 8, 2012 at 7:44 PM, Andrea Del Bene an.delb...@gmail.comwrote: Your code seems good, I can't find any reason why it should not work. I've seen you have deployed your code on Google Appengine, maybe your problem is related with this running environment. Can you run you project