RE: [NEWBIE] Struts and Applets

2003-10-23 Thread Chen, Gin
I'm assuming you want to have the action process form elements that were in the applet. A very simple way to do this of course is to just append name=value parameters from your applet into the link to the Struts Action. That way the struts action can handle the request the same way that it handles

Re: [NEWBIE] Struts and Applets

2003-10-20 Thread Marco Tedone
So are you telling me that the chain package is going to define a common object that can handle the form controls that an Action and an Applet could manage? Would it imply, for instance, that Actions and Applets will have reference to a package such as chain, will query their controls, will build

Re: [NEWBIE] Struts and Applets

2003-10-20 Thread Craig R. McClanahan
Marco Tedone wrote: So are you telling me that the chain package is going to define a common object that can handle the form controls that an Action and an Applet could manage? One critically important thing to remember is that applets run inside the client machine, while Struts runs on the

Re: [NEWBIE] Struts and Applets

2003-10-19 Thread Ted Husted
You might try thinking about it from the other direction. How about if there were a generic component or context object that was used by your business layer. So whatever it is your clients want either Swing application or a web application to do, is handled by your business layer code, which