--- tek1 <[EMAIL PROTECTED]> wrote: > please correct me if i'm wrong, but i thought that > session fascades, which > live on the ejb server and are called remotely by > clients, access entity > beans via their local interface, so the session > fascade doesn't really need > to work with value/data objects...?
I was (is) apocrifical subtask - session facade bean is automatically generated session bean, which returns collections not of remote interfaces, but data/value objects. It's not very usefull if you are working with web-frontend, where you have to pull data on every request anyway, but for swing applications, where you need table/tree/combo models. I got bored to implement this stuff by hand and provided support for session facade bean + remote adapter for this session ( does lookup and transparently exports finder / create/ remove methods, and notifies listeners if something is changed ) ===== Konstantin Priblouda ( ko5tik ) Freelance Software developer < http://www.pribluda.de > < play java games -> http://www.yook.de > < render charts online -> http://www.pribluda.de/povray/ > __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com ------------------------------------------------------- This SF.net email is sponsored by: Microsoft Visual Studio.NET comprehensive development tool, built to increase your productivity. Try a free online hosted session at: http://ads.sourceforge.net/cgi-bin/redirect.pl?micr0003en _______________________________________________ Xdoclet-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/xdoclet-user
