Re: using comet to find all clients using a page

2010-07-10 Thread david_
ask obama and you'll know :) I did something identical I think. But what do you mean with if any session has currently has the deleted task page 2010/7/9 fachhoch [via Apache Wicket] ml-node+2283963-1645768850-232...@n4.nabble.comml-node%2b2283963-1645768850-232...@n4.nabble.com In

Wicket page test 1.6 is now available

2010-07-10 Thread Kent Tong
Dear all, Wicket page test 1.6 is now available. It is a library allowing you to unit test your Wicket pages easily, supporting AJAX and Javascript without changes to your pages. This release contains the follow changes: * Support manual testing: allow some things to be mocked, without

Re: Serialization of injected EJBs

2010-07-10 Thread Korbinian Bachl - privat
Hi Igor, as I might hit the problem in next weeks (GF 3.0.1 + EJB + Wicket) i just wanted to ask if your code is public and if not if its possible to scheme out the actions you did so far? Best, Korbinian Am 09.07.10 20:03, schrieb Igor Vaynberg: no, the module is for seam 2.1 which does

Re: Serialization of injected EJBs

2010-07-10 Thread James Carman
Here's some work I did. See if it works for you: http://svn.carmanconsulting.com/public/wicket-cdi/trunk/ On Sat, Jul 10, 2010 at 4:09 AM, Korbinian Bachl - privat korbinian.ba...@whiskyworld.de wrote: Hi Igor, as I might hit the problem in next weeks (GF 3.0.1 + EJB + Wicket) i just

AW: AW: Serialization of injected EJBs

2010-07-10 Thread Harald Wellmann
Ok, just wanted to make sure before duplicating any work. Anyway, using wicket-ioc and looking at wicket-guice, I implemented a small lib (two classes, actually) performing CDI injection on Wicket components, wrapping the reference returned from the CDI BeanManager in a proxy that is

AW: Serialization of injected EJBs

2010-07-10 Thread Harald Wellmann
Thanks, I'd seen that before. This code handles CDI injection in Wicket components (which was not the problem as such) and the conversation scope (which I haven't used so far) but as far as I can see it does not address any serialization issues with the injected references. Regards, Harald

Re: AW: Serialization of injected EJBs

2010-07-10 Thread James Carman
The references that are injected are supposed to be serializable per the spec I believe. There is the concept of a 'client proxy or something like that in the spec that is supposed to be serializable. Anyway, you are welcome to use anything that is useful to you. I haven't worked on it in a

Re: AW: Serialization of injected EJBs

2010-07-10 Thread Igor Vaynberg
in wicket i would only stick to field injection -igor On Sat, Jul 10, 2010 at 4:33 AM, Harald Wellmann harald.wellm...@multi-m.de wrote: Ok, just wanted to make sure before duplicating any work. Anyway, using wicket-ioc and looking at wicket-guice, I implemented a small lib (two classes,

Re: Problem with onComponentTag in a ListView

2010-07-10 Thread Martin Makundi
Hi! Yeah.. I hit my head against the wall for a while for this one ... LISTVIEW ONCOMPONENTTAG IS NEVER CALLED. If you have onPopulate.. the component whose ONCOMPONENTTAG you are overriding is LISTVIEW. Yeah, it's a dummy wrapper for the repeater so it is never rendered. It does not have its

[BLOG] Canned Wicket Test Examples

2010-07-10 Thread Per Lundholm
Hello! Just wanted to honk my horn: three examples of using the built in wicket test facilities to test AJAX enabled controls, the check box, radio group and the drop down. http://blog.crisp.se/perlundholm/2010/06/20/127701780.html /Per

Panel update with Ajax

2010-07-10 Thread Mansour Al Akeel
I have a panel that displays a product info : public class ProductDetails extends Panel { private IModelProduct model; public ProductDetails(String id, Product product) { super(id); setOutputMarkupId(true);