Date: Tue, 19 Sep 2000 13:11:06 -0500 (CDT) From: "Chad O. Thompson" <cothomps@visi.com> To: Shawn Kelly <kellysm_2k@yahoo.com> Cc: questions@FreeBSD.ORG Subject: Re: Programming Model Message-ID: <Pine.GSO.4.21.0009191155340.8859-100000@isis.visi.com> In-Reply-To: <20000919142017.6953.qmail@web5105.mail.yahoo.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, 19 Sep 2000, Shawn Kelly wrote: > > In the world of Microsoft Windows I beleive the following is recommended for web based applications: > > Place business rules into COM objects on the web server > The Web Client should just be used for the UI > Well, despite the COM reference, this pretty much covers any business/web programming you would ever want to do. (Either in C++, Java, Perl, etc.) To give you a little more background, typically you want to follow the "Model-View-Controller" methods as closely as possible. (To maximize code reuse, to seperate concepts, etc.) Example: "Model": Your data. Databases, business objects, etc. "View": The User Interface "Controller": Objects or methods that control the interface between your data and the UI. (As a note: There are a *lot* of programming architecture books out there that address this pretty well. These concepts are especially strong in Object-Oriented languages.) As for a 'BSD' model, you might have something like this: HTML Form -> CGI Perl Script -> Database (basic) HTML Form -> CGI C++ Object -> C++ Business Objects -> Database etc., depending on your business requirements. At work, I've been dealing with pure Java 2 Enterprise Edition objects, so the system works like this: HTML/Javascript page -> Java Servlet -> Session EJB -> Entity EJB -> Database etc., etc., etc..... Just find a good book or two on software design, ask around, and decide what architecture is best for your project/website. The 'FreeBSD World' is essentially the rest of the world minus Microsoft.. 8) > What is the best model for the FreeBSD world and where can I find more information about it? > > Thank you. > > > > --------------------------------- > Do You Yahoo!? > Send instant messages & get email alerts with Yahoo! Messenger. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.GSO.4.21.0009191155340.8859-100000>