Hi Filippo,

just browsed through it and its really nice work. Especially if someone
wants to have EJB3 persitence but not to use EJB3 Stateless Session Beans to
query it.

However, the thing with the EjbAnnotation looks not so clear to me - i mean,
every IDE has J5EE support and so in Neatbeans for example i just need 2
mouseclicks and i got my EJB called through a on the fly created call
(including web.xml ref. update/creation) e.g:

private ProduktQueryLocal lookupProduktQueryBean() {
        try {
            Context c = new InitialContext();
            return (ProduktQueryLocal)
c.lookup("java:comp/env/ejb/ProduktQueryBean");
        }
        catch(NamingException ne) {
 
Logger.getLogger(getClass().getName()).log(Level.SEVERE,"exception caught"
,ne);
            throw new RuntimeException(ne);
        }
    }

and use it the like lookupProduktQueryBean().anyMethodINeed();

Best Regards,

Korbinian


> -----Ursprüngliche Nachricht-----
> Von: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] Im Auftrag 
> von Filippo Diotalevi
> Gesendet: Donnerstag, 28. Dezember 2006 12:32
> An: wicket-user@lists.sourceforge.net
> Betreff: [Wicket-user] wicket-contrib-javaee moved to Wicket-Stuff
> 
> Hi all,
>  just a quick post to say that this morning I've moved the 
> wicket-javaEE integration module to the wicket-stuff svn repository.
> More details about this project are available at:
> http://code.google.com/p/fdiotalevi/wiki/WicketJavaEEIntegration
> 
> The complete url to checkout the module is 
> https://svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicket-
> contrib-javaee
> 
> Remember that the integration module works only with wicket 
> 2, which is still unreleased; so you'll need to checkout also 
> the trunk of wicket 2 and build it with maven.
> 
> At the moment, I still haven't investigated whether it's easy 
> or not to backport this module to the wicket1.x branch; if 
> someone is interested in using java ee with wicket 1.x, just 
> let me know and I'll spend some time on this task.
> 
> --
> Filippo Diotalevi
> http://www.diotalevi.com
> 
> --------------------------------------------------------------
> -----------
> Take Surveys. Earn Cash. Influence the Future of IT Join 
> SourceForge.net's Techsay panel and you'll get the chance to 
> share your opinions on IT & business topics through brief 
> surveys - and earn cash 
> http://www.techsay.com/default.php?page=join.php&p=sourceforge
&CID=DEVDEV
> _______________________________________________
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to