MagPortal.com   Clustify - document clustering
 Home  |  Newsletter  |  My Articles  |  My Account  |  Help 
Similar Articles
JavaWorld
July 2002
Rinaldo Di Giorgio
Serve clients' specific protocol requirements with Brazil, Part 6 This article demonstrates how to use the following technologies with the Brazil toolkit: Jini, BeanShell, and the Java API for XML Messaging (JAXM), Xalan-Java, servlets, Velocity, and LDAP. It also discusses the larger purpose of this series: to demonstrate how to use Brazil to support new technologies and APIs in ways that API developers might not have considered. mark for My Articles similar articles
JavaWorld
January 2001
Rinaldo Di Giorgio
Serve clients' specific protocol requirements with Brazil, Part 3 The author shows how the Brazil server transmits weather data to wireless clients... mark for My Articles similar articles
JavaWorld
October 2000
Rinaldo Di Giorgio
Serve clients' specific protocol requirements with Brazil, Part 2 How to use XML to facilitate data exchange between applications.... How you apply XML to exchange weather data... Scripting languages that you can implement to efficiently and quickly produce XML-tagged data... etc. mark for My Articles similar articles
JavaWorld
August 2000
Rinaldo Di Giorgio
Serve clients' specific protocol requirements with Brazil, Part 1 The Brazil sever can deliver data to clients requiring such specific protocols or technologies as the simple HTTP via URL programming interface, the Java Reliable Multicast Service protocol, Java Message Service, and Jini. Plus, how to use applets, JavaScript, and the Brazil Scripting Language to rapidly create Webpages. mark for My Articles similar articles
JavaWorld
February 2003
Steve Small
JSP Standard Tag Library eases Webpage development The release of JavaServer Pages Standard Tag Library is a significant development for JSP/servlet developers. With an expression language and a set of four powerful, easy-to-learn standard tag libraries, JSTL is likely to soon become the dominant approach for implementing dynamic, Java-based Websites. mark for My Articles similar articles
JavaWorld
October 3, 2003
Allen Holub
Create client-side user interfaces in HTML This article presents a variant on Swing's JEditorPane that makes it possible to specify an entire screen of your client-side user interface (UI) in HTML. mark for My Articles similar articles
JavaWorld
February 2002
Julien Mercay & Gilbert Bouzeid
Boost Struts with XSLT and XML Struts is an innovative server-side Java framework designed to build Web applications. This article introduces the processing model underlying Struts, describes the Struts framework itself, and presents Model 2X, which enhances Struts... mark for My Articles similar articles
JavaWorld
November 14, 2003
Allen Holub
Create client-side user interfaces in HTML, Part 2 This "Create Client-Side User Interfaces in HTML" series continues by examining the HTMLPane sources. Part 2 offers examples of how to customize the JEditorPane to support custom tags and also provides an extended description of the Factory Method design pattern. mark for My Articles similar articles
JavaWorld
June 2001
Brian R.J. Heumann
Personalize your Website with skins You can give your users control over your Website's look and feel by exploiting user profiles and factoring out key visual design elements into skins. This article demonstrates a basic skin server and shows how you can use that server to begin personalizing your JSP-based Website. (1,000 words) mark for My Articles similar articles
JavaWorld
April 2002
Michael Juntao Yuan & Ju Long
Track wireless sessions with J2ME/MIDP Every e-commerce application must support session tracking. Unfortunately, MIDP, a J2ME technology, supports only the standard HTTP protocol, which is stateless. This article explores ways to add session support into the current MIDP network API framework... mark for My Articles similar articles
JavaWorld
July 2002
Nelson Minar
Test networked code the easy way Networked code proves difficult to test thoroughly because test suites work best as standalone processes unreliant on other servers. In this article, the author describes two techniques for unit testing network code. mark for My Articles similar articles
JavaWorld
February 2002
Victor Okunev
Generate JavaBean classes dynamically with XSLT For some projects, you need a more flexible business object structure. This article lays a foundation for a simple framework to build truly adaptive systems, saving you hours of routine programming... mark for My Articles similar articles
JavaWorld
April 2002
Letters to the Editor How does PreparedStatement perform? How do you compile Java code dynamically? Does ChainedException preserve the original exception? How do you combine a sorting Decorator with a filtering Decorator? JavaWorld authors answer these questions and more... mark for My Articles similar articles
JavaWorld
May 2000
Bill Venners
Objects versus documents for server-client interaction, Part 1 Bill Venners compares the traditional approach to client-server interaction, using protocols and documents, with Jini's approach of using objects and interfaces.... mark for My Articles similar articles
JavaWorld
February 2002
Steve Ditlinger
Mix protocols transparently in Web applications To maintain the security of sensitive data as it travels over the Internet to or from the browser, Web applications often rely on Secure Sockets Layer. The secure Webpages and processes that transmit sensitive data utilize HTTP over SSL (HTTPS) rather than the usual HTTP. Integrating SSL into a Web application should prove seamless and simple to implement as well as maintain. This article explores typical SSL implementations and develops an SSL solution using the J2EE servlet redirect mechanism to protect sensitive data transmission. It also develops an overall solution combining JavaServer Pages custom tags and an application-specific servlet base class. mark for My Articles similar articles
Linux Journal
April 2000
Nalneesh Gaur
Assessing the Security of Your Web Applications An outline of key test areas to identify security issues in a web application and provide measures to minimize them. mark for My Articles similar articles
ONLINE
May/Jun 2003
Greg R. Notess
Unlocking URLs: Extensions, Shortening Options, and Other Oddities As we ship URLs to each other and use them in citations, unlocking some of their stranger secrets, along with knowledge of URL shortening tools, can make it easier to actually get to the appropriate Web page. mark for My Articles similar articles
Linux Journal
August 2000
Reuven M. Lerner
At the Forge Session Management with Mason. This Perl-based web helper and MySQL work together to let you quickly build a user registration system for your web site. mark for My Articles similar articles
Linux Journal
November 2001
Michael Yuan
Linux in Education: Implementing a Research Knowledge Base Keeping up with large volumes of research requires a system both flexible and intuitive... mark for My Articles similar articles
JavaWorld
November 2000
Geoff Friesen
Applications, applets, and hybrids This article establishes our bearings and sets sail to the land of applications, applets, and hybrids (an unusual category of Java programs)... mark for My Articles similar articles
JavaWorld
March 2001
Michael C. Daconta
Dodge the traps hiding in the URLConnection class This article focuses on problems with posting to an HTTP URL and the bane of new Java programmers, the NoClassDefFoundError... mark for My Articles similar articles
Linux Journal
May 1, 2000
Jacek Artymiak
Python Programming for Beginners If you want to outsmart the Spanish Inquisition, learn Python. This article is a practical introduction to writing non-trivial applications in Python. mark for My Articles similar articles
JavaWorld
June 2002
Michael Juntao Yuan & Ju Long
Java readies itself for wireless Web services The future world of pervasive computing demands powerful and flexible development platforms. Is Java up to the task? Can Java provide end-to-end solutions for wireless Web services networks? The authors discuss the definition, importance, and architecture of wireless Web services. mark for My Articles similar articles
JavaWorld
December 2000
Thomas E. Davis, Craig Walker
Take control of the servlet environment, Part 2 Implement a wrapper that gives you greater control over session management. Session state can be stored in the browser, in the server's memory, or in the database. You can have all three solutions at your fingertips, painlessly interchangeable... mark for My Articles similar articles
JavaWorld
January 2002
Frank Sommers
A birds-eye view of Web services The author defines Web services, explains how they operate, and compares them to related Java technologies. He also presents a general programming model for Web services, independent of any framework or technology... mark for My Articles similar articles
JavaWorld
September 2002
David Geary
A look at the Composite design pattern The Composite design pattern lets you treat primitive and composite objects exactly the same. This article explores how to implement the Composite pattern and how to use it with the Tiles tag library from the Apache Struts application framework. mark for My Articles similar articles
JavaWorld
March 2001
Tony Loton
Access the world's biggest database with Web DataBase Connectivity What if the World Wide Web really were a database; if each Webpage were a table that you could query using SQL or even JDBC? Then you wouldn't be limited to just browsing. This article provides Java code for accessing web pages in an SQL-like manner. mark for My Articles similar articles
JavaWorld
April 2001
Rinaldo Di Giorgio
Serve clients' specific protocol requirements with Brazil, Part 4 An introduction to multicast via JRMS (Java Reliable Multicast Service). Multicast is a protocol that supports simultaneous message transmission to multiple recipients, without having a point-to-point connection with each recipient... mark for My Articles similar articles
JavaWorld
December 2001
David Geary
Web application components made easy with Composite View If you want to develop flexible and reusable JSP-based Web applications, you must separate presentation logic from business logic. Beyond that, you can extend that flexibility and reusability by separating content from layout... mark for My Articles similar articles
JavaWorld
August 2001
John Rommel
Will Web services jump-start the software slump? Web services have been hyped as the "new" new thing -- the future of business and personal living. The certainty of change, driven by the business necessity to deliver faster, better, and cheaper services, is continually transforming the Internet. mark for My Articles similar articles
JavaWorld
September 2000
David Geary
JSP templates This article presents a template mechanism for JSP that allows layout to be encapsulated and reused. JSP templates minimize the impact of layout changes and encourage modular design... mark for My Articles similar articles
JavaWorld
March 2001
Lisa Alexander
Java Product News (March 16, 2001) New HP Bluestone products feature enhanced Java technology; Allora for Java allows developers to bind relational data to Java classes; Visual Underneath 3.01 features quicker screen refacing; Canal+ Technologies and Sun partner to improve Java for interactive digital television. mark for My Articles similar articles
JavaWorld
June 2001
Java Product News Motorola and In-Fusio plan new games API... Iona releases three new products... Versant updates transaction accelerator... Hywy launches two versions of its productivity environments... etc. mark for My Articles similar articles
Search Engine Watch
December 2, 2010
Mathieu Burgerhout
Best Solution for Duplicate Content Issues A clever solution to get every product indexed, in the right language, and show visitors from specific countries the right stock. mark for My Articles similar articles
JavaWorld
October 2000
Brett McLaughlin
Validation with Java and XML Schema, Part 2 A roadmap for taking Java method parameters and validating them against constraints in an XML document. Various approaches will be examined, and you will begin to actually code the utilities for converting those XML constraints into usable Java utilities... mark for My Articles similar articles
JavaWorld
February 1, 2002
Java Product News SilverStream eXtend achieves J2EE 1.3 compatibility... No Magic reveals UML modeling tool... Kada licenses J2ME... JA108 targets devices... SAX2 now available from O'Reilly... Thought Inc. releases CocoBase 4.0... PolarLake updates Web services platform... etc. mark for My Articles similar articles
JavaWorld
April 19, 2002
Java Product News PolarLake joins Forte for Java's vendor partner program... Speech recognition software vendors establish partnership... O'Reilly launches enterprise series... Dirig app managers support Sun ONE services... Faceless.org updates report generator... etc. mark for My Articles similar articles
PC World
April 20, 2001
Scott Spanbauer
Mend Your E-Mail's Broken Links Mend broken links in e-mail, unmask disguised Web page advertising, check browser security settings, catalog your MP3s... mark for My Articles similar articles
JavaWorld
April 26, 2002
Java Product News IBM releases tools for the Eclipse platform... Sun enhances Java Card... Vulcan Machines launches Moon2... Ozibug exposes bugs... SOAPtest checks Web services... O'Reilly releases Web Performance Tuning, Second Edition... PointBase pinpoints mobile market... etc. mark for My Articles similar articles
JavaWorld
December 2001
Java Product News (updated December 21, 2001) Borland introduces Web services toolkit... Innoopract launches W4 Toolkit... Java XML Pack now available... X-Hive releases upgraded XML database... Softera updates UML modeling tool... Thought Inc. adds Ant to CocoBase Saffeine protects code with JCE... XMetaL 3 now supports XML Schema... SpiritCache 1.2 now shipping... Flashline and TogetherSoft form partnership... Jcorporate updates eContent... etc. mark for My Articles similar articles
JavaWorld
May 2000
Rakesh Didwania
Download a Website for offline browsing In this article, I guide you through the steps involved in designing a utility to download a Website. This utility downloads only text and image files, but it can easily be extended to download files of any type.... mark for My Articles similar articles
JavaWorld
April 12, 2002
Java Product News Manning teaches instant messaging protocol... Actional releases Web services gateway... Insignia introduces Java-based solution for devices... Excelsior updates JET... O'Reilly publishes Jython Essentials... JTransit deploys ColdFusion apps to J2EE... etc. mark for My Articles similar articles
JavaWorld
September 2000
Tal Liron
Launching into Java Here's the vision: Instead of clunky Web applications, service providers will design full-blown Java applications with multiple windows, drag and drop, printing and database-query capabilities, directory access, and message queuing, all in a package that runs from users' desktops... mark for My Articles similar articles
JavaWorld
August 2000
Arden Yingling
News and New Product Briefs IBM offers Java Virtual Machines for download; Atinav launches Java-based communications software; Manning releases guide to Java 3D user interfaces; Eliad releases JSmartGrid for Java 2; JunC++ion integrates Java and C++; Sun XML center offers graphics software. mark for My Articles similar articles
Unix Insider
November 2000
Cameron Laird, Kathryn Soraiz & Derek Lac
Scripting systems unite An introduction to Silk, the programming language that unites Java and Scheme... mark for My Articles similar articles
Linux Journal
June 1, 2007
Jose Fernandez
Programming Python, Part I This tutorial jumps right in to the power of Python without dragging you through basic programming. mark for My Articles similar articles
JavaWorld
May 3, 2002
Java Product News Microsoft releases SQL Server 2000 Driver for JDBC... Wily Technology adds BEA WebLogic Server 7.0 to Introscope 3.0... MetaMatrix partners with Versata... Small Worlds navigates Java systems... IBM releases tools for the Eclipse platform... etc. mark for My Articles similar articles
JavaWorld
March 25, 2002
James Niccolai & Matt Berger
Sun exec sees focus shifting to clients Providing a consistent way to run Java programs on PCs, cell phones, and other client computers is the next hurdle in evolving Java, said the head of Sun Microsystems' Java and XML software group... mark for My Articles similar articles
JavaWorld
April 2002
David Kearns
Java scripting languages: Which is right for you? A scripting language can give your Java programs power they wouldn't ordinarily have. Utilities such as IBM's Bean Scripting Framework make hooking Tcl, Python, Perl, and other scripting languages into your Java application easy. However, risks and costs abound... mark for My Articles similar articles
PC Magazine
September 14, 2011
Samara Lynn
Hands On: Windows Server 8 Microsoft is calling Windows Server 8 a "game-changer." They might be right. mark for My Articles similar articles