| View: | [ 2009 | 2008 | 2007 | 2006 | 2005 | 2004 | 2003 | 2002 | 2001 ] |
| Articles |
- Servlet Best Practices, Part 2 by Jason Hunter - [Clicks: 25]
In part two of three in this series of book excerpts on servlet best practices from Java Enterprise Best Practices, learn about caching with servlets.
http://www.onjava.com/pub/a/onjava/excerpt/jebp_3/index2.html - Dec, 2002 - Servlet Best Practices, Part 1 by Jason Hunter - [Clicks: 27]
In the first of three excerpts on Servlet best practices from Java Enterprise Best Practices, learn how to effectively work with Servlets.
http://www.onjava.com/pub/a/onjava/excerpt/jebp_3/index1.html - Dec, 2002 - Servlet Best Practices, Part 3 by Jason Hunter - [Clicks: 17]
In the last of this series of book excerpts on Servlet best practices from Java Enterprise Best Practices, here are some other Servlet best practices tips.
http://www.onjava.com/pub/a/onjava/excerpt/jebp_3/index3.html - Dec, 2002 - Restrict Access to Web Resources by Budi Kurniawan - [Clicks: 29]
In a Web world, how do you restrict access to Web resources? Budi Kurniawan shows you several ways to do it.
http://www.ftponline.com/javapro/2002_09/online/servletsjsp_bkurniawan_09_03_02/ - Sep, 2002 - Input Validation with Filters by Budi Kurniawan - [Clicks: 47]
Filters can preprocess HTTP requests before they reach a servlet or JSP page, or responses before they go to a user. Learn how to use them to validate user input in the background.
http://www.ftponline.com/javapro/2002_08/online/servlets_08_13_02/ - Aug, 2002 - 9 Tips for Better Servlet Performance by Karl Moss - [Clicks: 37]
Download this free sample chapter from Java Servlets Developer's Guide for nine tips and tricks that'll help you write efficient servlets.
http://www.ftponline.com/javapro/2002_08/online/servletsjsp_08_06_02/ - Aug, 2002 - A J2EE presentation pattern: Applets with servlets and XML by Jeremy Dickson - [Clicks: 28]
Sometimes a standard HTML view on your J2EE-based (Java 2 Platform, Enterprise Edition) system doesn't offer a sophisticated enough user interface (UI). Based on the pattern described here, you can enhance such a Web interface with the Java Plug-in. The Java Plug-in lets you embed applets that consume XML documents and display the contained data in a particular way. These XML documents contain presentation data derived from servlets looking at your business logic tier. This lets your users access powerful UI components while still retaining a strong decoupling between the business logic and presentation tiers—without complicated firewall issues.
[Includes source code]
http://www.javaworld.com/javaworld/jw-05-2002/jw-0524-j2ee.html - May, 2002 - Mix protocols transparently in Web applications by Steve Ditlinger - [Clicks: 41]
In this article, Steve Ditlinger explores typical SSL implementations. He develops an SSL solution using the J2EE (Java 2 Platform, Enterprise Edition) servlet redirect mechanism to protect sensitive data transmission. He also develops an overall solution combining JavaServer Pages (JSP) custom tags and an application-specific servlet base class. In addition, he demonstrates this solution's implementation within an application using the Struts framework and proposes an enhancement to Struts for better integration.
[Includes source code]
http://www.javaworld.com/javaworld/jw-02-2002/jw-0215-ssl.html - Feb, 2002 - Dynamic Database Access from Client-Side JavaScript by Donald Bales - [Clicks: 28]
Imagine the advantages of being able to dynamically access a database from client-side JavaScript. You could dynamically query a database from JavaScript for client-side field validation, or dynamically populate a drop-down select list, to name just a few possibilities. In fact, you can do this, with the help of an applet-servlet pair (assuming you can constrain your users to compatible browsers, i.e., IE and Netscape.) This article describes the applet-servlet pair architecture and offers several sample applications.
http://www.onjava.com/pub/a/onjava/2002/01/23/javascript.html - Jan, 2002