Web Client and Swing Client distinction - Preferred pattern
Sam Gehouse
Ranch Hand
Joined: Jul 21, 2003
Posts: 281
posted
0
For web client, is it valid to make the Servlet invoke Java controller. This Java controller class is a POJO (not a Servlet) that would have been invoked from a Swing client.
Hi Sam, How about Web Client: FrontController -> ApplicationController-> View Helper-> Business Delegate-> ServiceLocator -> Application Service (Session Bean/Processor) App Client: GUI -> Business Delegate-> ServiceLocator -> Application Service (Session Bean/Processor)? What doDoes all this above make sense?