Re: setHeaderResponseDecorator cause problem logging into my app

2020-04-14 Thread LSomefun
Thanks Martins for your help. The reason which I am not absolutely sure, there was a conflict on using both and using JavaScriptHeadItem -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To un

Re: setHeaderResponseDecorator cause problem logging into my app

2020-04-13 Thread LSomefun
No notification on console/browser log. -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@

setHeaderResponseDecorator cause problem logging into my app

2020-04-13 Thread LSomefun
I am having problem with inserting JavaScript into a Html body tag. Once I use the following code as shown in the tutorial into my AuthenticatedWebapplication, I can no longer login to my application. setHeaderResponseDecorator(response -> { return new ResourceAggregator(new JavaScript

Re: ClassCastException:JavaURLContext cannot be cast to class org.xx.xxx

2020-02-24 Thread LSomefun
I was actually able to solve this issue. My Html page had a form component and that why there was a form component in the code. -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe,

ClassCastException:JavaURLContext cannot be cast to class org.xx.xxx

2020-02-21 Thread LSomefun
I have been on this issue for atleast 2 weeks now. Trying to use Wicket with EJB. This occurs when I use @EJb for either a stateless or stateful bean . *My code below The webpage which has the EJB as a variable* public class PartnersZipCode extends PrescientTemplateOriginalPage{ @EJB(name = "ej

Re: Wicket's error message-> java.lang.IllegalStateException: This container is already dequeing

2019-12-29 Thread LSomefun
PrescientTemplateOriginalPage is actually the parent class of PrescientHome so that why PrescientTemplateOriginalPage had the tag, and prescientHome had the . I was able to solve the problem and your assistance was greatly appreciated. The problem is seems was how I was referring my form id. I nee

Re: Wicket's error message-> java.lang.IllegalStateException: This container is already dequeing

2019-12-29 Thread LSomefun
I don't think I have the privileges to do but let Martin Tzvetanov Grigorov know to close the issue on Jira. -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail: users-unsub

Re: Wicket's error message-> java.lang.IllegalStateException: This container is already dequeing

2019-12-28 Thread LSomefun
I do appreciate you looking at this while on holiday. The 2nd constructor of PrescientTemplateOriginalPage I have deleted. Truth is it was not needed. The HTML code of PrescientHome I initially submitted did not include the HeaderPanel and footerPanel, was because of inheritance from PrescientTempl

Re: Wicket's error message-> java.lang.IllegalStateException: This container is already dequeing

2019-12-28 Thread LSomefun
Thanks for you reply. Included more codes below. Code for PrescientTemplateOriginalPage below package org.possible.bug; import org.apache.wicket.markup.html.WebPage; import org.apache.wicket.markup.html.basic.Label; import org.apache.wicket.model.Model; /** * * @author oyeso */ public class P

Re: Wicket's error message-> java.lang.IllegalStateException: This container is already dequeing

2019-12-27 Thread LSomefun
Thanks for your reply Francois, much appreciated. Even when I adjust my code and remove the login object from the source code and from the html tag like the code below I still get the same error I was encountering. I definitely will try version 9 in the near future as soon as I can solve the curre

Wicket's error message-> java.lang.IllegalStateException: This container is already dequeing

2019-12-27 Thread LSomefun
I am trying out the Wicket framework using version 8. I have been battling this strange error without success. I am using Payara application server on Windows 10 The required info is below, any tips or help in finding out where the problem is would be appreciated. I looked into stackoverflow, prett